diff --git a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts index fb746a73ba8c1..8391644281578 100644 --- a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts +++ b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts @@ -800,6 +800,16 @@ export const auth: NavMenuConstant = { }, ], }, + { + name: 'OAuth 2.1 Server', + items: [ + { name: 'Overview', url: '/guides/auth/oauth-server' }, + { name: 'Getting Started', url: '/guides/auth/oauth-server/getting-started' }, + { name: 'OAuth Flows', url: '/guides/auth/oauth-server/oauth-flows' }, + { name: 'MCP Authentication', url: '/guides/auth/oauth-server/mcp-authentication' }, + { name: 'Token Security & RLS', url: '/guides/auth/oauth-server/token-security' }, + ], + }, { name: 'Third-party auth', enabled: allAuthProvidersEnabled, diff --git a/apps/docs/content/_partials/api_rate_limits.mdx b/apps/docs/content/_partials/api_rate_limits.mdx new file mode 100644 index 0000000000000..1ff3700088734 --- /dev/null +++ b/apps/docs/content/_partials/api_rate_limits.mdx @@ -0,0 +1,65 @@ +## Rate limits + +Rate limits are applied to prevent abuse and ensure fair usage of the Management API. Rate limits are based on a per-user, per-scope model, meaning each user gets independent rate limits for each project and organization they interact with. + +### Standard rate limit + +| Limit | Duration | Scope | +| ------------ | -------- | ---------------------------------- | +| 120 requests | 1 minute | Per user, per project/organization | + +When you exceed this rate limit, all subsequent API calls will return a `429 Too Many Requests` response for the remainder of the minute. Once the time window expires, your request quota resets and you can make requests again. + +### Rate limit scope + +Rate limits are applied with per-user + per-scope isolation: + +- **Project scope**: Rate limits apply independently to each project. Requests to one project do not count toward the limit of another project. +- **Organization scope**: Rate limits apply independently to each organization. Requests to one organization do not count toward the limit of another organization. + +This means you can make 120 requests to Project A and 120 requests to Project B within the same minute without hitting rate limits, as they are tracked separately. + +### Rate limit response headers + +Every API response includes rate limit information in the following headers: + +- `X-RateLimit-Limit` - The maximum number of requests allowed in the current time window +- `X-RateLimit-Remaining` - The number of requests remaining before you hit the rate limit +- `X-RateLimit-Reset` - The number of milliseconds remaining until your rate limit resets + +You can use these headers to monitor your usage and implement proactive rate limit handling before receiving a 429 response. + +### How rate limits are tracked + +Your requests are identified and tracked using one of the following identifiers, in this order of priority: + +1. **OAuth App ID** - If your request is authenticated via an OAuth application +2. **User ID** - If your request is authenticated with a personal access token +3. **IP Address** - If your request is unauthenticated (extracted from request headers) + +Each identifier is combined with the scope (project or organization) to create a unique tracking key. This ensures that rate limits are isolated per user and per scope, preventing one project or organization from affecting another. + +### Endpoint exceptions + +Some endpoints have stricter rate limits than the standard 120 requests per minute to prevent abuse of resource-intensive operations: + +| Endpoint | Limit | Duration | Reason | +| ---------------------------------------------------------- | ----------- | -------- | --------------------------------------------------- | +| `GET /v1/projects/:ref/endpoints/logs.all` | 30 requests | 1 minute | Analytics log queries are computationally expensive | +| `GET /v1/projects/:ref/endpoints/usage.api-counts` | 30 requests | 1 minute | Analytics aggregation is computationally expensive | +| `GET /v1/projects/:ref/endpoints/usage.api-requests-count` | 30 requests | 1 minute | Analytics aggregation is computationally expensive | +| `GET /v1/projects/:ref/database/context` | 10 requests | 1 minute | Database context operations are resource-intensive | +| `GET /v1/projects/:ref/database/context` | 1 request | 1 second | Burst limit to prevent rapid successive requests | +| `POST /v1/projects/:ref/config/custom-hostname/initialize` | 10 requests | 1 minute | These operations are expensive | +| `POST /v1/projects/:ref/config/custom-hostname/reverify` | 10 requests | 1 minute | These operations are expensive | +| `DELETE /v1/projects/:ref/config/custom-hostname` | 10 requests | 1 minute | These operations are expensive | +| `GET /v1/projects/:ref/config/vanity-subdomain` | 10 requests | 1 minute | These operations are expensive | + +**Note:** The `GET /v1/projects/:ref/database/context` endpoint has dual rate limiting. You can make up to 10 requests per minute, but also no more than 1 request per second to prevent burst traffic. + +### Best practices + +- **Monitor rate limit headers** - Check the `X-RateLimit-Remaining` header to see how many requests you have left. When it approaches 0, slow down your requests to avoid hitting the limit. +- **Implement exponential backoff** - When you receive a 429 response, wait before retrying. You can use the `X-RateLimit-Reset` header (milliseconds) to determine exactly how long to wait. +- **Batch operations** - Where possible, combine multiple operations into fewer API calls to reduce your request count. +- **Be mindful of expensive endpoints** - Analytics, database context, and domain endpoints have stricter limits, so use them judiciously. diff --git a/apps/docs/content/guides/auth/auth-hooks/custom-access-token-hook.mdx b/apps/docs/content/guides/auth/auth-hooks/custom-access-token-hook.mdx index 4c0af8c9c46f1..6d93202ef6fb5 100644 --- a/apps/docs/content/guides/auth/auth-hooks/custom-access-token-hook.mdx +++ b/apps/docs/content/guides/auth/auth-hooks/custom-access-token-hook.mdx @@ -16,11 +16,11 @@ Optional Claims: `jti`, `nbf`, `app_metadata`, `user_metadata`, `amr`, **Inputs** -| Field | Type | Description | -| ----------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `user_id` | `string` | Unique identifier for the user attempting to sign in. | -| `claims` | `object` | Claims which are included in the access token. | -| `authentication_method` | `string` | The authentication method used to request the access token. Possible values include: `oauth`, `password`, `otp`, `totp`, `recovery`, `invite`, `sso/saml`, `magiclink`, `email/signup`, `email_change`, `token_refresh`, `anonymous`. | +| Field | Type | Description | +| ----------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `user_id` | `string` | Unique identifier for the user attempting to sign in. | +| `claims` | `object` | Claims which are included in the access token. | +| `authentication_method` | `string` | The authentication method used to request the access token. Possible values include: `oauth`, `password`, `otp`, `totp`, `recovery`, `invite`, `sso/saml`, `magiclink`, `email/signup`, `email_change`, `token_refresh`, `oauth_provider/authorization_code`, `anonymous`. | + {[ + { + name: 'Getting Started', + description: + 'Enable OAuth 2.1, configure your authorization endpoint, and register your first client.', + href: '/guides/auth/oauth-server/getting-started', + }, + { + name: 'OAuth Flows', + description: 'Detailed walkthrough of authorization code and refresh token flows.', + href: '/guides/auth/oauth-server/oauth-flows', + }, + { + name: 'MCP Authentication', + description: 'Authenticate AI agents and LLM tools using Model Context Protocol.', + href: '/guides/auth/oauth-server/mcp-authentication', + }, + { + name: 'Token Security & RLS', + description: 'Control data access with Row Level Security policies for OAuth clients.', + href: '/guides/auth/oauth-server/token-security', + }, + ].map((x) => ( +
+ + {x.description} + +
+ ))} + + +## Resources + +- [GitHub Discussion](https://github.com/orgs/supabase/discussions/38022) - Share your use cases and help shape the roadmap +- [Discord Community](https://discord.supabase.com/) - Get help and share what you're building diff --git a/apps/docs/content/guides/auth/oauth-server/getting-started.mdx b/apps/docs/content/guides/auth/oauth-server/getting-started.mdx new file mode 100644 index 0000000000000..fbcdbcd1694e9 --- /dev/null +++ b/apps/docs/content/guides/auth/oauth-server/getting-started.mdx @@ -0,0 +1,614 @@ +--- +id: 'oauth-server-getting-started' +title: 'Getting Started with OAuth 2.1 Server' +description: 'Learn how to enable OAuth 2.1 and register client applications in your Supabase project' +--- + +This guide will walk you through setting up your Supabase project as an OAuth 2.1 identity provider, from enabling the feature to registering your first client application. + +## Prerequisites + +Before you begin, make sure you have: + +- A Supabase project (create one at [supabase.com](https://supabase.com)) +- Admin access to your project +- (Optional) [Supabase CLI](/docs/guides/cli) v2.54.11 or higher for local development + +## Overview + +Setting up OAuth 2.1 in your Supabase project involves these steps: + +1. Enable OAuth 2.1 server capabilities in your project +2. Configure your authorization path +3. Build your authorization UI (frontend) +4. Register OAuth client applications + + + +Testing OAuth flows is often easier on a Supabase project since it's already accessible on the web, no tunnel or additional configuration needed. + + + +## Enable OAuth 2.1 server + +OAuth 2.1 server is currently in beta and free to use during the beta period on all Supabase plans. + + + + +1. Go to your project dashboard +2. Navigate to **Authentication** > **OAuth Server** in the sidebar +3. Enable OAuth 2.1 server capabilities + + + + +Edit your `supabase/config.toml` file and add the OAuth server configuration: + +```toml +[auth.oauth_server] +enabled = true +authorization_url_path = "/oauth/consent" +allow_dynamic_registration = false # Optional: enable dynamic client registration +``` + +Start or restart your local Supabase instance: + +```bash +supabase start +# or if already running: +supabase stop && supabase start +``` + + + + +Once enabled, your project will expose the necessary OAuth endpoints: + + + + +| Endpoint | URL | +| -------------------------- | ---------------------------------------------------------------------------------- | +| **Authorization endpoint** | `https://.supabase.co/auth/v1/oauth/authorize` | +| **Token endpoint** | `https://.supabase.co/auth/v1/oauth/token` | +| **JWKS endpoint** | `https://.supabase.co/auth/v1/.well-known/jwks.json` | +| **Discovery endpoint** | `https://.supabase.co/.well-known/oauth-authorization-server/auth/v1` | +| **OIDC discovery** | `https://.supabase.co/auth/v1/.well-known/openid-configuration` | + + + + +| Endpoint | URL | +| -------------------------- | ----------------------------------------------------------------------- | +| **Authorization endpoint** | `http://localhost:54321/auth/v1/oauth/authorize` | +| **Token endpoint** | `http://localhost:54321/auth/v1/oauth/token` | +| **JWKS endpoint** | `http://localhost:54321/auth/v1/.well-known/jwks.json` | +| **Discovery endpoint** | `http://localhost:54321/.well-known/oauth-authorization-server/auth/v1` | +| **OIDC discovery** | `http://localhost:54321/auth/v1/.well-known/openid-configuration` | + +### Expose local instance to the world + +To test OAuth flows with external applications, you can expose your local Supabase instance using a tunnel solution (such as [ngrok](https://ngrok.com/) or [Cloudflare Tunnel](https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/)). + +When using a tunnel, configure the `jwt_issuer` field in your `supabase/config.toml` to match your tunnel URL: + +```toml +[auth] +jwt_issuer = "https://my-tunnel.url/auth/v1" +``` + +This ensures that JWTs issued by your local instance use the correct issuer claim for token validation, and serves the discovery endpoint at the correct location with accurate discovery information. + + + + + + +**Use asymmetric JWT signing keys for better security** + +By default, Supabase uses HS256 (symmetric) for signing JWTs. For OAuth use cases, we recommend migrating to asymmetric algorithms like RS256 or ES256. Asymmetric keys are more scalable and secure because: + +- OAuth clients can validate JWTs using the public key from your JWKS endpoint +- No need to share your JWT secret with third-party applications +- More resilient architecture for distributed systems + +Learn more about [configuring JWT signing keys](/docs/guides/auth/signing-keys). + +**Note:** If you plan to use OpenID Connect ID tokens (by requesting the `openid` scope), asymmetric signing algorithms are **required**. ID token generation will fail with HS256. + + + +## Configure your authorization path + +Before registering clients, you need to configure where your authorization UI will live. + +1. In your project dashboard, navigate to **Authentication** > **OAuth Server** +2. Set the **Authorization Path** (e.g., `/oauth/consent`) + + + +The authorization path is combined with your Site URL (configured in **Authentication** > **URL Configuration**) to create the full authorization endpoint URL. + + + +Your authorization UI will be at the combined Site URL + Authorization Path. For example: + +- Site URL: `https://example.com` (from **Authentication** > **URL Configuration**) +- Authorization Path: `/oauth/consent` (from **OAuth Server** settings) +- Your authorization UI: `https://example.com/oauth/consent` + +When OAuth clients initiate the authorization flow, Supabase Auth will redirect users to this URL with an `authorization_id` query parameter. You'll use [Supabase JavaScript library OAuth methods](https://github.com/supabase/supabase-js/blob/master/packages/core/auth-js/src/GoTrueClient.ts#L2159-L2163) to handle the authorization: + +- `supabase.auth.oauth.getAuthorizationDetails(authorization_id)` - Retrieve client and authorization details +- `supabase.auth.oauth.approveAuthorization(authorization_id)` - Approve the authorization request +- `supabase.auth.oauth.denyAuthorization(authorization_id)` - Deny the authorization request + +## Build your authorization UI + +This is where you build the **frontend** for your authorization flow. When third-party apps initiate OAuth, users will be redirected to your authorization path (configured in the previous step) with an `authorization_id` query parameter. + +Your authorization UI should: + +1. **Extract authorization_id** - Get the `authorization_id` from the URL query parameters +2. **Authenticate the user** - If not already logged in, redirect to your login page (preserving the authorization_id) +3. **Retrieve authorization details** - Use `supabase.auth.oauth.getAuthorizationDetails(authorization_id)` to get client information including requested scopes +4. **Display consent screen** - Show the user what app is requesting access and what scopes/permissions are being requested +5. **Handle user decision** - Call either `approveAuthorization(authorization_id)` or `denyAuthorization(authorization_id)` based on user choice + +The authorization details include a `scopes` field that contains the scopes requested by the client (e.g., `["openid", "email", "profile"]`). You should display these scopes to the user so they understand what information will be shared. + + + +This is a **frontend implementation**. You're building the UI that displays the consent screen and handles user interactions. The actual OAuth token generation is handled by Supabase Auth after you call the approve/deny methods. + + + +### Example authorization UI + +Here's how to build a minimal authorization page at your configured path (e.g., `/oauth/consent`): + + + + +```tsx +// app/oauth/consent/page.tsx +import { createServerClient } from '@supabase/ssr' +import { cookies } from 'next/headers' +import { redirect } from 'next/navigation' + +export default async function ConsentPage({ + searchParams, +}: { + searchParams: { authorization_id?: string } +}) { + const authorizationId = searchParams.authorization_id + + if (!authorizationId) { + return
Error: Missing authorization_id
+ } + + const supabase = createServerClient( + process.env.NEXT_PUBLIC_SUPABASE_URL!, + process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!, + { + cookies: { + getAll: async () => (await cookies()).getAll(), + setAll: async (cookiesToSet) => { + const cookieStore = await cookies() + cookiesToSet.forEach(({ name, value, options }) => cookieStore.set(name, value, options)) + }, + }, + } + ) + + // Check if user is authenticated + const { + data: { user }, + } = await supabase.auth.getUser() + + if (!user) { + // Redirect to login, preserving authorization_id + redirect(`/login?redirect=/oauth/consent?authorization_id=${authorizationId}`) + } + + // Get authorization details using the authorization_id + const { data: authDetails, error } = + await supabase.auth.oauth.getAuthorizationDetails(authorizationId) + + if (error || !authDetails) { + return
Error: {error?.message || 'Invalid authorization request'}
+ } + + return ( +
+

Authorize {authDetails.client.name}

+

This application wants to access your account.

+ +
+

+ Client: {authDetails.client.name} +

+

+ Redirect URI: {authDetails.redirect_uri} +

+ {authDetails.scopes && authDetails.scopes.length > 0 && ( +
+ Requested permissions: +
    + {authDetails.scopes.map((scope) => ( +
  • {scope}
  • + ))} +
+
+ )} +
+ +
+ + + +
+
+ ) +} +``` + +```typescript +// app/api/oauth/decision/route.ts +import { createServerClient } from '@supabase/ssr' +import { cookies } from 'next/headers' +import { NextResponse } from 'next/server' + +export async function POST(request: Request) { + const formData = await request.formData() + const decision = formData.get('decision') + const authorizationId = formData.get('authorization_id') as string + + if (!authorizationId) { + return NextResponse.json({ error: 'Missing authorization_id' }, { status: 400 }) + } + + const supabase = createServerClient( + process.env.NEXT_PUBLIC_SUPABASE_URL!, + process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!, + { + cookies: { + getAll: async () => (await cookies()).getAll(), + setAll: async (cookiesToSet) => { + const cookieStore = await cookies() + cookiesToSet.forEach(({ name, value, options }) => cookieStore.set(name, value, options)) + }, + }, + } + ) + + if (decision === 'approve') { + const { data, error } = await supabase.auth.oauth.approveAuthorization(authorizationId) + + if (error) { + return NextResponse.json({ error: error.message }, { status: 400 }) + } + + // Redirect back to the client with authorization code + return NextResponse.redirect(data.redirect_to) + } else { + const { data, error } = await supabase.auth.oauth.denyAuthorization(authorizationId) + + if (error) { + return NextResponse.json({ error: error.message }, { status: 400 }) + } + + // Redirect back to the client with error + return NextResponse.redirect(data.redirect_to) + } +} +``` + +
+ + +```tsx +// src/pages/OAuthConsent.tsx +import { useEffect, useState } from 'react' +import { useNavigate, useSearchParams } from 'react-router-dom' +import { supabase } from './supabaseClient' + +export function OAuthConsent() { + const navigate = useNavigate() + const [searchParams] = useSearchParams() + const authorizationId = searchParams.get('authorization_id') + + const [authDetails, setAuthDetails] = useState(null) + const [loading, setLoading] = useState(true) + const [error, setError] = useState(null) + + useEffect(() => { + async function loadAuthDetails() { + if (!authorizationId) { + setError('Missing authorization_id') + setLoading(false) + return + } + + // Check if user is authenticated + const { + data: { user }, + } = await supabase.auth.getUser() + + if (!user) { + navigate(`/login?redirect=/oauth/consent?authorization_id=${authorizationId}`) + return + } + + // Get authorization details using the authorization_id + const { data, error } = await supabase.auth.oauth.getAuthorizationDetails(authorizationId) + + if (error) { + setError(error.message) + } else { + setAuthDetails(data) + } + + setLoading(false) + } + + loadAuthDetails() + }, [authorizationId, navigate]) + + async function handleApprove() { + if (!authorizationId) return + + const { data, error } = await supabase.auth.oauth.approveAuthorization(authorizationId) + + if (error) { + setError(error.message) + } else { + // Redirect to client app + window.location.href = data.redirect_to + } + } + + async function handleDeny() { + if (!authorizationId) return + + const { data, error } = await supabase.auth.oauth.denyAuthorization(authorizationId) + + if (error) { + setError(error.message) + } else { + // Redirect to client app with error + window.location.href = data.redirect_to + } + } + + if (loading) return
Loading...
+ if (error) return
Error: {error}
+ if (!authDetails) return
No authorization request found
+ + return ( +
+

Authorize {authDetails.client.name}

+

This application wants to access your account.

+ +
+

+ Client: {authDetails.client.name} +

+

+ Redirect URI: {authDetails.redirect_uri} +

+ {authDetails.scopes && authDetails.scopes.length > 0 && ( +
+ Requested permissions: +
    + {authDetails.scopes.map((scope) => ( +
  • {scope}
  • + ))} +
+
+ )} +
+ +
+ + +
+
+ ) +} +``` + +
+
+ +### How it works + +1. **User navigates to your authorization path** - When a third-party app initiates OAuth, Supabase Auth redirects the user to your configured authorization path (e.g., `https://example.com/oauth/consent?authorization_id=`) +2. **Extract authorization_id** - Your page extracts the `authorization_id` from the URL query parameters +3. **Check authentication** - Your page checks if the user is logged in, redirecting to login if not (preserving the authorization_id) +4. **Retrieve details** - Call `supabase.auth.oauth.getAuthorizationDetails(authorization_id)` to get information about the requesting client +5. **Show consent screen** - Display a UI asking the user to approve or deny access +6. **Handle decision** - When the user clicks approve/deny: + - Call `supabase.auth.oauth.approveAuthorization(authorization_id)` or `denyAuthorization(authorization_id)` + - These methods handle all OAuth logic internally (generating authorization codes, etc.) + - They return a `redirect_to` URL +7. **Redirect back** - Redirect the user to the `redirect_to` URL, which sends them back to the third-party app with either an authorization code (approved) or error (denied) + +## Register an OAuth client + +Before third-party applications can use your project as an identity provider, you need to register them as OAuth clients. + + + + +1. Go to **Authentication** > **OAuth Apps** (under the **Manage** section) +2. Click **Add a new client** +3. Enter the client details: + - **Client name**: A friendly name for your application + - **Redirect URIs**: One or more URLs where users will be redirected after authorization + - **Client type**: Choose between: + - **Public** - For mobile and single-page apps (no client secret) + - **Confidential** - For server-side apps (includes client secret) +4. Click **Create** + +You'll receive: + +- **Client ID**: A unique identifier for the client +- **Client Secret** (for confidential clients): A secret key for authenticating the client + + + +Store the client secret securely. It will only be shown once. If you lose it, you can regenerate a new one from the **OAuth Apps** page. + + + + + + +You can register clients programmatically by calling your project's auth server admin endpoint with a secret key: + +**Production:** + +```bash +curl -X POST 'https://.supabase.co/auth/v1/admin/oauth/clients' \ + -H "Authorization: Bearer ${SUPABASE_SECRET_KEY}" \ + -H "Content-Type: application/json" \ + -d '{ + "name": "My Third-Party App", + "redirect_uris": [ + "https://my-app.com/auth/callback", + "https://my-app.com/auth/silent-callback" + ], + "client_type": "confidential" + }' +``` + +**Local development:** + +```bash +curl -X POST 'http://localhost:54321/auth/v1/admin/oauth/clients' \ + -H "Authorization: Bearer ${SUPABASE_SECRET_KEY}" \ + -H "Content-Type: application/json" \ + -d '{ + "name": "Local Dev App", + "redirect_uris": ["http://localhost:3000/auth/callback"], + "client_type": "confidential" + }' +``` + +Response: + +```json +{ + "client_id": "9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d", + "client_secret": "verysecret-1234567890abcdef...", + "name": "My Third-Party App", + "redirect_uris": ["https://my-app.com/auth/callback", "https://my-app.com/auth/silent-callback"], + "client_type": "confidential", + "created_at": "2025-01-15T10:30:00.000Z" +} +``` + + + +For complete API documentation, see the [OAuth Admin API reference](/todo). + + + +### List OAuth clients + +To view all registered OAuth clients: + +**Production:** + +```bash +curl 'https://.supabase.co/auth/v1/admin/oauth/clients' \ + -H "Authorization: Bearer ${SUPABASE_SECRET_KEY}" +``` + +**Local development:** + +```bash +curl 'http://localhost:54321/auth/v1/admin/oauth/clients' \ + -H "Authorization: Bearer ${SUPABASE_SECRET_KEY}" +``` + + + + +## Customizing tokens (optional) + +By default, OAuth access tokens include standard claims like `user_id`, `role`, and `client_id`. If you need to customize tokens—for example, to set a specific `audience` claim for third-party validation or add client-specific metadata—use [Custom Access Token Hooks](/docs/guides/auth/auth-hooks/access-token-hook). + +Custom Access Token Hooks are triggered for all token issuance, including OAuth flows. You can use the `client_id` parameter to customize tokens based on which OAuth client is requesting them. + +### Common use cases + +- **Customize `audience` claim**: Set the `aud` claim to the third-party API endpoint for proper JWT validation +- **Add client-specific permissions**: Include custom claims based on which OAuth client is requesting access +- **Implement dynamic scopes**: Add metadata that RLS policies can use for fine-grained access control + +For more examples, see [Token Security & RLS](/docs/guides/auth/oauth-server/token-security#custom-access-token-hooks). + +## Redirect URI configuration + +Redirect URIs are critical for OAuth security. Supabase Auth will only redirect to URIs that are explicitly registered with the client. + + + +**Not to be confused with general redirect URLs** + +This section is about **OAuth client redirect URIs** - where to send users after they authorize third-party apps to access your Supabase project. This is different from the general [Redirect URLs](/docs/guides/auth/redirect-urls) setting, which controls where to send users after they sign in TO your app using social providers. + + + + + +**Exact matches only - No wildcards or patterns** + +OAuth client redirect URIs require exact, complete URL matches. Unlike general redirect URLs (which support wildcards), OAuth client redirect URIs do NOT support wildcards, patterns, or partial URLs. You must register the full, exact callback URL. + + + +### Best practices + +- **Use HTTPS in production** - Always use HTTPS for redirect URIs in production +- **Register exact, complete URLs** - Each redirect URI must be the full URL including protocol, domain, path, and port if needed +- **Use separate OAuth clients per environment** - Create separate OAuth clients for development, staging, and production. This provides better security isolation, allows independent secret rotation, and improves auditability. If you need to use the same client across environments, you can register multiple redirect URIs, but separate clients are recommended. + +## Next steps + +Now that you've registered your first OAuth client, you're ready to: + +- [Understand OAuth flows](/docs/guides/auth/oauth-server/oauth-flows) - Learn how the authorization code and refresh token flows work +- [Implement MCP authentication](/docs/guides/auth/oauth-server/mcp-authentication) - Enable AI agent authentication +- [Secure with RLS](/docs/guides/auth/oauth-server/token-security) - Control data access for OAuth clients diff --git a/apps/docs/content/guides/auth/oauth-server/mcp-authentication.mdx b/apps/docs/content/guides/auth/oauth-server/mcp-authentication.mdx new file mode 100644 index 0000000000000..4e5406357f750 --- /dev/null +++ b/apps/docs/content/guides/auth/oauth-server/mcp-authentication.mdx @@ -0,0 +1,156 @@ +--- +id: 'oauth-server-mcp' +title: 'Model Context Protocol (MCP) Authentication' +description: 'Integrate Supabase Auth with MCP servers to authenticate AI agents using your existing user base' +--- + +The Model Context Protocol (MCP) is an open standard for connecting AI agents and LLM tools to data sources and services. While Supabase doesn't provide MCP server functionality, you can build your own MCP servers that connect to your Supabase project and leverage Supabase Auth's OAuth 2.1 capabilities to authenticate AI agents using your existing user base. + +## Why use Supabase Auth for MCP? + +When building MCP servers that connect to your Supabase project, you can leverage your existing Supabase Auth infrastructure to authenticate AI agents: + +- **Use your existing user base** - No need to create separate authentication systems; AI agents authenticate as your existing users +- **Standards-compliant OAuth 2.1** - Full implementation with PKCE that MCP clients expect +- **Automatic discovery** - MCP clients auto-configure using Supabase's discovery endpoints +- **Dynamic client registration** - MCP clients can register themselves automatically with your project +- **Row Level Security** - Your existing RLS policies automatically apply to MCP clients +- **User authorization** - Users explicitly approve AI agent access through your authorization flow +- **Token management** - Automatic refresh token rotation and expiration handled by Supabase + +## How MCP authentication works + +When you build an MCP server that connects to your Supabase project, authentication flows through Supabase Auth: + +1. **Discovery**: The MCP client fetches your OAuth configuration from Supabase's discovery endpoint +2. **Registration** (optional): The client registers itself as an OAuth client in your Supabase project +3. **Authorization**: User is redirected to your authorization endpoint to approve the AI tool's access +4. **Token exchange**: Supabase issues access and refresh tokens for the authenticated user +5. **Authenticated access**: The MCP server can now make requests to your Supabase APIs on behalf of the user + +By leveraging Supabase Auth, your MCP server can authenticate AI agents using your existing user accounts without building a separate authentication system. + +## Prerequisites + +Before setting up MCP authentication: + +- [Enable OAuth 2.1 server](/docs/guides/auth/oauth-server/getting-started) in your Supabase project +- Build an [authorization endpoint](/docs/guides/auth/oauth-server/getting-started#build-your-authorization-endpoint) +- (Optional) Enable dynamic client registration + +## Setting up your MCP server + +Configure your MCP server to use your Supabase Auth server: + +``` +https://.supabase.co/auth/v1 +``` + +Replace `` with your project reference ID from the Supabase dashboard. + +MCP clients will automatically discover your OAuth configuration from: + +``` +https://.supabase.co/.well-known/oauth-authorization-server/auth/v1 +``` + +### OAuth client setup + +Depending on your MCP server implementation, you have two options: + +- **Pre-register an OAuth client** - Manually register your client by following the [Register an OAuth client](/docs/guides/auth/oauth-server/getting-started#register-an-oauth-client) guide and use the client credentials in your MCP server +- **Dynamic client registration** - Enable this in **Authentication** > **OAuth Server** in your Supabase dashboard to allow MCP clients to register themselves automatically without manual intervention + + + +Dynamic registration allows any MCP client to register with your project. Consider: + +- Requiring user approval for all clients +- Monitoring registered clients regularly +- Validating redirect URIs are from trusted domains + + + +## Building an MCP server with Supabase Auth + +When building your own MCP server, integrate with Supabase Auth to authenticate AI agents as your existing users and leverage your RLS policies. + + + +**Looking for an easier way to build MCP servers?** + +[FastMCP](https://gofastmcp.com) provides a streamlined way to build MCP servers with built-in Supabase Auth integration. FastMCP handles OAuth configuration, token management, and authentication flows automatically, letting you focus on building your AI agent's functionality. Check out their [Supabase integration guide](https://gofastmcp.com/todo) to get started quickly. + + + +## Handling MCP tokens in your application + +When your MCP server makes requests to your Supabase APIs on behalf of authenticated users, it will send access tokens issued by Supabase Auth, just like any other OAuth client. + +### Validating MCP tokens + +Use the same token validation as other OAuth clients. + +See [Token Security & RLS](/docs/guides/auth/oauth-server/token-security) for more examples. + +## Security considerations + +### User approval + +Always require explicit user approval for MCP clients: + +- Show clear information about what the AI agent can access +- Display the client name and description +- List the scopes being requested +- Provide an option to deny access +- Allow users to revoke access later + +## Troubleshooting + +### MCP client can't discover OAuth configuration + +**Problem**: Client shows "OAuth discovery failed" or similar error. + +**Solutions**: + +- Verify OAuth 2.1 is enabled in your project +- Check that `/.well-known/oauth-authorization-server` returns valid JSON +- Ensure your project URL is accessible + +### Dynamic registration fails + +**Problem**: Client receives 403 or 404 on registration endpoint. + +**Solutions**: + +- Enable dynamic client registration in project settings +- Verify redirect URIs are valid, complete URLs (protocol, domain, path, and port) +- Check for rate limiting on registration endpoint + +### Token exchange fails + +**Problem**: Client receives "invalid_grant" error. + +**Solutions**: + +- Verify authorization code hasn't expired (10 minutes) +- Ensure code verifier matches code challenge +- Check that redirect URI exactly matches registration +- Confirm client_id is correct + +### RLS policies block MCP access + +**Problem**: MCP client can't access data despite valid token. + +**Solutions**: + +- Check RLS policies include the MCP client's `client_id` +- Verify user has necessary permissions +- Test with service role key to isolate RLS issues +- Review [Token Security guide](/docs/guides/auth/oauth-server/token-security) + +## Next steps + +- [Secure with RLS](/docs/guides/auth/oauth-server/token-security) - Create granular policies for MCP clients +- [OAuth flows](/docs/guides/auth/oauth-server/oauth-flows) - Deep dive into OAuth implementation +- [MCP Specification](https://modelcontextprotocol.io/docs) - Official MCP documentation diff --git a/apps/docs/content/guides/auth/oauth-server/oauth-flows.mdx b/apps/docs/content/guides/auth/oauth-server/oauth-flows.mdx new file mode 100644 index 0000000000000..028634e88c7dc --- /dev/null +++ b/apps/docs/content/guides/auth/oauth-server/oauth-flows.mdx @@ -0,0 +1,767 @@ +--- +id: 'oauth-server-flows' +title: 'OAuth 2.1 Flows' +description: 'Understanding the authorization code and refresh token flows with OpenID Connect' +--- + +Supabase Auth implements OAuth 2.1 with OpenID Connect (OIDC), supporting the authorization code flow with PKCE and refresh token flow. This guide explains how these flows work in detail. + + + +This guide explains the OAuth 2.1 flows for **third-party client applications** that authenticate with your Supabase project. These flows require custom implementation and are not available in the `@supabase/supabase-js` library. The `supabase-js` library is for authenticating **with** Supabase Auth as an identity provider, not for building your own OAuth server. + + + +## Supported grant types + +Supabase Auth supports two OAuth 2.1 grant types: + +1. **Authorization Code with PKCE** (`authorization_code`) - For obtaining initial access tokens +2. **Refresh Token** (`refresh_token`) - For obtaining new access tokens without re-authentication + + + +Other grant types like `client_credentials` or `password` are not supported. + + + +## Authorization code flow with PKCE + +The authorization code flow with PKCE (Proof Key for Code Exchange) is the recommended flow for all OAuth clients, including single-page applications, mobile apps, and server-side applications. + +### How it works + +The flow consists of several steps: + +1. **Client initiates authorization** - Third-party app redirects user to Supabase Auth's authorize endpoint +2. **Supabase validates and redirects** - Supabase Auth validates OAuth parameters and redirects user to your configured authorization URL +3. **User authenticates and authorizes** - Your frontend checks if user is logged in, shows consent screen, and handles approval/denial +4. **Authorization code issued** - Supabase Auth generates a short-lived authorization code and redirects back to client +5. **Code exchange** - Client exchanges the code for tokens +6. **Access granted** - Client receives access token, refresh token, and ID token + +### Flow diagram + +Here's a visual representation of the complete authorization code flow: + +``` +┌─────────────┐ ┌──────────────────┐ ┌──────────────────┐ +│ │ │ │ │ │ +│ Client │ │ Your Auth UI │ │ Supabase Auth │ +│ App │ │ (Frontend) │ │ │ +│ │ │ │ │ │ +└──────┬──────┘ └────────┬─────────┘ └────────┬─────────┘ + │ │ │ + │ 1. Generate PKCE params │ + │ (code_verifier, code_challenge) │ + │ │ │ + │ 2. Redirect to /oauth/authorize with code_challenge │ + ├────────────────────────────────────────────────────────────────>│ + │ │ │ + │ │ 3. Validate params & redirect │ + │ │ to authorization_path │ + │ │<────────────────────────────────┤ + │ │ │ + │ │ 4. getAuthorizationDetails() │ + │ ├────────────────────────────────>│ + │ │ Return client info │ + │ │<────────────────────────────────┤ + │ │ │ + │ │ 5. User login & consent │ + │ │ │ + │ │ 6. approveAuthorization() │ + │ ├────────────────────────────────>│ + │ │ Return redirect_to with code │ + │ │<────────────────────────────────┤ + │ │ │ + │ 7. Redirect to client callback with code │ + │<───────────────────────────────────────────────────────────────┤ + │ │ │ + │ 8. Exchange code for tokens (POST /oauth/token) │ + │ with code_verifier │ + ├────────────────────────────────────────────────────────────────>│ + │ │ │ + │ 9. Return tokens (access, refresh, ID) │ + │<────────────────────────────────────────────────────────────────┤ + │ │ │ + │ 10. Access resources with access_token │ + │ │ │ + │ 11. Refresh tokens (POST /oauth/token with refresh_token) │ + ├────────────────────────────────────────────────────────────────>│ + │ │ │ + │ 12. Return new tokens │ + │<────────────────────────────────────────────────────────────────┤ + │ │ │ +``` + +**Key points:** + +- Third-party client redirects user to **Supabase Auth's authorize endpoint** (not directly to your UI) +- Supabase Auth validates OAuth parameters and redirects to **your authorization path** +- Your frontend UI handles authentication and consent using `supabase-js` OAuth methods +- Supabase Auth handles all backend OAuth logic (code generation, token issuance) + +### Step 1: Generate PKCE parameters + +Before initiating the flow, the client must generate PKCE parameters: + +```javascript +// Generate a random code verifier (43-128 characters) +function generateCodeVerifier() { + const array = new Uint8Array(32) + crypto.getRandomValues(array) + return base64URLEncode(array) +} + +// Create code challenge from verifier +async function generateCodeChallenge(verifier) { + const encoder = new TextEncoder() + const data = encoder.encode(verifier) + const hash = await crypto.subtle.digest('SHA-256', data) + return base64URLEncode(new Uint8Array(hash)) +} + +function base64URLEncode(buffer) { + return btoa(String.fromCharCode(...buffer)) + .replace(/\+/g, '-') + .replace(/\//g, '_') + .replace(/=/g, '') +} + +// Generate and store verifier (you'll need it later) +const codeVerifier = generateCodeVerifier() +sessionStorage.setItem('code_verifier', codeVerifier) + +// Generate challenge to send in authorization request +const codeChallenge = await generateCodeChallenge(codeVerifier) +``` + +### Step 2: Authorization request + +The client redirects the user to your authorization endpoint with the following parameters: + +``` +https://.supabase.co/auth/v1/oauth/authorize? + response_type=code + &client_id= + &redirect_uri= + &state= + &code_challenge= + &code_challenge_method=S256 +``` + +#### Required parameters + +| Parameter | Description | +| ----------------------- | -------------------------------------------- | +| `response_type` | Must be `code` for authorization code flow | +| `client_id` | The client ID from registration | +| `redirect_uri` | Must exactly match a registered redirect URI | +| `code_challenge` | The generated code challenge | +| `code_challenge_method` | Must be `S256` (SHA-256) | + +#### Optional parameters + +| Parameter | Description | +| --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `state` | Random string to prevent CSRF attacks (highly recommended) | +| `scope` | Space-separated list of scopes (e.g., `openid email profile phone`). Requested scopes will be included in the access token and control what information is returned by the UserInfo endpoint. Default scope when none provided is `email`. If the `openid` scope is requested, an ID token will be included in the response. | +| `nonce` | Random string for replay attack protection. If provided, will be included in the ID token. | + + + +Always include a `state` parameter to protect against CSRF attacks. Generate a random string, store it in session storage, and verify it matches when the user returns. + + + +### Step 3: User authentication and consent + +After receiving the authorization request, Supabase Auth validates the OAuth parameters (client_id, redirect_uri, PKCE, etc.) and then redirects the user to your configured **authorization path** (e.g., `https://example.com/oauth/consent?authorization_id=`). + +The URL will contain an `authorization_id` query parameter that identifies this authorization request. + +Your frontend application at the authorization path should: + +1. **Extract authorization_id** - Get the `authorization_id` from the URL query parameters +2. **Fetch authorization details** - Call `supabase.auth.oauth.getAuthorizationDetails(authorization_id)` to retrieve information about the OAuth client and request parameters +3. **Check user authentication** - Verify if the user is logged in; if not, redirect to your login page (preserving the full authorization path including the `authorization_id`). After successful login, redirect the user back to the authorization path with the same `authorization_id` query parameter +4. **Display consent screen** - Show the user information about the requesting client (name, redirect URI, scopes) +5. **Handle user decision** - When the user approves or denies: + - Call `supabase.auth.oauth.approveAuthorization(authorization_id)` to approve + - Call `supabase.auth.oauth.denyAuthorization(authorization_id)` to deny + - Redirect user to the returned `redirect_to` URL + +This is a **frontend implementation** using `supabase-js`. Supabase Auth handles all the backend OAuth logic (generating authorization codes, validating requests, etc.) after you call the approve/deny methods. + +See the [Getting Started guide](/docs/guides/auth/oauth-server/getting-started#example-authorization-ui) for complete implementation examples. + +### Step 4: Authorization code issued + +If the user approves access, Supabase Auth redirects back to the client's redirect URI with an authorization code: + +``` +https://client-app.com/callback? + code= + &state= +``` + +The authorization code is: + +- **Short-lived** - Valid for 10 minutes +- **Single-use** - Can only be exchanged once +- **Bound to PKCE** - Can only be exchanged with the correct code verifier + +If the user denies access, Supabase Auth redirects with error information in query parameters: + +``` +https://client-app.com/callback? + error=access_denied + &error_description=The+user+denied+the+authorization+request + &state= +``` + +The error parameters allow clients to display relevant error messages to users: + +| Parameter | Description | +| ------------------- | --------------------------------------------------------------------- | +| `error` | Error code (e.g., `access_denied`, `invalid_request`, `server_error`) | +| `error_description` | Human-readable error description explaining what went wrong | +| `state` | The state parameter from the original request (for CSRF protection) | + +### Step 5: Token exchange + +The client exchanges the authorization code for tokens by making a POST request to the token endpoint: + +```bash +curl -X POST 'https://.supabase.co/auth/v1/oauth/token' \ + -H 'Content-Type: application/x-www-form-urlencoded' \ + -d 'grant_type=authorization_code' \ + -d 'code=' \ + -d 'client_id=' \ + -d 'redirect_uri=' \ + -d 'code_verifier=' +``` + +For confidential clients (with client secret): + +```bash +curl -X POST 'https://.supabase.co/auth/v1/oauth/token' \ + -H 'Content-Type: application/x-www-form-urlencoded' \ + -d 'grant_type=authorization_code' \ + -d 'code=' \ + -d 'client_id=' \ + -d 'client_secret=' \ + -d 'redirect_uri=' \ + -d 'code_verifier=' +``` + +#### Example in JavaScript + +```javascript +// Retrieve the code verifier from storage +const codeVerifier = sessionStorage.getItem('code_verifier') + +// Exchange code for tokens +const response = await fetch(`https://.supabase.co/auth/v1/oauth/token`, { + method: 'POST', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + body: new URLSearchParams({ + grant_type: 'authorization_code', + code: authorizationCode, + client_id: '', + redirect_uri: '', + code_verifier: codeVerifier, + }), +}) + +const tokens = await response.json() +``` + +### Step 6: Token response + +On success, Supabase Auth returns a JSON response with tokens: + +```json +{ + "access_token": "eyJhbGc...", + "token_type": "bearer", + "expires_in": 3600, + "refresh_token": "MXff...", + "scope": "openid email profile", + "id_token": "eyJhbGc..." +} +``` + +| Field | Description | +| --------------- | ---------------------------------------------------------------------------------------------------- | +| `access_token` | JWT access token for accessing resources | +| `token_type` | Always `bearer` | +| `expires_in` | Token lifetime in seconds (default: 3600) | +| `refresh_token` | Token for obtaining new access tokens | +| `scope` | Granted scopes from the authorization request | +| `id_token` | OpenID Connect ID token (included only if `openid` scope was requested in the authorization request) | + +## Access token structure + +Access tokens are JWTs containing standard Supabase claims plus OAuth-specific claims: + +```json +{ + "aud": "authenticated", + "exp": 1735819200, + "iat": 1735815600, + "iss": "https://.supabase.co/auth/v1", + "sub": "user-uuid", + "email": "user@example.com", + "phone": "", + "app_metadata": { + "provider": "email", + "providers": ["email"] + }, + "user_metadata": {}, + "role": "authenticated", + "aal": "aal1", + "amr": [ + { + "method": "password", + "timestamp": 1735815600 + } + ], + "session_id": "session-uuid", + "client_id": "9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d" +} +``` + +### OAuth-specific claims + +| Claim | Description | +| ----------- | -------------------------------------------- | +| `client_id` | The OAuth client ID that obtained this token | + +All other claims follow the standard [Supabase JWT structure](/docs/guides/auth/jwts). + +### Available scopes + +The following scopes are currently supported: + +| Scope | Description | +| --------- | ------------------------------------------------------------------------------------- | +| `openid` | Enables OpenID Connect. When requested, an ID token will be included in the response. | +| `email` | Grants access to email and email_verified claims | +| `profile` | Grants access to profile information (name, picture, etc.) | +| `phone` | Grants access to phone_number and phone_number_verified claims | + +**Default scope:** When no scope is specified in the authorization request, the default scope is `email`. + +Scopes affect what information is included in ID tokens and returned by the UserInfo endpoint. All OAuth access tokens have full access to user data (same as regular session tokens), with the addition of the `client_id` claim. Use Row Level Security policies with the `client_id` claim to control which data each OAuth client can access. + + + +**Custom scopes are not currently supported.** Only the standard scopes listed above are available. Support for custom scopes is planned for a future release, which will allow you to define application-specific permissions and fine-grained access control. + + + +## Refresh token flow + +Refresh tokens allow clients to obtain new access tokens without requiring the user to re-authenticate. + +### When to refresh + +Clients should refresh access tokens when: + +- The access token is expired (check the `exp` claim) +- The access token is about to expire (proactive refresh) +- An API call returns a 401 Unauthorized error + +### Refresh request + +Make a POST request to the token endpoint with the refresh token: + +```bash +curl -X POST 'https://.supabase.co/auth/v1/oauth/token' \ + -H 'Content-Type: application/x-www-form-urlencoded' \ + -d 'grant_type=refresh_token' \ + -d 'refresh_token=' \ + -d 'client_id=' +``` + +For confidential clients: + +```bash +curl -X POST 'https://.supabase.co/auth/v1/oauth/token' \ + -H 'Content-Type: application/x-www-form-urlencoded' \ + -d 'grant_type=refresh_token' \ + -d 'refresh_token=' \ + -d 'client_id=' \ + -d 'client_secret=' +``` + +#### Example in JavaScript + +```javascript +async function refreshAccessToken(refreshToken) { + const response = await fetch(`https://.supabase.co/auth/v1/oauth/token`, { + method: 'POST', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + body: new URLSearchParams({ + grant_type: 'refresh_token', + refresh_token: refreshToken, + client_id: '', + }), + }) + + if (!response.ok) { + throw new Error('Failed to refresh token') + } + + return await response.json() +} +``` + +### Refresh response + +The response contains a new access token and optionally a new refresh token: + +```json +{ + "access_token": "eyJhbGc...", + "token_type": "bearer", + "expires_in": 3600, + "refresh_token": "v1.MXff...", + "scope": "openid email profile" +} +``` + + + +Refresh tokens may be rotated (a new refresh token is issued). Always update your stored refresh token when a new one is provided. + + + +## OpenID Connect (OIDC) + +Supabase Auth supports OpenID Connect, an identity layer on top of OAuth 2.1. + + + +**ID tokens are only included when the `openid` scope is requested.** To receive an ID token, include `openid` in the space-separated list of scopes in your authorization request. ID tokens are valid for 1 hour. + + + +### ID tokens + +ID tokens are JWTs that contain user identity information. They are signed by Supabase Auth and can be verified by clients. + +The claims included in the ID token depend on the scopes requested during authorization. For example, requesting `openid email profile` will include email and profile-related claims, while requesting only `openid email` will include only email-related claims. + +#### Example ID token + +```json +{ + "iss": "https://.supabase.co/auth/v1", + "sub": "user-uuid", + "aud": "client-id", + "exp": 1735819200, + "iat": 1735815600, + "auth_time": 1735815600, + "nonce": "random-nonce-from-request", + "email": "user@example.com", + "email_verified": true, + "phone_number": "+1234567890", + "phone_number_verified": false, + "name": "John Doe", + "picture": "https://example.com/avatar.jpg" +} +``` + +#### Standard OIDC claims + +| Claim | Description | +| ----------------------- | ------------------------------------------------------------ | +| `sub` | Subject (user ID) | +| `nonce` | The nonce value from the authorization request (if provided) | +| `email` | User's email address | +| `email_verified` | Whether the email is verified | +| `phone_number` | User's phone number | +| `phone_number_verified` | Whether the phone is verified | +| `name` | User's full name | +| `picture` | User's profile picture URL | + +### UserInfo endpoint + +Clients can retrieve user information by calling the UserInfo endpoint with an access token: + +```bash +curl 'https://.supabase.co/auth/v1/oauth/userinfo' \ + -H 'Authorization: Bearer ' +``` + +The information returned depends on the scopes granted in the access token. For example: + +**With `email` scope:** + +```json +{ + "sub": "user-uuid", + "email": "user@example.com", + "email_verified": true +} +``` + +**With `email profile phone` scopes:** + +```json +{ + "sub": "user-uuid", + "email": "user@example.com", + "email_verified": true, + "phone_number": "+1234567890", + "phone_number_verified": false, + "name": "John Doe", + "picture": "https://example.com/avatar.jpg" +} +``` + +### OIDC discovery + +Supabase Auth exposes OpenID Connect and OAuth 2.1 discovery endpoints that describe its capabilities: + +``` +https://.supabase.co/auth/v1/.well-known/openid-configuration +https://.supabase.co/auth/v1/.well-known/oauth-authorization-server +``` + + + +Both endpoints return the same metadata and can be used interchangeably. They are provided for compatibility with different OAuth and OIDC clients that may expect one or the other. + + + +These endpoints return metadata about: + +- Available endpoints (authorization, token, userinfo, JWKS) +- Supported grant types and response types +- Supported scopes and claims +- Token signing algorithms + +This enables automatic integration with OIDC-compliant libraries and tools. + +## Token validation + +Third-party clients should validate access tokens to ensure they're authentic and not tampered with. + + + +**Recommended: Use asymmetric JWT signing keys** + +For OAuth implementations, we strongly recommend using asymmetric signing algorithms (RS256 or ES256) instead of the default HS256. With asymmetric keys, third-party clients can validate JWTs using the public key from your JWKS endpoint without needing access to your JWT secret. This is more secure, scalable, and follows OAuth best practices. + +Learn how to [configure asymmetric JWT signing keys](/docs/guides/auth/signing-keys) in your project. + + + + + +**ID tokens require asymmetric signing algorithms** + +If you request the `openid` scope to receive ID tokens, your project must be configured to use asymmetric signing algorithms (RS256 or ES256). ID token generation will fail with an error if your project is still using the default HS256 symmetric algorithm. This is a security requirement of the OpenID Connect specification. + + + +### JWKS endpoint + +Supabase Auth exposes a JSON Web Key Set (JWKS) endpoint containing public keys for token verification: + +``` +https://.supabase.co/auth/v1/.well-known/jwks.json +``` + +Example response: + +```json +{ + "keys": [ + { + "kty": "RSA", + "kid": "key-id", + "use": "sig", + "alg": "RS256", + "n": "...", + "e": "AQAB" + } + ] +} +``` + +### Validating tokens + +Use a JWT library to verify tokens: + + + + +```javascript +import { createRemoteJWKSet, jwtVerify } from 'jose' + +const JWKS = createRemoteJWKSet( + new URL('https://.supabase.co/auth/v1/.well-known/jwks.json') +) + +async function verifyAccessToken(token) { + try { + const { payload } = await jwtVerify(token, JWKS, { + issuer: 'https://.supabase.co/auth/v1', + audience: 'authenticated', + }) + return payload + } catch (error) { + console.error('Token verification failed:', error) + return null + } +} +``` + + + + +```python +from jose import jwt +from jose.backends import RSAKey +import requests + +# Fetch JWKS +jwks = requests.get('https://.supabase.co/auth/v1/.well-known/jwks.json').json() + +def verify_access_token(token): + try: + payload = jwt.decode( + token, + jwks, + algorithms=['RS256'], + issuer='https://.supabase.co/auth/v1', + audience='authenticated' + ) + return payload + except jwt.JWTError as e: + print(f'Token verification failed: {e}') + return None +``` + + + + +```go +package main + +import ( + "context" + "github.com/coreos/go-oidc/v3/oidc" +) + +func verifyAccessToken(ctx context.Context, token string) (*oidc.IDToken, error) { + provider, err := oidc.NewProvider( + ctx, + "https://.supabase.co/auth/v1", + ) + if err != nil { + return nil, err + } + + verifier := provider.Verifier(&oidc.Config{ + ClientID: "authenticated", + }) + + return verifier.Verify(ctx, token) +} +``` + + + + +### What to validate + +Always verify: + +1. **Signature** - Token is signed by Supabase Auth +2. **Issuer** (`iss`) - Matches your project URL +3. **Audience** (`aud`) - Is `authenticated` +4. **Expiration** (`exp`) - Token is not expired +5. **Client ID** (`client_id`) - Matches your client (if applicable) + +## Managing user grants + +Users can view and manage the OAuth applications they've authorized to access their account. This is important for transparency and security, allowing users to audit and revoke access when needed. + +### Viewing authorized applications + +Users can retrieve a list of all OAuth clients they've authorized: + +```javascript +const { data: grants, error } = await supabase.auth.oauth.getUserGrants() + +if (error) { + console.error('Error fetching grants:', error) +} else { + console.log('Authorized applications:', grants) +} +``` + +The response includes details about each authorized OAuth client: + +```json +[ + { + "id": "grant-uuid", + "client_id": "9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d", + "client_name": "My Third-Party App", + "scopes": ["email", "profile"], + "created_at": "2025-01-15T10:30:00.000Z", + "updated_at": "2025-01-15T10:30:00.000Z" + } +] +``` + +### Revoking access + +Users can revoke access for a specific OAuth client at any time. When access is revoked, all active sessions and refresh tokens for that client are immediately invalidated: + +```javascript +const { error } = await supabase.auth.oauth.revokeGrant(clientId) + +if (error) { + console.error('Error revoking access:', error) +} else { + console.log('Access revoked successfully') +} +``` + +After revoking access: + +- All refresh tokens for that client are deleted +- The user will need to re-authorize the application to grant access again + + + +**Build a settings page for your users** + +It's a good practice to provide a settings page where users can view all authorized applications and revoke access to any they no longer trust or use. This increases transparency and gives users control over their data. + + + +For complete API reference, see the [OAuth methods in supabase-js](/docs/reference/javascript/auth-oauth). + +## Next steps + +- [Implement MCP authentication](/docs/guides/auth/oauth-server/mcp-authentication) - Enable AI agent authentication +- [Secure with RLS](/docs/guides/auth/oauth-server/token-security) - Control data access for OAuth clients +- [Learn about JWTs](/docs/guides/auth/jwts) - Understand Supabase token structure diff --git a/apps/docs/content/guides/auth/oauth-server/token-security.mdx b/apps/docs/content/guides/auth/oauth-server/token-security.mdx new file mode 100644 index 0000000000000..e5ca8da24ea41 --- /dev/null +++ b/apps/docs/content/guides/auth/oauth-server/token-security.mdx @@ -0,0 +1,446 @@ +--- +id: 'oauth-server-token-security' +title: 'Token Security and Row Level Security' +description: 'Secure your data with Row Level Security policies for OAuth clients' +--- + +When you enable OAuth 2.1 in your Supabase project, third-party applications can access user data on their behalf. Row Level Security (RLS) policies are crucial for controlling exactly what data each OAuth client can access. + + + +**Scopes control OIDC data, not database access** + +The OAuth scopes (`openid`, `email`, `profile`, `phone`) control what user information is included in ID tokens and returned by the UserInfo endpoint. They do **not** control access to your database tables or API endpoints. + +Use RLS to define which OAuth clients can access which data, regardless of the scopes they requested. + + + +## How OAuth tokens work with RLS + +OAuth access tokens issued by Supabase Auth are JWTs that include all standard Supabase claims plus OAuth-specific claims. This means your existing RLS policies continue to work, and you can add OAuth-specific logic to create granular access controls. + +### Token structure + +Every OAuth access token includes: + +```json +{ + "sub": "user-uuid", + "role": "authenticated", + "aud": "authenticated", + "user_id": "user-uuid", + "email": "user@example.com", + "client_id": "9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d", + "aal": "aal1", + "amr": [{ "method": "password", "timestamp": 1735815600 }], + "session_id": "session-uuid", + "iss": "https://.supabase.co/auth/v1", + "iat": 1735815600, + "exp": 1735819200 +} +``` + +The key OAuth-specific claim is: + +| Claim | Description | +| ----------- | -------------------------------------------------------------- | +| `client_id` | Unique identifier of the OAuth client that obtained this token | + +You can use this claim in RLS policies to grant different permissions to different clients. + +## Extracting OAuth claims in RLS + +Use the `auth.jwt()` function to access token claims in your policies: + +```sql +-- Get the client ID from the token +(auth.jwt() ->> 'client_id') + +-- Check if the token is from an OAuth client +(auth.jwt() ->> 'client_id') IS NOT NULL + +-- Check if the token is from a specific client +(auth.jwt() ->> 'client_id') = 'mobile-app-client-id' +``` + +## Common RLS patterns for OAuth + +### Pattern 1: Grant specific client full access + +Allow a specific OAuth client to access all user data: + +```sql +CREATE POLICY "Mobile app can access user data" +ON user_data FOR ALL +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') = 'mobile-app-client-id' +); +``` + +### Pattern 2: Grant multiple clients read-only access + +Allow several OAuth clients to read data, but not modify it: + +```sql +CREATE POLICY "Third-party apps can read profiles" +ON profiles FOR SELECT +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') IN ( + 'analytics-client-id', + 'reporting-client-id', + 'dashboard-client-id' + ) +); +``` + +### Pattern 3: Restrict sensitive data from OAuth clients + +Prevent OAuth clients from accessing sensitive data: + +```sql +CREATE POLICY "OAuth clients cannot access payment info" +ON payment_methods FOR ALL +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') IS NULL -- Only direct user sessions +); +``` + +### Pattern 4: Client-specific data access + +Different clients access different subsets of data: + +```sql +-- Analytics client can only read aggregated data +CREATE POLICY "Analytics client reads summaries" +ON user_metrics FOR SELECT +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') = 'analytics-client-id' +); + +-- Admin client can read and modify all data +CREATE POLICY "Admin client full access" +ON user_data FOR ALL +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') = 'admin-client-id' +); +``` + +## Real-world examples + +### Example 1: Multi-platform application + +You have a web app, mobile app, and third-party integrations: + +```sql +-- Web app: Full access +CREATE POLICY "Web app full access" +ON profiles FOR ALL +USING ( + auth.uid() = user_id AND + ( + (auth.jwt() ->> 'client_id') = 'web-app-client-id' + OR (auth.jwt() ->> 'client_id') IS NULL -- Direct user sessions + ) +); + +-- Mobile app: Read-only access to profiles +CREATE POLICY "Mobile app reads profiles" +ON profiles FOR SELECT +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') = 'mobile-app-client-id' +); + +-- Third-party integration: Limited data access +CREATE POLICY "Integration reads public data" +ON profiles FOR SELECT +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') = 'integration-client-id' AND + is_public = true +); +``` + +## Custom access token hooks + +[Custom Access Token Hooks](/docs/guides/auth/auth-hooks/custom-access-token-hook) work with OAuth tokens, allowing you to inject custom claims based on the OAuth client. This is particularly useful for customizing standard JWT claims like `audience` (`aud`) or adding client-specific metadata. + + + +Custom Access Token Hooks are triggered for **all** token issuance. Use `client_id` or `authentication_method` (`oauth_provider/authorization_code` for OAuth flows) to differentiate OAuth from regular authentication. + + + +### Customizing the audience claim + +A common use case is customizing the `audience` claim for different OAuth clients. This allows third-party services to validate that tokens were issued specifically for them: + +```typescript +import { serve } from 'https://deno.land/std@0.168.0/http/server.ts' + +serve(async (req) => { + const { user, claims, client_id } = await req.json() + + // Customize audience based on OAuth client + if (client_id === 'mobile-app-client-id') { + return new Response( + JSON.stringify({ + claims: { + aud: 'https://api.myapp.com', + app_version: '2.0.0', + }, + }), + { headers: { 'Content-Type': 'application/json' } } + ) + } + + if (client_id === 'analytics-partner-id') { + return new Response( + JSON.stringify({ + claims: { + aud: 'https://analytics.partner.com', + access_level: 'read-only', + }, + }), + { headers: { 'Content-Type': 'application/json' } } + ) + } + + // Default audience for non-OAuth flows + return new Response(JSON.stringify({ claims: {} }), { + headers: { 'Content-Type': 'application/json' }, + }) +}) +``` + +The `audience` claim is especially important for: + +- **JWT validation by third parties**: Services can verify tokens were issued for their specific API +- **Multi-tenant applications**: Different audiences for different client applications +- **Compliance**: Meeting security requirements that mandate audience validation + +### Adding client-specific claims + +You can also add custom claims and metadata based on the OAuth client: + +```typescript +import { serve } from 'https://deno.land/std@0.168.0/http/server.ts' +import { createClient } from 'https://esm.sh/@supabase/supabase-js@2' + +serve(async (req) => { + const { user, claims, client_id } = await req.json() + + const supabase = createClient(Deno.env.get('SUPABASE_URL')!, Deno.env.get('SUPABASE_SECRET_KEY')!) + + // Add custom claims based on OAuth client + let customClaims = {} + + if (client_id === 'mobile-app-client-id') { + customClaims.aud = 'https://mobile.myapp.com' + customClaims.app_version = '2.0.0' + customClaims.platform = 'mobile' + } else if (client_id === 'analytics-client-id') { + customClaims.aud = 'https://analytics.myapp.com' + customClaims.read_only = true + customClaims.data_retention_days = 90 + } else if (client_id?.startsWith('mcp-')) { + // MCP AI agents + const { data: agent } = await supabase + .from('approved_ai_agents') + .select('name, max_data_retention_days') + .eq('client_id', client_id) + .single() + + customClaims.aud = `https://mcp.myapp.com/${client_id}` + customClaims.ai_agent = true + customClaims.agent_name = agent?.name + customClaims.max_retention = agent?.max_data_retention_days + } + + return new Response(JSON.stringify({ claims: customClaims }), { + headers: { 'Content-Type': 'application/json' }, + }) +}) +``` + +Use these custom claims in RLS: + +```sql +-- Policy based on custom claims +CREATE POLICY "Read-only clients cannot modify" +ON user_data FOR UPDATE +USING ( + auth.uid() = user_id AND + (auth.jwt() -> 'user_metadata' ->> 'read_only')::boolean IS NOT TRUE +); + +-- Policy based on audience claim +CREATE POLICY "Only specific audience can access" +ON api_data FOR SELECT +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'aud') IN ( + 'https://api.myapp.com', + 'https://mobile.myapp.com' + ) +); +``` + +## Security best practices + +### 1. Principle of least privilege + +Grant OAuth clients only the minimum permissions they need: + +```sql +-- Bad: Grant all access by default +CREATE POLICY "OAuth clients full access" +ON user_data FOR ALL +USING (auth.uid() = user_id); + +-- Good: Grant specific access per client +CREATE POLICY "Specific client specific access" +ON user_data FOR SELECT +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') = 'trusted-client-id' +); +``` + +### 2. Separate policies for OAuth clients + +Create dedicated policies for OAuth clients rather than mixing them with user policies: + +```sql +-- User access +CREATE POLICY "Users access their own data" +ON user_data FOR ALL +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') IS NULL +); + +-- OAuth client access (separate policy) +CREATE POLICY "OAuth clients limited access" +ON user_data FOR SELECT +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') IN ('client-1', 'client-2') +); +``` + +### 3. Regularly audit OAuth clients + +Track and review which clients have access: + +```sql +-- View all active OAuth clients +SELECT + oc.client_id, + oc.name, + oc.created_at, + COUNT(DISTINCT s.user_id) as active_users +FROM auth.oauth_clients oc +LEFT JOIN auth.sessions s ON s.client_id = oc.client_id +WHERE s.created_at > NOW() - INTERVAL '30 days' +GROUP BY oc.client_id, oc.name, oc.created_at; +``` + +## Testing your policies + +Always test your RLS policies before deploying to production: + +```sql +-- Test as a specific OAuth client +SET request.jwt.claims = '{ + "sub": "test-user-uuid", + "role": "authenticated", + "client_id": "test-client-id" +}'; + +-- Test queries +SELECT * FROM user_data WHERE user_id = 'test-user-uuid'; + +-- Reset +RESET request.jwt.claims; +``` + +Or use the Supabase Dashboard's [RLS policy tester](/dashboard/project/_/auth/policies). + +## Troubleshooting + +### Policy not working for OAuth client + +**Problem**: OAuth client can't access data despite having a valid token. + +**Check**: + +1. Verify the policy includes the client's `client_id` +2. Ensure RLS is enabled on the table +3. Check for conflicting restrictive policies +4. Test with service role key to isolate RLS issues + +```sql +-- Debug: See what client_id is in the token +SELECT auth.jwt() ->> 'client_id'; + +-- Debug: Test without RLS +SET LOCAL role = service_role; +SELECT * FROM your_table; +``` + +### Policy too permissive + +**Problem**: OAuth client has access to data it shouldn't. + +**Solution**: Use `AS RESTRICTIVE` policies to add additional constraints: + +```sql +-- This policy runs in addition to permissive policies +CREATE POLICY "Restrict OAuth clients" +ON sensitive_data +AS RESTRICTIVE +FOR ALL +TO authenticated +USING ( + -- OAuth clients cannot access this table at all + (auth.jwt() ->> 'client_id') IS NULL +); +``` + +### Can't differentiate between users and OAuth clients + +**Problem**: Need to apply different logic for direct user sessions vs OAuth. + +**Solution**: Check if `client_id` is present: + +```sql +-- Direct user sessions (no OAuth) +CREATE POLICY "Direct users full access" +ON user_data FOR ALL +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') IS NULL +); + +-- OAuth clients (limited access) +CREATE POLICY "OAuth clients read only" +ON user_data FOR SELECT +USING ( + auth.uid() = user_id AND + (auth.jwt() ->> 'client_id') IS NOT NULL +); +``` + +## Next steps + +- [Learn about JWTs](/docs/guides/auth/jwts) - Deep dive into Supabase token structure +- [Row Level Security](/docs/guides/auth/row-level-security) - Complete RLS guide +- [Custom Access Token Hooks](/docs/guides/auth/auth-hooks/custom-access-token-hook) - Inject custom claims +- [OAuth flows](/docs/guides/auth/oauth-server/oauth-flows) - Understand token issuance diff --git a/apps/docs/content/guides/auth/redirect-urls.mdx b/apps/docs/content/guides/auth/redirect-urls.mdx index fb9d07676cbac..1175fd86dd6a4 100644 --- a/apps/docs/content/guides/auth/redirect-urls.mdx +++ b/apps/docs/content/guides/auth/redirect-urls.mdx @@ -9,6 +9,14 @@ subtitle: 'Set up redirect urls with Supabase Auth.' Supabase Auth allows you to control how the [user sessions](/docs/guides/auth/sessions) are handled by your application. + + +**Looking for OAuth client redirect URIs?** + +This guide covers redirect URLs for users signing **into** your application (using social providers like Google, GitHub, etc.). If you're setting up your Supabase project as an **OAuth 2.1 provider** for third-party applications, see the [OAuth Server Redirect URI configuration](/docs/guides/auth/oauth-server/getting-started#redirect-uri-configuration) instead. + + + When using [passwordless sign-ins](/docs/reference/javascript/auth-signinwithotp) or [third-party providers](/docs/reference/javascript/auth-signinwithoauth#sign-in-using-a-third-party-provider-with-redirect), the Supabase client library provides a `redirectTo` parameter to specify where to redirect the user after authentication. The URL in `redirectTo` should match the [Redirect URLs](/dashboard/project/_/auth/url-configuration) list configuration. To configure allowed redirect URLs, go to the [URL Configuration](/dashboard/project/_/auth/url-configuration) page. Once you've added necessary URLs, you can use the URL you want the user to be redirected to in the `redirectTo` parameter. diff --git a/apps/docs/content/guides/auth/social-login/auth-figma.mdx b/apps/docs/content/guides/auth/social-login/auth-figma.mdx index f934234e9c814..79eb179aefd52 100644 --- a/apps/docs/content/guides/auth/social-login/auth-figma.mdx +++ b/apps/docs/content/guides/auth/social-login/auth-figma.mdx @@ -10,35 +10,35 @@ To enable Figma Auth for your project, you need to set up a Figma OAuth applicat Setting up Figma logins for your application consists of 3 parts: -- Create and configure a Figma App on the [Figma Developers page](https://www.figma.com/developers). +- Create and configure a Figma App on the [Figma Developers page](https://www.figma.com/developers/app). - Add your Figma `client_id` and `client_secret` to your [Supabase Project](https://app.supabase.com). - Add the login code to your [Supabase JS Client App](https://github.com/supabase/supabase-js). ## Access the Figma Developers page -- Go to the [Figma Developers page](https://www.figma.com/developers) -- Click on `My apps` at the top right +- Go to the [Figma Developers page](https://www.figma.com/developers/app) - Log in (if necessary) -![Figma Developers page](/docs/img/guides/auth-figma/figma_developers_page.png) - ## Find your callback URL <$Partial path="social_provider_setup.mdx" variables={{ "provider": "Figma" }} /> ## Create a Figma OAuth app -- Enter your `App name`, `Website URL` and upload your app logo -- Click on `Add callback` -- Add your `Callback URL` -- Click on `Save` +1. Enter your `App name`, select the owner for the app and click `Create app` button + + ![Create Figma app](/docs/img/guides/auth-figma/figma_app_credentials.png) + +2. Copy and save your newly-generated `Client ID` +3. Copy and save your newly-generated `Client Secret` +4. Then, go to `OAuth credentials` and click on `Add a redirect URL` button -![Create Figma app](/docs/img/guides/auth-figma/figma_create_app.png) + ![Add redirect URL](/docs/img/guides/auth-figma/figma_app_redirect_uri.png) -- Copy and save your newly-generated `Client ID` -- Copy and save your newly-generated `Client Secret` +5. Add your URL from the previous step (callback URL on Supabase) and click on `Add` button +6. Go to `OAuth scopes` and select `current_user:read` under `Users`. -![Get Figma app credentials](/docs/img/guides/auth-figma/figma_app_credentials.png) +![Select OAuth scopes](/docs/img/guides/auth-figma/figma_app_scopes.png) ## Enter your Figma credentials into your Supabase project diff --git a/apps/docs/docs/ref/api/api.mdx b/apps/docs/docs/ref/api/api.mdx deleted file mode 100644 index c1764683dd31a..0000000000000 --- a/apps/docs/docs/ref/api/api.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -slug: / -sidebar_position: 1 -id: management-api -title: Management API -sidebar_label: Management API ---- - -The Management API allows you to manage your projects programmatically. - -## Authentication - -All API requests require a Supabase Personal token to be included in the Authorization header: `Authorization: Bearer `. -To generate or manage your API token, visit your [account](https://supabase.com/dashboard/account/tokens) page. -Your API tokens carry the same privileges as your user account, so be sure to keep it secret. - -```bash -$ curl https://api.supabase.com/v1/projects \ --H "Authorization: Bearer sbp_bdd0••••••••••••••••••••••••••••••••4f23" -``` - -All API requests must be authenticated and made over HTTPS. - -## Rate limits - -The rate limit for Management API is 120 requests per one minute per user, and applies cumulatively across all requests made with your personal access tokens. - -If you exceed this limit, all Management API calls for the next minute will be blocked, resulting in a HTTP 429 response. - -The Management API is subject to our fair-use policy. -All resources created via the API are subject to the pricing detailed on our [Pricing](https://supabase.com/pricing) pages. - -## Additional links - -- [OpenAPI Docs](https://api.supabase.com/api/v1) -- [OpenAPI Spec](https://api.supabase.com/api/v1-json) -- Reporting bugs and issues: [github.com/supabase/supabase](https://github.com/supabase/supabase) diff --git a/apps/docs/docs/ref/api/introduction.mdx b/apps/docs/docs/ref/api/introduction.mdx index 638f39b6d53f1..d865e2cdca795 100644 --- a/apps/docs/docs/ref/api/introduction.mdx +++ b/apps/docs/docs/ref/api/introduction.mdx @@ -36,16 +36,11 @@ hideTitle: true -H "Authorization: Bearer sbp_bdd0••••••••••••••••••••••••••••••••4f23" ``` - All API requests must be authenticated and made over HTTPS. + All API requests must be authenticated and made over HTTPS foo. - ## Rate limits + <$Partial path="api_rate_limits.mdx" /> - The rate limit for Management API is 120 requests per one minute per user, and applies cumulatively across all requests made with your personal access tokens. - - If you exceed this limit, all Management API calls for the next minute will be blocked, resulting in a HTTP 429 response. - - The Management API is subject to our fair-use policy. - All resources created via the API are subject to the pricing detailed on our [Pricing](https://supabase.com/pricing) pages. + The Management API is subject to our fair-use policy. All resources created via the API are subject to the pricing detailed on our [Pricing](https://supabase.com/pricing) pages. diff --git a/apps/docs/features/docs/Reference.generated.singleton.ts b/apps/docs/features/docs/Reference.generated.singleton.ts index 578742a2b9078..64ca53a3f635c 100644 --- a/apps/docs/features/docs/Reference.generated.singleton.ts +++ b/apps/docs/features/docs/Reference.generated.singleton.ts @@ -27,14 +27,19 @@ async function _typeSpecSingleton() { return typeSpec } +function normalizeRefPath(path: string) { + return path.replace(/\.index(?=\.|$)/g, '').replace(/\.+/g, '.') +} + export async function getTypeSpec(ref: string) { const modules = await _typeSpecSingleton() - const delimiter = ref.indexOf('.') - const refMod = ref.substring(0, delimiter) + const normalizedRef = normalizeRefPath(ref) + const delimiter = normalizedRef.indexOf('.') + const refMod = normalizedRef.substring(0, delimiter) const mod = modules.find((mod) => mod.name === refMod) - return mod?.methods.get(ref) + return mod?.methods.get(normalizedRef) } let cliSpec: Json diff --git a/apps/docs/features/docs/Reference.typeSpec.ts b/apps/docs/features/docs/Reference.typeSpec.ts index 13c122bfb73c8..d70939be4343b 100644 --- a/apps/docs/features/docs/Reference.typeSpec.ts +++ b/apps/docs/features/docs/Reference.typeSpec.ts @@ -574,10 +574,10 @@ function parseType(type: any, map: Map, typeArguments?: any, debug switch (type.kindString) { case 'Type alias': if (typeof type.type === 'object') { - return parseType(type.type, map) + return parseType(type.type, map, typeArguments) } case 'Interface': - return parseInterface(type, map) + return parseInterface(type, map, typeArguments) default: break } @@ -599,10 +599,16 @@ function delegateParsing( const dereferencedType = parseType(referenced, map, typeArguments) if (dereferencedType) { - dereferencedType.name = nameOrAnonymous([original, dereferencedType]) + // When resolving a type parameter (e.g., T -> { vectorBucket: VectorBucket }), + // don't override the name or comment - let the resolved type speak for itself + const isTypeParameterResolution = original.refersToTypeParameter === true + + if (!isTypeParameterResolution) { + dereferencedType.name = nameOrAnonymous([original, dereferencedType]) + } } - if (original.comment) { + if (original.comment && !original.refersToTypeParameter) { dereferencedType.comment = { ...normalizeComment(dereferencedType.comment), ...normalizeComment(original.comment), @@ -696,14 +702,14 @@ function parseReferenceType(type: any, map: Map, typeArguments?: an type, referenced.type, map, - type.typeArguments + typeArguments ?? type.typeArguments ) - : delegateParsing(type, referenced, map, type.typeArguments) + : delegateParsing(type, referenced, map, typeArguments ?? type.typeArguments) if (maybeType) { return maybeType } else if (isNewTypedoc(referenced) && referenced.kind === KIND_INTERFACE) { - return parseInterface(referenced, map) + return parseInterface(referenced, map, typeArguments ?? type.typeArguments) } else if (isNewTypedoc(referenced) && referenced.kind === KIND_CLASS) { // Class is too complicated to display here, just return its name return { @@ -919,9 +925,9 @@ function parseTypeOperatorType( } } -function parseInterface(type: any, map: Map): CustomObjectType { +function parseInterface(type: any, map: Map, typeArguments?: any): CustomObjectType { const properties = (type.children ?? []) - .map((child) => parseTypeInternals(child, map)) + .map((child) => parseTypeInternals(child, map, typeArguments)) .filter(Boolean) return { 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 4428b7093c4fd..ec7ab804cfca5 100644 --- a/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap +++ b/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap @@ -739,7 +739,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -824,7 +823,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -1043,7 +1041,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "OAuthClient", "type": "object", "properties": [ { @@ -1339,7 +1337,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "OAuthClient", "type": "object", "properties": [ { @@ -1676,7 +1674,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "OAuthClient", "type": "object", "properties": [ { @@ -2003,7 +2001,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "OAuthClient", "type": "object", "properties": [ { @@ -2384,7 +2382,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -2519,7 +2516,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -2564,7 +2560,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -2608,7 +2603,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -2653,7 +2647,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -2959,7 +2952,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -3094,7 +3086,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -3139,7 +3130,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -3183,7 +3173,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -3228,7 +3217,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -3662,7 +3650,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -3882,7 +3869,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -3927,7 +3913,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -3971,7 +3956,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -4016,7 +4000,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -4318,7 +4301,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -4453,7 +4435,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -4498,7 +4479,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -4542,7 +4522,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -4587,7 +4566,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -4916,7 +4894,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -5051,7 +5028,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -5096,7 +5072,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -5140,7 +5115,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -5185,7 +5159,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -5789,7 +5762,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -5924,7 +5896,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -5969,7 +5940,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -6013,7 +5983,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -6058,7 +6027,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -7065,7 +7033,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -7105,7 +7073,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -7145,7 +7113,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -7227,7 +7195,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "AuthMFAVerifyResponseData", "type": "object", "properties": [ { @@ -7402,7 +7370,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -7447,7 +7414,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -7491,7 +7457,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -7536,7 +7501,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -7853,7 +7817,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -7945,7 +7909,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -8024,7 +7988,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -8099,7 +8063,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -8139,7 +8103,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -8179,7 +8143,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -8232,7 +8196,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -8456,7 +8419,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -8560,7 +8522,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "AuthMFAVerifyResponseData", "type": "object", "properties": [ { @@ -8735,7 +8697,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -8780,7 +8741,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -8824,7 +8784,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -8869,7 +8828,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -9182,7 +9140,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "AuthMFAVerifyResponseData", "type": "object", "properties": [ { @@ -9357,7 +9315,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -9402,7 +9359,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -9446,7 +9402,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -9491,7 +9446,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -9794,7 +9748,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "AuthMFAVerifyResponseData", "type": "object", "properties": [ { @@ -9969,7 +9923,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -10014,7 +9967,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -10058,7 +10010,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -10103,7 +10054,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -10396,7 +10346,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "AuthMFAVerifyResponseData", "type": "object", "properties": [ { @@ -10571,7 +10521,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -10616,7 +10565,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -10660,7 +10608,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -10705,7 +10652,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -11010,7 +10956,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -11106,7 +11051,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -11182,7 +11126,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "OAuthAuthorizationDetails", "type": "object", "properties": [ { @@ -11352,7 +11296,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "array", - "name": "T", "elemType": { "name": "OAuthGrant", "type": "object", @@ -11573,7 +11516,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -11805,7 +11747,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -11850,7 +11791,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -11894,7 +11834,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -11939,7 +11878,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -12306,7 +12244,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -12351,7 +12288,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -12395,7 +12331,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -12440,7 +12375,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -12757,7 +12691,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -12989,7 +12922,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -13034,7 +12966,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -13078,7 +13009,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -13123,7 +13053,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -13490,7 +13419,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -13535,7 +13463,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -13579,7 +13506,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -13624,7 +13550,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -14065,7 +13990,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -14200,7 +14124,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -14245,7 +14168,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -14289,7 +14211,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -14334,7 +14255,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -14623,7 +14543,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -14852,7 +14771,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -14897,7 +14815,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -14941,7 +14858,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -14986,7 +14902,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -15344,7 +15259,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -15389,7 +15303,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -15433,7 +15346,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -15478,7 +15390,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -16508,7 +16419,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -16553,7 +16463,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -16597,7 +16506,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -16642,7 +16550,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -16971,7 +16878,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -17106,7 +17012,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -17151,7 +17056,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -17195,7 +17099,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -17240,7 +17143,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -18238,7 +18140,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -18467,7 +18368,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -18512,7 +18412,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -18556,7 +18455,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -18601,7 +18499,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -18959,7 +18856,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -19004,7 +18900,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -19048,7 +18943,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -19093,7 +18987,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -19648,7 +19541,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -19693,7 +19585,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -19737,7 +19628,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -19782,7 +19672,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -20314,7 +20203,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -20359,7 +20247,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -20403,7 +20290,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -20448,7 +20334,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -21014,7 +20899,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -21059,7 +20943,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -21103,7 +20986,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -21148,7 +21030,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -21684,7 +21565,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -21729,7 +21609,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -21773,7 +21652,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -21818,7 +21696,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -22125,7 +22002,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -22357,7 +22233,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -22402,7 +22277,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -22446,7 +22320,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -22491,7 +22364,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -22858,7 +22730,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -22903,7 +22774,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -22947,7 +22817,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -22992,7 +22861,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -23309,7 +23177,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -23541,7 +23408,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -23586,7 +23452,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -23630,7 +23495,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -23675,7 +23539,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -24042,7 +23905,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -24087,7 +23949,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -24131,7 +23992,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -24176,7 +24036,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -24590,7 +24449,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -24822,7 +24680,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -25054,7 +24911,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -25099,7 +24955,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -25143,7 +24998,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -25188,7 +25042,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -25555,7 +25408,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -25600,7 +25452,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -25644,7 +25495,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -25689,7 +25539,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -26028,7 +25877,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -26260,7 +26108,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -26305,7 +26152,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -26349,7 +26195,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -26394,7 +26239,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -26761,7 +26605,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -26806,7 +26649,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -26850,7 +26692,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -26895,7 +26736,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -27286,7 +27126,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -27515,7 +27354,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -27560,7 +27398,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -27604,7 +27441,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -27649,7 +27485,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -28007,7 +27842,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -28052,7 +27886,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -28096,7 +27929,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -28141,7 +27973,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -29024,7 +28855,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -29144,7 +28974,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -29373,7 +29202,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -29418,7 +29246,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -29462,7 +29289,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -29507,7 +29333,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -29865,7 +29690,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -29910,7 +29734,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -29954,7 +29777,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -29999,7 +29821,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -30448,7 +30269,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -31138,7 +30958,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -31183,7 +31002,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -31227,7 +31045,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -31272,7 +31089,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -31630,7 +31446,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -31675,7 +31490,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -31719,7 +31533,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -31764,7 +31577,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -32132,7 +31944,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -32364,7 +32175,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -32409,7 +32219,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -32453,7 +32262,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -32498,7 +32306,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -32865,7 +32672,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -32910,7 +32716,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -32954,7 +32759,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -32999,7 +32803,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -33541,7 +33344,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -33676,7 +33478,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -33721,7 +33522,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -33765,7 +33565,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -33810,7 +33609,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -34326,7 +34124,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -34558,7 +34355,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -34603,7 +34399,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -34647,7 +34442,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -34692,7 +34486,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -35059,7 +34852,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -35104,7 +34896,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -35148,7 +34939,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -35193,7 +34983,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -36813,8 +36602,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "event", "type": { "type": "literal", - "value": "*", - "name": "T" + "value": "*" }, "comment": { "shortText": "The type of database change to listen to." @@ -36920,8 +36708,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "event", "type": { "type": "literal", - "value": "INSERT", - "name": "T" + "value": "INSERT" }, "comment": { "shortText": "The type of database change to listen to." @@ -37013,8 +36800,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "event", "type": { "type": "literal", - "value": "UPDATE", - "name": "T" + "value": "UPDATE" }, "comment": { "shortText": "The type of database change to listen to." @@ -37106,8 +36892,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "event", "type": { "type": "literal", - "value": "DELETE", - "name": "T" + "value": "DELETE" }, "comment": { "shortText": "The type of database change to listen to." @@ -38320,7 +38105,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "schema", "type": { "type": "nameOnly", - "name": "SchemaName" + "name": "@supabase/supabase-js.default.SchemaName" }, "isOptional": true } @@ -40408,7 +40193,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -40493,7 +40277,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -40712,7 +40495,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "OAuthClient", "type": "object", "properties": [ { @@ -41008,7 +40791,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "OAuthClient", "type": "object", "properties": [ { @@ -41345,7 +41128,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "OAuthClient", "type": "object", "properties": [ { @@ -41672,7 +41455,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "OAuthClient", "type": "object", "properties": [ { @@ -42053,7 +41836,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -42188,7 +41970,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -42233,7 +42014,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -42277,7 +42057,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -42322,7 +42101,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -42627,7 +42405,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -42762,7 +42539,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -42807,7 +42583,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -42851,7 +42626,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -42896,7 +42670,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -43330,7 +43103,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -43550,7 +43322,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -43595,7 +43366,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -43639,7 +43409,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -43684,7 +43453,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -43986,7 +43754,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -44121,7 +43888,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -44166,7 +43932,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -44210,7 +43975,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -44255,7 +44019,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -44583,7 +44346,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -44718,7 +44480,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -44763,7 +44524,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -44807,7 +44567,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -44852,7 +44611,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -45455,7 +45213,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -45590,7 +45347,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -45635,7 +45391,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -45679,7 +45434,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -45724,7 +45478,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -46731,7 +46484,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -46771,7 +46524,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -46811,7 +46564,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -46893,7 +46646,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "AuthMFAVerifyResponseData", "type": "object", "properties": [ { @@ -47068,7 +46821,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -47113,7 +46865,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -47157,7 +46908,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -47202,7 +46952,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -47519,7 +47268,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -47611,7 +47360,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -47690,7 +47439,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -47765,7 +47514,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -47805,7 +47554,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -47845,7 +47594,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Prettify" } }, { @@ -47898,7 +47647,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -48122,7 +47870,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -48226,7 +47973,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "AuthMFAVerifyResponseData", "type": "object", "properties": [ { @@ -48401,7 +48148,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -48446,7 +48192,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -48490,7 +48235,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -48535,7 +48279,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -48848,7 +48591,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "AuthMFAVerifyResponseData", "type": "object", "properties": [ { @@ -49023,7 +48766,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -49068,7 +48810,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -49112,7 +48853,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -49157,7 +48897,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -49460,7 +49199,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "AuthMFAVerifyResponseData", "type": "object", "properties": [ { @@ -49635,7 +49374,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -49680,7 +49418,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -49724,7 +49461,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -49769,7 +49505,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -50062,7 +49797,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "AuthMFAVerifyResponseData", "type": "object", "properties": [ { @@ -50237,7 +49972,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -50282,7 +50016,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -50326,7 +50059,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -50371,7 +50103,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -50676,7 +50407,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -50772,7 +50502,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -50848,7 +50577,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", + "name": "OAuthAuthorizationDetails", "type": "object", "properties": [ { @@ -51018,7 +50747,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "array", - "name": "T", "elemType": { "name": "OAuthGrant", "type": "object", @@ -51230,7 +50958,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -51459,7 +51186,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -51504,7 +51230,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -51548,7 +51273,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -51593,7 +51317,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -51951,7 +51674,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -51996,7 +51718,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -52040,7 +51761,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -52085,7 +51805,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -53114,7 +52833,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -53159,7 +52877,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -53203,7 +52920,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -53248,7 +52964,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -53577,7 +53292,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -53712,7 +53426,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -53757,7 +53470,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -53801,7 +53513,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -53846,7 +53557,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -54844,7 +54554,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -55073,7 +54782,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -55118,7 +54826,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -55162,7 +54869,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -55207,7 +54913,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -55565,7 +55270,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -55610,7 +55314,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -55654,7 +55357,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -55699,7 +55401,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -56254,7 +55955,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -56299,7 +55999,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -56343,7 +56042,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -56388,7 +56086,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -56920,7 +56617,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -56965,7 +56661,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -57009,7 +56704,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -57054,7 +56748,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -57620,7 +57313,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -57665,7 +57357,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -57709,7 +57400,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -57754,7 +57444,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -58290,7 +57979,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -58335,7 +58023,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -58379,7 +58066,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -58424,7 +58110,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -58731,7 +58416,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -58963,7 +58647,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -59008,7 +58691,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -59052,7 +58734,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -59097,7 +58778,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -59464,7 +59144,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -59509,7 +59188,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -59553,7 +59231,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -59598,7 +59275,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -59915,7 +59591,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -60147,7 +59822,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -60192,7 +59866,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -60236,7 +59909,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -60281,7 +59953,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -60648,7 +60319,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -60693,7 +60363,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -60737,7 +60406,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -60782,7 +60450,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -61196,7 +60863,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -61427,7 +61093,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -61659,7 +61324,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -61704,7 +61368,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -61748,7 +61411,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -61793,7 +61455,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -62160,7 +61821,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -62205,7 +61865,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -62249,7 +61908,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -62294,7 +61952,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -62633,7 +62290,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -62865,7 +62521,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -62910,7 +62565,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -62954,7 +62608,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -62999,7 +62652,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -63366,7 +63018,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -63411,7 +63062,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -63455,7 +63105,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -63500,7 +63149,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -63891,7 +63539,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -64120,7 +63767,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -64165,7 +63811,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -64209,7 +63854,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -64254,7 +63898,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -64612,7 +64255,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -64657,7 +64299,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -64701,7 +64342,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -64746,7 +64386,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -65629,7 +65268,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -65749,7 +65387,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -65978,7 +65615,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -66023,7 +65659,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -66067,7 +65702,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -66112,7 +65746,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -66470,7 +66103,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -66515,7 +66147,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -66559,7 +66190,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -66604,7 +66234,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -67053,7 +66682,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -67743,7 +67371,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -67788,7 +67415,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -67832,7 +67458,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -67877,7 +67502,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -68235,7 +67859,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -68280,7 +67903,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -68324,7 +67946,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -68369,7 +67990,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -68736,7 +68356,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -68968,7 +68587,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -69013,7 +68631,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -69057,7 +68674,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -69102,7 +68718,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -69469,7 +69084,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -69514,7 +69128,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -69558,7 +69171,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -69603,7 +69215,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -70144,7 +69755,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -70279,7 +69889,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -70324,7 +69933,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -70368,7 +69976,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -70413,7 +70020,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -70929,7 +70535,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "name": "T", "type": "object", "properties": [ { @@ -71161,7 +70766,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -71206,7 +70810,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -71250,7 +70853,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -71295,7 +70897,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -71662,7 +71263,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -71707,7 +71307,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -71751,7 +71350,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "factor_type", "type": { "type": "union", - "name": "Type", "subTypes": [ { "type": "literal", @@ -71796,7 +71394,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "status", "type": { "type": "union", - "name": "Status", "subTypes": [ { "type": "literal", @@ -73292,6 +72889,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "type": "nameOnly", "name": "FilterOperator" }, + { + "type": "literal", + "value": "not.match" + }, { "type": "literal", "value": "not.eq" @@ -73328,6 +72929,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "type": "literal", "value": "not.is" }, + { + "type": "literal", + "value": "not.isdistinct" + }, { "type": "literal", "value": "not.in" @@ -73379,6 +72984,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "type": "literal", "value": "not.wfts" + }, + { + "type": "literal", + "value": "not.imatch" } ] } @@ -73800,6 +73409,36 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } ] }, + "@supabase/postgrest-js.PostgrestFilterBuilder.isDistinct": { + "name": "@supabase/postgrest-js.PostgrestFilterBuilder.isDistinct", + "params": [ + { + "name": "column", + "type": { + "type": "nameOnly", + "name": "ColumnName" + }, + "comment": { + "shortText": "The column to filter on" + } + }, + { + "name": "value", + "comment": { + "shortText": "The value to filter with" + } + } + ], + "ret": { + "type": { + "type": "intrinsic", + "name": "this" + } + }, + "comment": { + "shortText": "Match only rows where \`column\` IS DISTINCT FROM \`value\`.\\n\\nUnlike \`.neq()\`, this treats \`NULL\` as a comparable value. Two \`NULL\` values\\nare considered equal (not distinct), and comparing \`NULL\` with any non-NULL\\nvalue returns true (distinct)." + } + }, "@supabase/postgrest-js.PostgrestFilterBuilder.like": { "name": "@supabase/postgrest-js.PostgrestFilterBuilder.like", "params": [ @@ -74986,6 +74625,108 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } ] }, + "@supabase/postgrest-js.PostgrestFilterBuilder.regexIMatch": { + "name": "@supabase/postgrest-js.PostgrestFilterBuilder.regexIMatch", + "params": [ + { + "name": "column", + "type": { + "type": "nameOnly", + "name": "ColumnName" + } + }, + { + "name": "pattern", + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "ret": { + "type": { + "type": "intrinsic", + "name": "this" + } + }, + "altSignatures": [ + { + "params": [ + { + "name": "column", + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "name": "pattern", + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "ret": { + "type": { + "type": "intrinsic", + "name": "this" + } + } + } + ] + }, + "@supabase/postgrest-js.PostgrestFilterBuilder.regexMatch": { + "name": "@supabase/postgrest-js.PostgrestFilterBuilder.regexMatch", + "params": [ + { + "name": "column", + "type": { + "type": "nameOnly", + "name": "ColumnName" + } + }, + { + "name": "pattern", + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "ret": { + "type": { + "type": "intrinsic", + "name": "this" + } + }, + "altSignatures": [ + { + "params": [ + { + "name": "column", + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "name": "pattern", + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "ret": { + "type": { + "type": "intrinsic", + "name": "this" + } + } + } + ] + }, "@supabase/postgrest-js.PostgrestFilterBuilder.returns": { "name": "@supabase/postgrest-js.PostgrestFilterBuilder.returns", "params": [], @@ -75250,7 +74991,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "@supabase/postgrest-js.PostgrestResponseSuccess.T" + "name": "@supabase/postgrest-js.default.Result" } }, { @@ -76767,7 +76508,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "@supabase/postgrest-js.PostgrestResponseSuccess.T" + "name": "@supabase/postgrest-js.default.Result" } }, { @@ -78180,8 +77921,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "event", "type": { "type": "literal", - "value": "*", - "name": "T" + "value": "*" }, "comment": { "shortText": "The type of database change to listen to." @@ -78287,8 +78027,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "event", "type": { "type": "literal", - "value": "INSERT", - "name": "T" + "value": "INSERT" }, "comment": { "shortText": "The type of database change to listen to." @@ -78380,8 +78119,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "event", "type": { "type": "literal", - "value": "UPDATE", - "name": "T" + "value": "UPDATE" }, "comment": { "shortText": "The type of database change to listen to." @@ -78473,8 +78211,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "event", "type": { "type": "literal", - "value": "DELETE", - "name": "T" + "value": "DELETE" }, "comment": { "shortText": "The type of database change to listen to." @@ -80815,7 +80552,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "id": "example-1", "name": "Example 1", - "code": "\`\`\`typescript\\nconst avatars = storage.from('avatars')\\n\`\`\`" + "code": "\`\`\`typescript\\nconst avatars = supabase.storage.from('avatars')\\n\`\`\`" } ] } @@ -81637,8 +81374,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "intrinsic", + "name": "undefined" }, "comment": { "shortText": "Response data of type T" @@ -81698,7 +81435,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst { data, error } = await supabase\\n .storage\\n .vectors\\n .createBucket('embeddings-prod')\\n\`\`\`" } ] } @@ -81732,8 +81469,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "intrinsic", + "name": "undefined" }, "comment": { "shortText": "Response data of type T" @@ -81782,7 +81519,7 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type.", + "shortText": "Deletes a vector bucket (bucket must be empty)\\nAll indexes must be deleted before deleting 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", @@ -81793,7 +81530,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst { data, error } = await supabase\\n .storage\\n .vectors\\n .deleteBucket('embeddings-old')\\n\`\`\`" } ] } @@ -81830,7 +81567,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\\n\`\`\`" } ] } @@ -81845,7 +81582,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "string" }, "comment": { - "shortText": "Name of the vector bucket to retrieve" + "shortText": "Name of the vector bucket" } } ], @@ -81864,8 +81601,74 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "object", + "properties": [ + { + "name": "vectorBucket", + "type": { + "type": "object", + "name": "VectorBucket", + "properties": [ + { + "name": "creationTime", + "type": { + "type": "intrinsic", + "name": "number" + }, + "isOptional": true, + "comment": { + "shortText": "Unix timestamp of when the bucket was created" + } + }, + { + "name": "encryptionConfiguration", + "type": { + "type": "object", + "name": "EncryptionConfiguration", + "properties": [ + { + "name": "kmsKeyArn", + "type": { + "type": "intrinsic", + "name": "string" + }, + "isOptional": true, + "comment": { + "shortText": "ARN of the KMS key used for encryption" + } + }, + { + "name": "sseType", + "type": { + "type": "intrinsic", + "name": "string" + }, + "isOptional": true, + "comment": { + "shortText": "Server-side encryption type (e.g., 'KMS')" + } + } + ] + }, + "isOptional": true, + "comment": { + "shortText": "Optional encryption settings" + } + }, + { + "name": "vectorBucketName", + "type": { + "type": "intrinsic", + "name": "string" + }, + "comment": { + "shortText": "Unique name of the vector bucket" + } + } + ] + } + } + ] }, "comment": { "shortText": "Response data of type T" @@ -81914,7 +81717,7 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type.", + "shortText": "Retrieves metadata for a specific vector 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", @@ -81925,7 +81728,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst { data, error } = await supabase\\n .storage\\n .vectors\\n .getBucket('embeddings-prod')\\n\\nconsole.log('Bucket created:', data?.vectorBucket.creationTime)\\n\`\`\`" } ] } @@ -81975,7 +81778,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` ] }, "comment": { - "shortText": "Listing options" + "shortText": "Optional filters (prefix, maxResults, nextToken)" } } ], @@ -81994,8 +81797,42 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "object", + "name": "ListVectorBucketsResponse", + "properties": [ + { + "name": "nextToken", + "type": { + "type": "intrinsic", + "name": "string" + }, + "isOptional": true, + "comment": { + "shortText": "Token for fetching next page (if more results exist)" + } + }, + { + "name": "vectorBuckets", + "type": { + "type": "array", + "elemType": { + "type": "object", + "properties": [ + { + "name": "vectorBucketName", + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + "comment": { + "shortText": "Array of bucket names" + } + } + ] }, "comment": { "shortText": "Response data of type T" @@ -82044,7 +81881,7 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type.", + "shortText": "Lists all vector buckets with optional filtering and pagination\\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", @@ -82055,7 +81892,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst { data, error } = await supabase\\n .storage\\n .vectors\\n .listBuckets({ prefix: 'embeddings-' })\\n\\ndata?.vectorBuckets.forEach(bucket => {\\n console.log(bucket.vectorBucketName)\\n})\\n\`\`\`" } ] } @@ -82070,19 +81907,12 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type.", + "shortText": "Enable throwing errors instead of returning them in the response", "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\`\`\`" - } ] } }, @@ -82129,17 +81959,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` } } }, - "@supabase/storage-js.VectorBucketApi.constructor": { - "name": "@supabase/storage-js.VectorBucketApi.constructor", + "@supabase/storage-js.VectorBucketScope.constructor": { + "name": "@supabase/storage-js.VectorBucketScope.constructor", "params": [ { "name": "url", "type": { "type": "intrinsic", "name": "string" - }, - "comment": { - "shortText": "The base URL for the storage vectors API" } }, { @@ -82154,9 +81981,13 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "type": "intrinsic", "name": "string" } - }, - "comment": { - "shortText": "HTTP headers to include in requests" + } + }, + { + "name": "vectorBucketName", + "type": { + "type": "intrinsic", + "name": "string" } }, { @@ -82203,20 +82034,17 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" } }, - "isOptional": true, - "comment": { - "shortText": "Optional custom fetch implementation" - } + "isOptional": true } ], "ret": { "type": { "type": "nameOnly", - "name": "VectorBucketApi" + "name": "VectorBucketScope" } }, "comment": { - "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.", + "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", @@ -82227,22 +82055,22 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "id": "example-1", "name": "Example 1", - "code": "\`\`\`typescript\\nconst client = new VectorBucketApi(url, headers)\\n\`\`\`" + "code": "\`\`\`typescript\\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\\n\`\`\`" } ] } }, - "@supabase/storage-js.VectorBucketApi.createBucket": { - "name": "@supabase/storage-js.VectorBucketApi.createBucket", + "@supabase/storage-js.VectorBucketScope.createIndex": { + "name": "@supabase/storage-js.VectorBucketScope.createIndex", "params": [ { - "name": "vectorBucketName", + "name": "options", "type": { - "type": "intrinsic", - "name": "string" + "type": "nameOnly", + "name": "Omit" }, "comment": { - "shortText": "Unique name for the vector bucket" + "shortText": "Index configuration (vectorBucketName is automatically set)" } } ], @@ -82261,8 +82089,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "intrinsic", + "name": "undefined" }, "comment": { "shortText": "Response data of type T" @@ -82311,7 +82139,7 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type.", + "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", @@ -82322,22 +82150,22 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst bucket = supabase.storage.vectors.from('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.VectorBucketApi.deleteBucket": { - "name": "@supabase/storage-js.VectorBucketApi.deleteBucket", + "@supabase/storage-js.VectorBucketScope.deleteIndex": { + "name": "@supabase/storage-js.VectorBucketScope.deleteIndex", "params": [ { - "name": "vectorBucketName", + "name": "indexName", "type": { "type": "intrinsic", "name": "string" }, "comment": { - "shortText": "Name of the vector bucket to delete" + "shortText": "Name of the index to delete" } } ], @@ -82356,8 +82184,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "intrinsic", + "name": "undefined" }, "comment": { "shortText": "Response data of type T" @@ -82406,7 +82234,7 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type.", + "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", @@ -82417,22 +82245,22 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\\nawait bucket.deleteIndex('old-index')\\n\`\`\`" } ] } }, - "@supabase/storage-js.VectorBucketApi.getBucket": { - "name": "@supabase/storage-js.VectorBucketApi.getBucket", + "@supabase/storage-js.VectorBucketScope.getIndex": { + "name": "@supabase/storage-js.VectorBucketScope.getIndex", "params": [ { - "name": "vectorBucketName", + "name": "indexName", "type": { "type": "intrinsic", "name": "string" }, "comment": { - "shortText": "Name of the vector bucket to retrieve" + "shortText": "Name of the index to retrieve" } } ], @@ -82451,8 +82279,120 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "object", + "properties": [ + { + "name": "index", + "type": { + "type": "object", + "name": "VectorIndex", + "properties": [ + { + "name": "creationTime", + "type": { + "type": "intrinsic", + "name": "number" + }, + "isOptional": true, + "comment": { + "shortText": "Unix timestamp of when the index was created" + } + }, + { + "name": "dataType", + "type": { + "type": "literal", + "value": "float32" + }, + "comment": { + "shortText": "Data type of vector components (currently only 'float32')" + } + }, + { + "name": "dimension", + "type": { + "type": "intrinsic", + "name": "number" + }, + "comment": { + "shortText": "Dimensionality of vectors (e.g., 384, 768, 1536)" + } + }, + { + "name": "distanceMetric", + "type": { + "type": "union", + "name": "DistanceMetric", + "subTypes": [ + { + "type": "literal", + "value": "cosine" + }, + { + "type": "literal", + "value": "euclidean" + }, + { + "type": "literal", + "value": "dotproduct" + } + ] + }, + "comment": { + "shortText": "Similarity metric used for queries" + } + }, + { + "name": "indexName", + "type": { + "type": "intrinsic", + "name": "string" + }, + "comment": { + "shortText": "Unique name of the index within the bucket" + } + }, + { + "name": "metadataConfiguration", + "type": { + "type": "object", + "name": "MetadataConfiguration", + "properties": [ + { + "name": "nonFilterableMetadataKeys", + "type": { + "type": "array", + "elemType": { + "type": "intrinsic", + "name": "string" + } + }, + "isOptional": true, + "comment": { + "shortText": "Array of metadata keys that cannot be used in filters" + } + } + ] + }, + "isOptional": true, + "comment": { + "shortText": "Configuration for metadata filtering" + } + }, + { + "name": "vectorBucketName", + "type": { + "type": "intrinsic", + "name": "string" + }, + "comment": { + "shortText": "Name of the parent vector bucket" + } + } + ] + } + } + ] }, "comment": { "shortText": "Response data of type T" @@ -82501,7 +82441,7 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type.", + "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", @@ -82512,57 +82452,59 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\\nconst { data } = await bucket.getIndex('documents-openai')\\nconsole.log('Dimension:', data?.index.dimension)\\n\`\`\`" } ] } }, - "@supabase/storage-js.VectorBucketApi.listBuckets": { - "name": "@supabase/storage-js.VectorBucketApi.listBuckets", + "@supabase/storage-js.VectorBucketScope": { + "name": "@supabase/storage-js.VectorBucketScope", + "params": [ + { + "name": "indexName", + "type": { + "type": "intrinsic", + "name": "string" + }, + "comment": { + "shortText": "Name of the index" + } + } + ], + "ret": { + "type": { + "type": "nameOnly", + "name": "VectorIndexScope" + } + }, + "comment": { + "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 = supabase.storage.vectors.from('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.VectorBucketScope.listIndexes": { + "name": "@supabase/storage-js.VectorBucketScope.listIndexes", "params": [ { "name": "options", "type": { - "type": "object", - "name": "ListVectorBucketsOptions", - "properties": [ - { - "name": "maxResults", - "type": { - "type": "intrinsic", - "name": "number" - }, - "isOptional": true, - "comment": { - "shortText": "Maximum number of results to return (default: 100)" - } - }, - { - "name": "nextToken", - "type": { - "type": "intrinsic", - "name": "string" - }, - "isOptional": true, - "comment": { - "shortText": "Token for pagination from previous response" - } - }, - { - "name": "prefix", - "type": { - "type": "intrinsic", - "name": "string" - }, - "isOptional": true, - "comment": { - "shortText": "Filter buckets by name prefix" - } - } - ] + "type": "nameOnly", + "name": "Omit" }, "comment": { - "shortText": "Listing options" + "shortText": "Listing options (vectorBucketName is automatically set)" } } ], @@ -82581,8 +82523,42 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "object", + "name": "ListIndexesResponse", + "properties": [ + { + "name": "indexes", + "type": { + "type": "array", + "elemType": { + "type": "object", + "properties": [ + { + "name": "indexName", + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + "comment": { + "shortText": "Array of index names" + } + }, + { + "name": "nextToken", + "type": { + "type": "intrinsic", + "name": "string" + }, + "isOptional": true, + "comment": { + "shortText": "Token for fetching next page (if more results exist)" + } + } + ] }, "comment": { "shortText": "Response data of type T" @@ -82631,7 +82607,7 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type.", + "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", @@ -82642,13 +82618,13 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\\nconst { data } = await bucket.listIndexes({ prefix: 'documents-' })\\n\`\`\`" } ] } }, - "@supabase/storage-js.VectorBucketApi.throwOnError": { - "name": "@supabase/storage-js.VectorBucketApi.throwOnError", + "@supabase/storage-js.VectorBucketScope.throwOnError": { + "name": "@supabase/storage-js.VectorBucketScope.throwOnError", "params": [], "ret": { "type": { @@ -82657,24 +82633,17 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type.", + "shortText": "Enable throwing errors instead of returning them in the response", "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.VectorBucketScope.constructor": { - "name": "@supabase/storage-js.VectorBucketScope.constructor", + "@supabase/storage-js.VectorIndexScope.constructor": { + "name": "@supabase/storage-js.VectorIndexScope.constructor", "params": [ { "name": "url", @@ -82699,2234 +82668,13 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, { "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "name": "fetch", - "type": { - "type": "function", - "params": [ - { - "name": "input", - "type": { - "type": "union", - "subTypes": [ - { - "type": "nameOnly", - "name": "RequestInfo" - }, - { - "type": "nameOnly", - "name": "URL" - } - ] - } - }, - { - "name": "init", - "type": { - "type": "nameOnly", - "name": "RequestInit" - }, - "isOptional": true - } - ], - "ret": { - "type": { - "type": "promise", - "name": "Promise", - "awaited": { - "type": "nameOnly", - "name": "Response" - } - } - }, - "comment": { - "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - }, - "isOptional": true - } - ], - "ret": { - "type": { - "type": "nameOnly", - "name": "VectorBucketScope" - } - }, - "comment": { - "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.VectorBucketScope.createIndex": { - "name": "@supabase/storage-js.VectorBucketScope.createIndex", - "params": [ - { - "name": "options", - "type": { - "type": "nameOnly", - "name": "Omit" - }, - "comment": { - "shortText": "Index configuration (vectorBucketName is automatically set)" - } - } - ], - "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": "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.VectorBucketScope.deleteIndex": { - "name": "@supabase/storage-js.VectorBucketScope.deleteIndex", - "params": [ - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the index to delete" - } - } - ], - "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": "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.VectorBucketScope.getIndex": { - "name": "@supabase/storage-js.VectorBucketScope.getIndex", - "params": [ - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the index to retrieve" - } - } - ], - "ret": { - "type": { - "type": "promise", - "name": "Promise", - "awaited": { - "type": "union", - "name": "ApiResponse", - "subTypes": [ - { - "type": "object", - "name": "SuccessResponse", - "properties": [ - { - "name": "data", - "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" - }, - "comment": { - "shortText": "Response data of type T" - } - }, - { - "name": "error", - "type": { - "type": "literal", - "value": null - }, - "comment": { - "shortText": "Null on success" - } - } - ] - }, - { - "type": "object", - "name": "ErrorResponse", - "properties": [ - { - "name": "data", - "type": { - "type": "literal", - "value": null - }, - "comment": { - "shortText": "Null on error" - } - }, - { - "name": "error", - "type": { - "type": "nameOnly", - "name": "StorageVectorsError" - }, - "comment": { - "shortText": "StorageVectorsError with details" - } - } - ] - } - ] - } - } - }, - "comment": { - "shortText": "Retrieves metadata for a specific 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.VectorBucketScope": { - "name": "@supabase/storage-js.VectorBucketScope", - "params": [ - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the index" - } - } - ], - "ret": { - "type": { - "type": "nameOnly", - "name": "VectorIndexScope" - } - }, - "comment": { - "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.VectorBucketScope.listIndexes": { - "name": "@supabase/storage-js.VectorBucketScope.listIndexes", - "params": [ - { - "name": "options", - "type": { - "type": "nameOnly", - "name": "Omit" - }, - "comment": { - "shortText": "Listing options (vectorBucketName is automatically set)" - } - } - ], - "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": "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.VectorBucketScope.throwOnError": { - "name": "@supabase/storage-js.VectorBucketScope.throwOnError", - "params": [], - "ret": { - "type": { - "type": "intrinsic", - "name": "this" - } - }, - "comment": { - "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\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.VectorDataApi.constructor": { - "name": "@supabase/storage-js.VectorDataApi.constructor", - "params": [ - { - "name": "url", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Base URL for the Storage Vectors API." - } - }, - { - "name": "headers", - "type": { - "type": "index signature", - "keyType": { - "type": "intrinsic", - "name": "string" - }, - "valueType": { - "type": "intrinsic", - "name": "string" - } - }, - "comment": { - "shortText": "Default headers (for example authentication tokens)." - } - }, - { - "name": "fetch", - "type": { - "type": "function", - "params": [ - { - "name": "input", - "type": { - "type": "union", - "subTypes": [ - { - "type": "nameOnly", - "name": "RequestInfo" - }, - { - "type": "nameOnly", - "name": "URL" - } - ] - } - }, - { - "name": "init", - "type": { - "type": "nameOnly", - "name": "RequestInit" - }, - "isOptional": true - } - ], - "ret": { - "type": { - "type": "promise", - "name": "Promise", - "awaited": { - "type": "nameOnly", - "name": "Response" - } - } - }, - "comment": { - "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - }, - "isOptional": true, - "comment": { - "shortText": "Optional custom \`fetch\` implementation for non-browser runtimes." - } - } - ], - "ret": { - "type": { - "type": "nameOnly", - "name": "VectorDataApi" - } - }, - "comment": { - "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.VectorDataApi.deleteVectors": { - "name": "@supabase/storage-js.VectorDataApi.deleteVectors", - "params": [ - { - "name": "options", - "type": { - "type": "object", - "name": "DeleteVectorsOptions", - "properties": [ - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the index" - } - }, - { - "name": "keys", - "type": { - "type": "array", - "elemType": { - "type": "intrinsic", - "name": "string" - } - }, - "comment": { - "shortText": "Array of vector keys to delete (1-500 items)" - } - }, - { - "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the vector bucket" - } - } - ] - }, - "comment": { - "shortText": "Vector deletion options" - } - } - ], - "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": "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.VectorDataApi.getVectors": { - "name": "@supabase/storage-js.VectorDataApi.getVectors", - "params": [ - { - "name": "options", - "type": { - "type": "object", - "name": "GetVectorsOptions", - "properties": [ - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the index" - } - }, - { - "name": "keys", - "type": { - "type": "array", - "elemType": { - "type": "intrinsic", - "name": "string" - } - }, - "comment": { - "shortText": "Array of vector keys to retrieve" - } - }, - { - "name": "returnData", - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "isOptional": true, - "comment": { - "shortText": "Whether to include vector data in response" - } - }, - { - "name": "returnMetadata", - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "isOptional": true, - "comment": { - "shortText": "Whether to include metadata in response" - } - }, - { - "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the vector bucket" - } - } - ] - }, - "comment": { - "shortText": "Vector retrieval options" - } - } - ], - "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 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.VectorDataApi.listVectors": { - "name": "@supabase/storage-js.VectorDataApi.listVectors", - "params": [ - { - "name": "options", - "type": { - "type": "object", - "name": "ListVectorsOptions", - "properties": [ - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the index" - } - }, - { - "name": "maxResults", - "type": { - "type": "intrinsic", - "name": "number" - }, - "isOptional": true, - "comment": { - "shortText": "Maximum number of results to return (default: 500, max: 1000)" - } - }, - { - "name": "nextToken", - "type": { - "type": "intrinsic", - "name": "string" - }, - "isOptional": true, - "comment": { - "shortText": "Token for pagination from previous response" - } - }, - { - "name": "returnData", - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "isOptional": true, - "comment": { - "shortText": "Whether to include vector data in response" - } - }, - { - "name": "returnMetadata", - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "isOptional": true, - "comment": { - "shortText": "Whether to include metadata in response" - } - }, - { - "name": "segmentCount", - "type": { - "type": "intrinsic", - "name": "number" - }, - "isOptional": true, - "comment": { - "shortText": "Total number of parallel segments (1-16)" - } - }, - { - "name": "segmentIndex", - "type": { - "type": "intrinsic", - "name": "number" - }, - "isOptional": true, - "comment": { - "shortText": "Zero-based index of this segment (0 to segmentCount-1)" - } - }, - { - "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the vector bucket" - } - } - ] - }, - "comment": { - "shortText": "Vector listing options" - } - } - ], - "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": "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.VectorDataApi.putVectors": { - "name": "@supabase/storage-js.VectorDataApi.putVectors", - "params": [ - { - "name": "options", - "type": { - "type": "object", - "name": "PutVectorsOptions", - "properties": [ - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the index" - } - }, - { - "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the vector bucket" - } - }, - { - "name": "vectors", - "type": { - "type": "array", - "elemType": { - "type": "object", - "name": "VectorObject", - "properties": [ - { - "name": "data", - "type": { - "type": "object", - "name": "VectorData", - "properties": [ - { - "name": "float32", - "type": { - "type": "array", - "elemType": { - "type": "intrinsic", - "name": "number" - } - }, - "comment": { - "shortText": "Array of 32-bit floating point numbers" - } - } - ] - }, - "comment": { - "shortText": "Vector embedding data" - } - }, - { - "name": "key", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Unique identifier for the vector" - } - }, - { - "name": "metadata", - "type": { - "type": "record", - "name": "VectorMetadata", - "keyType": { - "type": "intrinsic", - "name": "string" - }, - "valueType": { - "type": "intrinsic", - "name": "any" - } - }, - "isOptional": true, - "comment": { - "shortText": "Optional arbitrary metadata" - } - } - ] - } - }, - "comment": { - "shortText": "Array of vectors to insert/upsert (1-500 items)" - } - } - ] - }, - "comment": { - "shortText": "Vector insertion options" - } - } - ], - "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": "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.VectorDataApi.queryVectors": { - "name": "@supabase/storage-js.VectorDataApi.queryVectors", - "params": [ - { - "name": "options", - "type": { - "type": "object", - "name": "QueryVectorsOptions", - "properties": [ - { - "name": "filter", - "type": { - "type": "record", - "name": "VectorFilter", - "keyType": { - "type": "intrinsic", - "name": "string" - }, - "valueType": { - "type": "intrinsic", - "name": "any" - } - }, - "isOptional": true, - "comment": { - "shortText": "Optional JSON filter for metadata" - } - }, - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the index" - } - }, - { - "name": "queryVector", - "type": { - "type": "object", - "name": "VectorData", - "properties": [ - { - "name": "float32", - "type": { - "type": "array", - "elemType": { - "type": "intrinsic", - "name": "number" - } - }, - "comment": { - "shortText": "Array of 32-bit floating point numbers" - } - } - ] - }, - "comment": { - "shortText": "Query vector to find similar vectors" - } - }, - { - "name": "returnDistance", - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "isOptional": true, - "comment": { - "shortText": "Whether to include distance scores" - } - }, - { - "name": "returnMetadata", - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "isOptional": true, - "comment": { - "shortText": "Whether to include metadata in results" - } - }, - { - "name": "topK", - "type": { - "type": "intrinsic", - "name": "number" - }, - "isOptional": true, - "comment": { - "shortText": "Number of nearest neighbors to return (default: 10)" - } - }, - { - "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the vector bucket" - } - } - ] - }, - "comment": { - "shortText": "Query options" - } - } - ], - "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": "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.VectorDataApi.throwOnError": { - "name": "@supabase/storage-js.VectorDataApi.throwOnError", - "params": [], - "ret": { - "type": { - "type": "intrinsic", - "name": "this" - } - }, - "comment": { - "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\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.VectorIndexApi.constructor": { - "name": "@supabase/storage-js.VectorIndexApi.constructor", - "params": [ - { - "name": "url", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Base URL for the Storage Vectors API." - } - }, - { - "name": "headers", - "type": { - "type": "index signature", - "keyType": { - "type": "intrinsic", - "name": "string" - }, - "valueType": { - "type": "intrinsic", - "name": "string" - } - }, - "comment": { - "shortText": "Default headers sent with each request." - } - }, - { - "name": "fetch", - "type": { - "type": "function", - "params": [ - { - "name": "input", - "type": { - "type": "union", - "subTypes": [ - { - "type": "nameOnly", - "name": "RequestInfo" - }, - { - "type": "nameOnly", - "name": "URL" - } - ] - } - }, - { - "name": "init", - "type": { - "type": "nameOnly", - "name": "RequestInit" - }, - "isOptional": true - } - ], - "ret": { - "type": { - "type": "promise", - "name": "Promise", - "awaited": { - "type": "nameOnly", - "name": "Response" - } - } - }, - "comment": { - "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - }, - "isOptional": true, - "comment": { - "shortText": "Optional custom \`fetch\` implementation for non-browser runtimes." - } - } - ], - "ret": { - "type": { - "type": "nameOnly", - "name": "VectorIndexApi" - } - }, - "comment": { - "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.VectorIndexApi.createIndex": { - "name": "@supabase/storage-js.VectorIndexApi.createIndex", - "params": [ - { - "name": "options", - "type": { - "type": "object", - "name": "CreateIndexOptions", - "properties": [ - { - "name": "dataType", - "type": { - "type": "literal", - "value": "float32" - }, - "comment": { - "shortText": "", - "tags": [ - { - "tag": "alpha", - "text": "" - } - ] - } - }, - { - "name": "dimension", - "type": { - "type": "intrinsic", - "name": "number" - }, - "comment": { - "shortText": "", - "tags": [ - { - "tag": "alpha", - "text": "" - } - ] - } - }, - { - "name": "distanceMetric", - "type": { - "type": "union", - "name": "DistanceMetric", - "subTypes": [ - { - "type": "literal", - "value": "cosine" - }, - { - "type": "literal", - "value": "euclidean" - }, - { - "type": "literal", - "value": "dotproduct" - } - ] - }, - "comment": { - "shortText": "", - "tags": [ - { - "tag": "alpha", - "text": "" - } - ] - } - }, - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "", - "tags": [ - { - "tag": "alpha", - "text": "" - } - ] - } - }, - { - "name": "metadataConfiguration", - "type": { - "type": "object", - "name": "MetadataConfiguration", - "properties": [ - { - "name": "nonFilterableMetadataKeys", - "type": { - "type": "array", - "elemType": { - "type": "intrinsic", - "name": "string" - } - }, - "isOptional": true, - "comment": { - "shortText": "Array of metadata keys that cannot be used in filters" - } - } - ] - }, - "isOptional": true, - "comment": { - "shortText": "", - "tags": [ - { - "tag": "alpha", - "text": "" - } - ] - } - }, - { - "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "", - "tags": [ - { - "tag": "alpha", - "text": "" - } - ] - } - } - ] - }, - "comment": { - "shortText": "Index configuration" - } - } - ], - "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": "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.VectorIndexApi.deleteIndex": { - "name": "@supabase/storage-js.VectorIndexApi.deleteIndex", - "params": [ - { - "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the parent vector bucket" - } - }, - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the index to delete" - } - } - ], - "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": "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.VectorIndexApi.getIndex": { - "name": "@supabase/storage-js.VectorIndexApi.getIndex", - "params": [ - { - "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the parent vector bucket" - } - }, - { - "name": "indexName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the index to retrieve" - } - } - ], - "ret": { - "type": { - "type": "promise", - "name": "Promise", - "awaited": { - "type": "union", - "name": "ApiResponse", - "subTypes": [ - { - "type": "object", - "name": "SuccessResponse", - "properties": [ - { - "name": "data", - "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" - }, - "comment": { - "shortText": "Response data of type T" - } - }, - { - "name": "error", - "type": { - "type": "literal", - "value": null - }, - "comment": { - "shortText": "Null on success" - } - } - ] - }, - { - "type": "object", - "name": "ErrorResponse", - "properties": [ - { - "name": "data", - "type": { - "type": "literal", - "value": null - }, - "comment": { - "shortText": "Null on error" - } - }, - { - "name": "error", - "type": { - "type": "nameOnly", - "name": "StorageVectorsError" - }, - "comment": { - "shortText": "StorageVectorsError with details" - } - } - ] - } - ] - } - } - }, - "comment": { - "shortText": "Retrieves metadata for a specific vector index\\nReturns index configuration including dimension, distance metric, and metadata settings\\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.VectorIndexApi.listIndexes": { - "name": "@supabase/storage-js.VectorIndexApi.listIndexes", - "params": [ - { - "name": "options", - "type": { - "type": "object", - "name": "ListIndexesOptions", - "properties": [ - { - "name": "maxResults", - "type": { - "type": "intrinsic", - "name": "number" - }, - "isOptional": true, - "comment": { - "shortText": "Maximum number of results to return (default: 100)" - } - }, - { - "name": "nextToken", - "type": { - "type": "intrinsic", - "name": "string" - }, - "isOptional": true, - "comment": { - "shortText": "Token for pagination from previous response" - } - }, - { - "name": "prefix", - "type": { - "type": "intrinsic", - "name": "string" - }, - "isOptional": true, - "comment": { - "shortText": "Filter indexes by name prefix" - } - }, - { - "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - }, - "comment": { - "shortText": "Name of the parent vector bucket" - } - } - ] - }, - "comment": { - "shortText": "Listing options" - } - } - ], - "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": "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.VectorIndexApi.throwOnError": { - "name": "@supabase/storage-js.VectorIndexApi.throwOnError", - "params": [], - "ret": { - "type": { - "type": "intrinsic", - "name": "this" - } - }, - "comment": { - "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\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.VectorIndexScope.constructor": { - "name": "@supabase/storage-js.VectorIndexScope.constructor", - "params": [ - { - "name": "url", - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "name": "headers", - "type": { - "type": "index signature", - "keyType": { - "type": "intrinsic", - "name": "string" - }, - "valueType": { - "type": "intrinsic", - "name": "string" - } - } - }, - { - "name": "vectorBucketName", - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "name": "indexName", + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "name": "indexName", "type": { "type": "intrinsic", "name": "string" @@ -84997,7 +82745,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "id": "example-1", "name": "Example 1", - "code": "\`\`\`typescript\\nconst index = client.bucket('embeddings-prod').index('documents-openai')\\n\`\`\`" + "code": "\`\`\`typescript\\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\\n\`\`\`" } ] } @@ -85031,8 +82779,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "intrinsic", + "name": "undefined" }, "comment": { "shortText": "Response data of type T" @@ -85092,7 +82840,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\\nawait index.deleteVectors({\\n keys: ['doc-1', 'doc-2', 'doc-3']\\n})\\n\`\`\`" } ] } @@ -85126,8 +82874,91 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "object", + "name": "GetVectorsResponse", + "properties": [ + { + "name": "vectors", + "type": { + "type": "array", + "elemType": { + "type": "object", + "name": "VectorMatch", + "properties": [ + { + "name": "data", + "type": { + "type": "object", + "name": "VectorData", + "properties": [ + { + "name": "float32", + "type": { + "type": "array", + "elemType": { + "type": "intrinsic", + "name": "number" + } + }, + "comment": { + "shortText": "Array of 32-bit floating point numbers" + } + } + ] + }, + "isOptional": true, + "comment": { + "shortText": "Vector embedding data (if requested)" + } + }, + { + "name": "distance", + "type": { + "type": "intrinsic", + "name": "number" + }, + "isOptional": true, + "comment": { + "shortText": "Similarity distance from query vector (if requested)" + } + }, + { + "name": "key", + "type": { + "type": "intrinsic", + "name": "string" + }, + "comment": { + "shortText": "Unique identifier for the vector" + } + }, + { + "name": "metadata", + "type": { + "type": "record", + "name": "VectorMetadata", + "keyType": { + "type": "intrinsic", + "name": "string" + }, + "valueType": { + "type": "intrinsic", + "name": "any" + } + }, + "isOptional": true, + "comment": { + "shortText": "Arbitrary metadata (if requested)" + } + } + ] + } + }, + "comment": { + "shortText": "Array of retrieved vector objects" + } + } + ] }, "comment": { "shortText": "Response data of type T" @@ -85187,7 +83018,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\\nconst { data } = await index.getVectors({\\n keys: ['doc-1', 'doc-2'],\\n returnMetadata: true\\n})\\n\`\`\`" } ] } @@ -85221,8 +83052,102 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "object", + "name": "ListVectorsResponse", + "properties": [ + { + "name": "nextToken", + "type": { + "type": "intrinsic", + "name": "string" + }, + "isOptional": true, + "comment": { + "shortText": "Token for fetching next page (if more results exist)" + } + }, + { + "name": "vectors", + "type": { + "type": "array", + "elemType": { + "type": "object", + "name": "VectorMatch", + "properties": [ + { + "name": "data", + "type": { + "type": "object", + "name": "VectorData", + "properties": [ + { + "name": "float32", + "type": { + "type": "array", + "elemType": { + "type": "intrinsic", + "name": "number" + } + }, + "comment": { + "shortText": "Array of 32-bit floating point numbers" + } + } + ] + }, + "isOptional": true, + "comment": { + "shortText": "Vector embedding data (if requested)" + } + }, + { + "name": "distance", + "type": { + "type": "intrinsic", + "name": "number" + }, + "isOptional": true, + "comment": { + "shortText": "Similarity distance from query vector (if requested)" + } + }, + { + "name": "key", + "type": { + "type": "intrinsic", + "name": "string" + }, + "comment": { + "shortText": "Unique identifier for the vector" + } + }, + { + "name": "metadata", + "type": { + "type": "record", + "name": "VectorMetadata", + "keyType": { + "type": "intrinsic", + "name": "string" + }, + "valueType": { + "type": "intrinsic", + "name": "any" + } + }, + "isOptional": true, + "comment": { + "shortText": "Arbitrary metadata (if requested)" + } + } + ] + } + }, + "comment": { + "shortText": "Array of vector objects" + } + } + ] }, "comment": { "shortText": "Response data of type T" @@ -85282,7 +83207,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\\nconst { data } = await index.listVectors({\\n maxResults: 500,\\n returnMetadata: true\\n})\\n\`\`\`" } ] } @@ -85316,8 +83241,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "intrinsic", + "name": "undefined" }, "comment": { "shortText": "Response data of type T" @@ -85377,7 +83302,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst index = supabase.storage.vectors.from('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\`\`\`" } ] } @@ -85411,8 +83336,91 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "name": "data", "type": { - "type": "nameOnly", - "name": "@supabase/storage-js.SuccessResponse.T" + "type": "object", + "name": "QueryVectorsResponse", + "properties": [ + { + "name": "matches", + "type": { + "type": "array", + "elemType": { + "type": "object", + "name": "VectorMatch", + "properties": [ + { + "name": "data", + "type": { + "type": "object", + "name": "VectorData", + "properties": [ + { + "name": "float32", + "type": { + "type": "array", + "elemType": { + "type": "intrinsic", + "name": "number" + } + }, + "comment": { + "shortText": "Array of 32-bit floating point numbers" + } + } + ] + }, + "isOptional": true, + "comment": { + "shortText": "Vector embedding data (if requested)" + } + }, + { + "name": "distance", + "type": { + "type": "intrinsic", + "name": "number" + }, + "isOptional": true, + "comment": { + "shortText": "Similarity distance from query vector (if requested)" + } + }, + { + "name": "key", + "type": { + "type": "intrinsic", + "name": "string" + }, + "comment": { + "shortText": "Unique identifier for the vector" + } + }, + { + "name": "metadata", + "type": { + "type": "record", + "name": "VectorMetadata", + "keyType": { + "type": "intrinsic", + "name": "string" + }, + "valueType": { + "type": "intrinsic", + "name": "any" + } + }, + "isOptional": true, + "comment": { + "shortText": "Arbitrary metadata (if requested)" + } + } + ] + } + }, + "comment": { + "shortText": "Array of similar vectors ordered by distance" + } + } + ] }, "comment": { "shortText": "Response data of type T" @@ -85472,7 +83480,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` { "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\`\`\`" + "code": "\`\`\`typescript\\nconst index = supabase.storage.vectors.from('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\`\`\`" } ] } @@ -85487,19 +83495,12 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type.", + "shortText": "Enable throwing errors instead of returning them in the response", "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\`\`\`" - } ] } }, @@ -85613,7 +83614,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Blob" } }, { @@ -85703,7 +83704,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Blob" } }, { @@ -85770,7 +83771,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "Blob" } }, { @@ -85983,6 +83984,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "comment": { "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.", + "tags": [ + { + "tag": "alpha", + "text": "" + } + ], "examples": [ { "id": "example-1", @@ -86109,12 +84116,18 @@ 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\\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": "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\`\`\`" + "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"name\\": \\"analytics-data\\",\\n \\"type\\": \\"ANALYTICS\\",\\n \\"format\\": \\"iceberg\\",\\n \\"created_at\\": \\"2024-05-22T22:26:05.100Z\\",\\n \\"updated_at\\": \\"2024-05-22T22:26:05.100Z\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`" } ] } @@ -86192,6 +84205,12 @@ 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\\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": "delete-analytics-bucket", @@ -86248,10 +84267,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "type": { "type": "union", "subTypes": [ - { - "type": "literal", - "value": "id" - }, { "type": "literal", "value": "name" @@ -86268,7 +84283,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` }, "isOptional": true, "comment": { - "shortText": "Column to sort by ('id', 'name', 'created_at', 'updated_at')" + "shortText": "Column to sort by ('name', 'created_at', 'updated_at')" } }, { @@ -86405,12 +84420,18 @@ 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'\\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": "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\`\`\`" + "response": "\`\`\`json\\n{\\n \\"data\\": [\\n {\\n \\"name\\": \\"analytics-data\\",\\n \\"type\\": \\"ANALYTICS\\",\\n \\"format\\": \\"iceberg\\",\\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\`\`\`" } ] } @@ -86425,7 +84446,13 @@ 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**Public alpha:** This API is part of a public alpha release and may not be available to your account type." + "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": "" + } + ] } }, "@supabase/storage-js.packages/StorageBucketApi.default.constructor": { @@ -90181,7 +88208,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = ` "name": "data", "type": { "type": "nameOnly", - "name": "T" + "name": "ReadableStream" } }, { diff --git a/apps/docs/public/img/guides/auth-figma/figma_app_credentials.png b/apps/docs/public/img/guides/auth-figma/figma_app_credentials.png old mode 100755 new mode 100644 index e4d582ab9fb30..adb808acd82ed Binary files a/apps/docs/public/img/guides/auth-figma/figma_app_credentials.png and b/apps/docs/public/img/guides/auth-figma/figma_app_credentials.png differ diff --git a/apps/docs/public/img/guides/auth-figma/figma_app_redirect_uri.png b/apps/docs/public/img/guides/auth-figma/figma_app_redirect_uri.png new file mode 100644 index 0000000000000..d9e2d06123478 Binary files /dev/null and b/apps/docs/public/img/guides/auth-figma/figma_app_redirect_uri.png differ diff --git a/apps/docs/public/img/guides/auth-figma/figma_app_scopes.png b/apps/docs/public/img/guides/auth-figma/figma_app_scopes.png new file mode 100644 index 0000000000000..18ffc112c82ac Binary files /dev/null and b/apps/docs/public/img/guides/auth-figma/figma_app_scopes.png differ diff --git a/apps/docs/public/img/guides/auth-figma/figma_create_app.png b/apps/docs/public/img/guides/auth-figma/figma_create_app.png deleted file mode 100755 index 7caeb2c0057dc..0000000000000 Binary files a/apps/docs/public/img/guides/auth-figma/figma_create_app.png and /dev/null differ diff --git a/apps/docs/public/img/guides/auth-figma/figma_developers_page.png b/apps/docs/public/img/guides/auth-figma/figma_developers_page.png deleted file mode 100755 index 8ceee422d79bd..0000000000000 Binary files a/apps/docs/public/img/guides/auth-figma/figma_developers_page.png and /dev/null differ diff --git a/apps/docs/spec/api_v1_openapi.json b/apps/docs/spec/api_v1_openapi.json index e4494c810544c..91d25bdad384a 100644 --- a/apps/docs/spec/api_v1_openapi.json +++ b/apps/docs/spec/api_v1_openapi.json @@ -1976,6 +1976,43 @@ "tags": ["Projects"], "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }], "x-oauth-scope": "projects:write" + }, + "patch": { + "operationId": "v1-update-a-project", + "parameters": [ + { + "name": "ref", + "required": true, + "in": "path", + "description": "Project ref", + "schema": { "minLength": 20, "maxLength": 20, "pattern": "^[a-z]+$", "type": "string" } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { "schema": { "$ref": "#/components/schemas/V1UpdateProjectBody" } } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { "$ref": "#/components/schemas/V1ProjectRefResponse" } + } + } + }, + "401": { "description": "Unauthorized" }, + "403": { "description": "Forbidden action" }, + "429": { "description": "Rate limit exceeded" }, + "500": { "description": "Failed to update project" } + }, + "security": [{ "bearer": [] }], + "summary": "Updates the given project", + "tags": ["Projects"], + "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }], + "x-oauth-scope": "projects:write" } }, "/v1/projects/{ref}/secrets": { @@ -3181,6 +3218,65 @@ "x-oauth-scope": "auth:write" } }, + "/v1/projects/{ref}/config/realtime": { + "get": { + "operationId": "v1-get-realtime-config", + "parameters": [ + { + "name": "ref", + "required": true, + "in": "path", + "description": "Project ref", + "schema": { "minLength": 20, "maxLength": 20, "pattern": "^[a-z]+$", "type": "string" } + } + ], + "responses": { + "200": { + "description": "Gets project's realtime configuration", + "content": { + "application/json": { + "schema": { "$ref": "#/components/schemas/RealtimeConfigResponse" } + } + } + }, + "401": { "description": "Unauthorized" }, + "403": { "description": "Forbidden action" }, + "429": { "description": "Rate limit exceeded" } + }, + "security": [{ "bearer": [] }], + "summary": "Gets realtime configuration", + "tags": ["Realtime Config"] + }, + "patch": { + "operationId": "v1-update-realtime-config", + "parameters": [ + { + "name": "ref", + "required": true, + "in": "path", + "description": "Project ref", + "schema": { "minLength": 20, "maxLength": 20, "pattern": "^[a-z]+$", "type": "string" } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { "$ref": "#/components/schemas/UpdateRealtimeConfigBody" } + } + } + }, + "responses": { + "204": { "description": "" }, + "401": { "description": "Unauthorized" }, + "403": { "description": "Forbidden action" }, + "429": { "description": "Rate limit exceeded" } + }, + "security": [{ "bearer": [] }], + "summary": "Updates realtime configuration", + "tags": ["Realtime Config"] + } + }, "/v1/projects/{ref}/config/auth/third-party-auth": { "post": { "operationId": "v1-create-project-tpa-integration", @@ -4192,6 +4288,39 @@ "x-oauth-scope": "database:write" } }, + "/v1/projects/{ref}/database/query/read-only": { + "post": { + "description": "All entity references must be schema qualified.", + "operationId": "v1-read-only-query", + "parameters": [ + { + "name": "ref", + "required": true, + "in": "path", + "description": "Project ref", + "schema": { "minLength": 20, "maxLength": 20, "pattern": "^[a-z]+$", "type": "string" } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { "schema": { "$ref": "#/components/schemas/V1ReadOnlyQueryBody" } } + } + }, + "responses": { + "201": { "description": "" }, + "401": { "description": "Unauthorized" }, + "403": { "description": "Forbidden action" }, + "429": { "description": "Rate limit exceeded" }, + "500": { "description": "Failed to run read-only sql query" } + }, + "security": [{ "bearer": [] }], + "summary": "[Beta] Run a sql query as supabase_read_only_user", + "tags": ["Database"], + "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }], + "x-oauth-scope": "database:read" + } + }, "/v1/projects/{ref}/database/webhooks/enable": { "post": { "operationId": "v1-enable-database-webhook", @@ -4252,6 +4381,47 @@ "x-oauth-scope": "projects:read" } }, + "/v1/projects/{ref}/database/password": { + "patch": { + "operationId": "v1-update-database-password", + "parameters": [ + { + "name": "ref", + "required": true, + "in": "path", + "description": "Project ref", + "schema": { "minLength": 20, "maxLength": 20, "pattern": "^[a-z]+$", "type": "string" } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { "$ref": "#/components/schemas/V1UpdatePasswordBody" } + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { "$ref": "#/components/schemas/V1UpdatePasswordResponse" } + } + } + }, + "401": { "description": "Unauthorized" }, + "403": { "description": "Forbidden action" }, + "429": { "description": "Rate limit exceeded" }, + "500": { "description": "Failed to update database password" } + }, + "security": [{ "bearer": [] }], + "summary": "Updates the database password", + "tags": ["Database"], + "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }], + "x-oauth-scope": "database:write" + } + }, "/v1/projects/{ref}/database/jit": { "get": { "description": "Mappings of roles a user can assume in the project database", @@ -6772,6 +6942,11 @@ }, "required": ["id", "ref", "name"] }, + "V1UpdateProjectBody": { + "type": "object", + "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 256 } }, + "required": ["name"] + }, "SecretResponse": { "type": "object", "properties": { @@ -7231,8 +7406,22 @@ }, "icebergCatalog": { "type": "object", - "properties": { "enabled": { "type": "boolean" } }, - "required": ["enabled"] + "properties": { + "enabled": { "type": "boolean" }, + "maxNamespaces": { "type": "integer", "minimum": 0 }, + "maxTables": { "type": "integer", "minimum": 0 }, + "maxCatalogs": { "type": "integer", "minimum": 0 } + }, + "required": ["enabled", "maxNamespaces", "maxTables", "maxCatalogs"] + }, + "vectorBuckets": { + "type": "object", + "properties": { + "enabled": { "type": "boolean" }, + "maxBuckets": { "type": "integer", "minimum": 0 }, + "maxIndexes": { "type": "integer", "minimum": 0 } + }, + "required": ["enabled", "maxBuckets", "maxIndexes"] } }, "required": ["imageTransformation", "s3Protocol"] @@ -7286,8 +7475,22 @@ }, "icebergCatalog": { "type": "object", - "properties": { "enabled": { "type": "boolean" } }, - "required": ["enabled"] + "properties": { + "enabled": { "type": "boolean" }, + "maxNamespaces": { "type": "integer", "minimum": 0 }, + "maxTables": { "type": "integer", "minimum": 0 }, + "maxCatalogs": { "type": "integer", "minimum": 0 } + }, + "required": ["enabled", "maxNamespaces", "maxTables", "maxCatalogs"] + }, + "vectorBuckets": { + "type": "object", + "properties": { + "enabled": { "type": "boolean" }, + "maxBuckets": { "type": "integer", "minimum": 0 }, + "maxIndexes": { "type": "integer", "minimum": 0 } + }, + "required": ["enabled", "maxBuckets", "maxIndexes"] } }, "required": ["imageTransformation", "s3Protocol"] @@ -7460,6 +7663,11 @@ "properties": { "api_max_request_duration": { "type": "integer", "nullable": true }, "db_max_pool_size": { "type": "integer", "nullable": true }, + "db_max_pool_size_unit": { + "type": "string", + "enum": ["connections", "percent"], + "nullable": true + }, "disable_signup": { "type": "boolean", "nullable": true }, "external_anonymous_users_enabled": { "type": "boolean", "nullable": true }, "external_apple_additional_client_ids": { "type": "string", "nullable": true }, @@ -7737,6 +7945,7 @@ "required": [ "api_max_request_duration", "db_max_pool_size", + "db_max_pool_size_unit", "disable_signup", "external_anonymous_users_enabled", "external_apple_additional_client_ids", @@ -8296,6 +8505,11 @@ "external_zoom_email_optional": { "type": "boolean", "nullable": true }, "external_zoom_secret": { "type": "string", "nullable": true }, "db_max_pool_size": { "type": "integer", "nullable": true }, + "db_max_pool_size_unit": { + "type": "string", + "enum": ["connections", "percent"], + "nullable": true + }, "api_max_request_duration": { "type": "integer", "nullable": true }, "mfa_totp_enroll_enabled": { "type": "boolean", "nullable": true }, "mfa_totp_verify_enabled": { "type": "boolean", "nullable": true }, @@ -8318,7 +8532,150 @@ "mfa_phone_template": { "type": "string", "nullable": true }, "nimbus_oauth_client_id": { "type": "string", "nullable": true }, "nimbus_oauth_client_secret": { "type": "string", "nullable": true } - } + }, + "required": ["db_max_pool_size_unit"] + }, + "RealtimeConfigResponse": { + "type": "object", + "properties": { + "private_only": { + "type": "boolean", + "nullable": true, + "description": "Whether to only allow private channels" + }, + "connection_pool": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "nullable": true, + "description": "Sets connection pool size for Realtime Authorization" + }, + "max_concurrent_users": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "nullable": true, + "description": "Sets maximum number of concurrent users rate limit" + }, + "max_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "nullable": true, + "description": "Sets maximum number of events per second rate per channel limit" + }, + "max_bytes_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 10000000, + "nullable": true, + "description": "Sets maximum number of bytes per second rate per channel limit" + }, + "max_channels_per_client": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "nullable": true, + "description": "Sets maximum number of channels per client rate limit" + }, + "max_joins_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "nullable": true, + "description": "Sets maximum number of joins per second rate limit" + }, + "max_presence_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "nullable": true, + "description": "Sets maximum number of presence events per second rate limit" + }, + "max_payload_size_in_kb": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "nullable": true, + "description": "Sets maximum number of payload size in KB rate limit" + }, + "suspend": { + "type": "boolean", + "nullable": true, + "description": "Whether to suspend realtime" + } + }, + "required": [ + "private_only", + "connection_pool", + "max_concurrent_users", + "max_events_per_second", + "max_bytes_per_second", + "max_channels_per_client", + "max_joins_per_second", + "max_presence_events_per_second", + "max_payload_size_in_kb", + "suspend" + ] + }, + "UpdateRealtimeConfigBody": { + "type": "object", + "properties": { + "private_only": { + "type": "boolean", + "description": "Whether to only allow private channels" + }, + "connection_pool": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "description": "Sets connection pool size for Realtime Authorization" + }, + "max_concurrent_users": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "description": "Sets maximum number of concurrent users rate limit" + }, + "max_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "description": "Sets maximum number of events per second rate per channel limit" + }, + "max_bytes_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 10000000, + "description": "Sets maximum number of bytes per second rate per channel limit" + }, + "max_channels_per_client": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "description": "Sets maximum number of channels per client rate limit" + }, + "max_joins_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "description": "Sets maximum number of joins per second rate limit" + }, + "max_presence_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "description": "Sets maximum number of presence events per second rate limit" + }, + "max_payload_size_in_kb": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "description": "Sets maximum number of payload size in KB rate limit" + }, + "suspend": { "type": "boolean", "description": "Whether to suspend realtime" } + }, + "additionalProperties": false }, "CreateThirdPartyAuthBody": { "type": "object", @@ -8875,6 +9232,14 @@ }, "required": ["query"] }, + "V1ReadOnlyQueryBody": { + "type": "object", + "properties": { + "query": { "type": "string", "minLength": 1 }, + "parameters": { "type": "array", "items": {} } + }, + "required": ["query"] + }, "GetProjectDbMetadataResponse": { "type": "object", "properties": { @@ -8901,6 +9266,16 @@ }, "required": ["databases"] }, + "V1UpdatePasswordBody": { + "type": "object", + "properties": { "password": { "type": "string", "minLength": 4 } }, + "required": ["password"] + }, + "V1UpdatePasswordResponse": { + "type": "object", + "properties": { "message": { "type": "string" } }, + "required": ["message"] + }, "JitAccessResponse": { "type": "object", "properties": { diff --git a/apps/docs/spec/cli_v1_commands.yaml b/apps/docs/spec/cli_v1_commands.yaml index 97ad705de9d16..6a1d18379c1f8 100644 --- a/apps/docs/spec/cli_v1_commands.yaml +++ b/apps/docs/spec/cli_v1_commands.yaml @@ -78,7 +78,7 @@ flags: name: --workdir description: path to a Supabase project directory default_value: '' - - id: "yes" + - id: 'yes' name: --yes description: answer yes to all prompts default_value: 'false' diff --git a/apps/docs/spec/common-api-sections.json b/apps/docs/spec/common-api-sections.json index e4714fb90c05c..8a2ce0f24ca7e 100644 --- a/apps/docs/spec/common-api-sections.json +++ b/apps/docs/spec/common-api-sections.json @@ -328,6 +328,12 @@ "slug": "v1-patch-a-migration", "type": "operation" }, + { + "id": "v1-read-only-query", + "title": "Read only query", + "slug": "v1-read-only-query", + "type": "operation" + }, { "id": "v1-remove-a-read-replica", "title": "Remove a read replica", @@ -358,6 +364,12 @@ "slug": "v1-setup-a-read-replica", "type": "operation" }, + { + "id": "v1-update-database-password", + "title": "Update database password", + "slug": "v1-update-database-password", + "type": "operation" + }, { "id": "v1-update-jit-access", "title": "Update jit access", @@ -778,6 +790,12 @@ "slug": "v1-restore-a-project", "type": "operation" }, + { + "id": "v1-update-a-project", + "title": "Update a project", + "slug": "v1-update-a-project", + "type": "operation" + }, { "id": "v1-update-network-restrictions", "title": "Update network restrictions", @@ -792,6 +810,24 @@ } ] }, + { + "type": "category", + "title": "Realtime Config", + "items": [ + { + "id": "v1-get-realtime-config", + "title": "Get realtime config", + "slug": "v1-get-realtime-config", + "type": "operation" + }, + { + "id": "v1-update-realtime-config", + "title": "Update realtime config", + "slug": "v1-update-realtime-config", + "type": "operation" + } + ] + }, { "type": "category", "title": "Rest", diff --git a/apps/docs/spec/common-client-libs-sections.json b/apps/docs/spec/common-client-libs-sections.json index 8fa1069307b01..39bba4f304981 100644 --- a/apps/docs/spec/common-client-libs-sections.json +++ b/apps/docs/spec/common-client-libs-sections.json @@ -880,13 +880,6 @@ "type": "category", "title": "Storage", "items": [ - { - "id": "storageclient-constructor", - "title": "Create a storage client", - "slug": "storageclient-constructor", - "type": "function", - "product": "storage" - }, { "id": "file-buckets", "isFunc": false, @@ -1027,6 +1020,34 @@ "slug": "storage-from-list", "product": "storage", "type": "function" + }, + { + "id": "storagefile-exists", + "title": "Check if file exists", + "slug": "storage-from-exists", + "type": "function", + "product": "storage" + }, + { + "id": "storagefile-info", + "title": "Get file metadata", + "slug": "storage-from-info", + "type": "function", + "product": "storage" + }, + { + "id": "storagefile-list-v2", + "title": "List files (v2)", + "slug": "storage-from-listv2", + "type": "function", + "product": "storage" + }, + { + "id": "storagefile-to-base64", + "title": "Convert file to base64", + "slug": "storage-from-tobase64", + "type": "function", + "product": "storage" } ] }, @@ -1039,23 +1060,23 @@ "type": "function", "items": [ { - "id": "storageanalyticsclient-createbucket", + "id": "storageanalytics-createbucket", "title": "Create a new analytics bucket", - "slug": "storageanalyticsclient-createbucket", + "slug": "storageanalytics-createbucket", "type": "function", "product": "storage" }, { - "id": "storageanalyticsclient-listbuckets", + "id": "storageanalytics-listbuckets", "title": "List analytics buckets", - "slug": "storageanalyticsclient-listbuckets", + "slug": "storageanalytics-listbuckets", "type": "function", "product": "storage" }, { - "id": "storageanalyticsclient-deletebucket", + "id": "storageanalytics-deletebucket", "title": "Delete an analytics bucket", - "slug": "storageanalyticsclient-deletebucket", + "slug": "storageanalytics-deletebucket", "type": "function", "product": "storage" } @@ -1070,249 +1091,109 @@ "type": "function", "items": [ { - "id": "storagevectorsclient-constructor", - "title": "Create a vectors client", - "slug": "storagevectorsclient-constructor", + "id": "storagevectors-from", + "title": "Access a vector bucket", + "slug": "storagevectors-from", "type": "function", "product": "storage" }, { - "id": "storagevectorsclient-from", - "title": "Access a vector bucket", - "slug": "storagevectorsclient-from", + "id": "storagevectors-create-bucket", + "title": "Create a vector bucket", + "slug": "storagevectors-createbucket", "type": "function", "product": "storage" }, { - "id": "vectorbucketapi-constructor", - "title": "Create a vector bucket API instance", - "slug": "vectorbucketapi-constructor", + "id": "storagevectors-delete-bucket", + "title": "Delete a vector bucket", + "slug": "storagevectors-deletebucket", "type": "function", "product": "storage" }, { - "id": "vectorbucketapi-createbucket", - "title": "Create a vector bucket", - "slug": "vectorbucketapi-createbucket", + "id": "storagevectors-get-bucket", + "title": "Retrieve a vector bucket", + "slug": "storagevectors-getbucket", "type": "function", "product": "storage" }, { - "id": "vectorbucketapi-deletebucket", - "title": "Delete a vector bucket", - "slug": "vectorbucketapi-deletebucket", + "id": "storagevectors-list-buckets", + "title": "List all vector buckets", + "slug": "storagevectors-listbuckets", "type": "function", "product": "storage" }, { - "id": "vectorbucketapi-getbucket", - "title": "Retrieve a vector bucket", - "slug": "vectorbucketapi-getbucket", + "id": "vectorbucket-createindex", + "title": "Create a vector index", + "slug": "vectorbucket-createindex", "type": "function", "product": "storage" }, { - "id": "vectorbucketapi-listbuckets", - "title": "List all vector buckets", - "slug": "vectorbucketapi-listbuckets", + "id": "vectorbucket-deleteindex", + "title": "Delete a vector index", + "slug": "vectorbucket-deleteindex", "type": "function", "product": "storage" }, { - "id": "vectorbucketapi-throwonerror", - "title": "Enable error throwing", - "slug": "vectorbucketapi-throwonerror", + "id": "vectorbucket-getindex", + "title": "Retrieve a vector index", + "slug": "vectorbucket-getindex", "type": "function", "product": "storage" }, { - "id": "vectorbucketscope-constructor", - "title": "Create a vector bucket scope", - "slug": "vectorbucketscope-constructor", + "id": "vectorbucket-listindexes", + "title": "List all vector indexes", + "slug": "vectorbucket-listindexes", "type": "function", "product": "storage" }, { - "id": "vectorbucketscope-createindex", - "title": "Create a vector index", - "slug": "vectorbucketscope-createindex", + "id": "vectorbucket-index", + "title": "Access a vector index", + "slug": "vectorbucket-index", "type": "function", "product": "storage" }, { - "id": "vectorbucketscope-deleteindex", - "title": "Delete a vector index", - "slug": "vectorbucketscope-deleteindex", + "id": "vectorindex-deletevectors", + "title": "Delete vectors from index", + "slug": "vectorindex-deletevectors", "type": "function", "product": "storage" }, { - "id": "vectorbucketscope-getindex", - "title": "Retrieve a vector index", - "slug": "vectorbucketscope-getindex", + "id": "vectorindex-getvectors", + "title": "Retrieve vectors from index", + "slug": "vectorindex-getvectors", "type": "function", "product": "storage" }, { - "id": "vectorbucketscope-listindexes", - "title": "List all vector indexes", - "slug": "vectorbucketscope-listindexes", + "id": "vectorindex-listvectors", + "title": "List vectors in index", + "slug": "vectorindex-listvectors", "type": "function", "product": "storage" }, { - "id": "vector-data", - "isFunc": false, - "title": "Vector Data", - "slug": "vector-data", - "product": "storage", + "id": "vectorindex-putvectors", + "title": "Add vectors to index", + "slug": "vectorindex-putvectors", "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", + "product": "storage" + }, + { + "id": "vectorindex-queryvectors", + "title": "Search vectors in index", + "slug": "vectorindex-queryvectors", "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" - } - ] + "product": "storage" } ] } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/combined.json b/apps/docs/spec/enrichments/tsdoc_v2/combined.json index 906b07445671a..71bc110441a04 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/combined.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/combined.json @@ -22354,7 +22354,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L90" } ], "type": { @@ -23716,7 +23716,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L74" } ], "type": { @@ -23740,7 +23740,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L308" } ], "parameters": [ @@ -24111,19 +24111,19 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 202, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L315" } ], "signatures": [ @@ -24367,7 +24367,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 315, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L315" } ], "type": { @@ -24394,7 +24394,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L325" } ], "parameters": [ @@ -24557,7 +24557,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ] } @@ -44286,7 +44286,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 118, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L118" } ], "typeParameters": [ @@ -44334,7 +44334,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 118, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L118" } ], "type": { @@ -44354,7 +44354,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 118, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L118" } ] } @@ -44405,7 +44405,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 119, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L119" } ], "type": { @@ -44435,7 +44435,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L117" } ], "typeParameters": [ @@ -51080,7 +51080,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L28" } ], "typeParameters": [ @@ -51130,7 +51130,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L111" } ], "type": { @@ -51146,7 +51146,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 111, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L111" } ], "signatures": [ @@ -51198,7 +51198,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L36" } ], "type": { @@ -51231,7 +51231,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 40, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L40" } ], "type": { @@ -51260,7 +51260,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 72, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L72" } ], "type": { @@ -51301,7 +51301,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 52, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L52" } ], "type": { @@ -51330,7 +51330,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 68, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L68" } ], "type": { @@ -51372,7 +51372,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L78" } ], "type": { @@ -51413,7 +51413,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 48, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L48" } ], "type": { @@ -51442,7 +51442,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 56, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L56" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L56" } ], "type": { @@ -51483,7 +51483,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 44, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L44" } ], "type": { @@ -51512,7 +51512,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 83, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L83" } ], "type": { @@ -51554,7 +51554,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 64, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L64" } ], "type": { @@ -51586,7 +51586,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 36, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L36" } ] } @@ -51621,7 +51621,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L32" } ], "type": { @@ -51646,7 +51646,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L33" } ], "type": { @@ -51669,7 +51669,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L32" } ] } @@ -51688,7 +51688,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L90" } ], "type": { @@ -51729,7 +51729,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 94, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L94" } ], "type": { @@ -51763,7 +51763,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 98, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L98" } ], "type": { @@ -51798,7 +51798,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 90, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L90" } ] } @@ -51825,7 +51825,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L88" } ], "type": { @@ -51848,7 +51848,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L89" } ], "type": { @@ -51873,7 +51873,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L28" } ] } @@ -52666,7 +52666,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 35, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L35" } ], "signatures": [ @@ -52681,7 +52681,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 35, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L35" } ], "typeParameters": [ @@ -52729,7 +52729,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 39, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L39" } ], "type": { @@ -52749,7 +52749,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 39, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L39" } ] } @@ -62652,7 +62652,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L53" } ], "signatures": [ @@ -62667,7 +62667,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L53" } ], "parameters": [ @@ -62763,7 +62763,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -62828,7 +62828,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 51, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L51" } ], "type": { @@ -62857,7 +62857,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L50" } ], "extendedTypes": [ @@ -62906,7 +62906,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L28" } ], "signatures": [ @@ -62921,7 +62921,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L28" } ], "parameters": [ @@ -63010,7 +63010,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -63070,7 +63070,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -63103,7 +63103,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 14, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -63172,7 +63172,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "signatures": [ @@ -63187,7 +63187,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "parameters": [ @@ -63235,7 +63235,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 177, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "type": { @@ -63254,7 +63254,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 177, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "type": { @@ -63274,7 +63274,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 177, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ] } @@ -63333,7 +63333,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -63390,7 +63390,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -63420,7 +63420,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 176, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -63439,7 +63439,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 176, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -63459,7 +63459,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 176, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ] } @@ -63481,7 +63481,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -63515,7 +63515,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -63539,7 +63539,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L182" } ], "signatures": [ @@ -63554,7 +63554,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L182" } ], "type": { @@ -63577,7 +63577,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 187, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L187" } ], "type": { @@ -63607,7 +63607,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 176, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -63626,7 +63626,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 176, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -63646,7 +63646,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 176, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ] } @@ -63666,7 +63666,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 185, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L185" } ], "type": { @@ -63686,7 +63686,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 184, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L184" } ], "type": { @@ -63706,7 +63706,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 186, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L186" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L186" } ], "type": { @@ -63727,7 +63727,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 183, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L183" } ] } @@ -63755,7 +63755,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 175, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L175" } ], "extendedTypes": [ @@ -63804,7 +63804,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L157" } ], "signatures": [ @@ -63819,7 +63819,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L157" } ], "parameters": [ @@ -63884,7 +63884,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -63943,7 +63943,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -63977,7 +63977,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -64006,7 +64006,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 156, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L156" } ], "extendedTypes": [ @@ -64055,7 +64055,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L289" } ], "signatures": [ @@ -64070,7 +64070,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L289" } ], "parameters": [ @@ -64135,7 +64135,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -64194,7 +64194,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -64228,7 +64228,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -64257,7 +64257,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 288, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L288" } ], "extendedTypes": [ @@ -64306,7 +64306,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L141" } ], "signatures": [ @@ -64321,7 +64321,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L141" } ], "type": { @@ -64373,7 +64373,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -64432,7 +64432,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -64466,7 +64466,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -64495,7 +64495,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L140" } ], "extendedTypes": [ @@ -64544,7 +64544,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "signatures": [ @@ -64559,7 +64559,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "parameters": [ @@ -64607,7 +64607,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 211, "character": 57, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "type": { @@ -64626,7 +64626,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 211, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "type": { @@ -64646,7 +64646,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 211, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ] } @@ -64705,7 +64705,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -64762,7 +64762,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 209, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -64792,7 +64792,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 209, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -64811,7 +64811,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 209, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -64831,7 +64831,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 209, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ] } @@ -64853,7 +64853,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -64887,7 +64887,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -64911,7 +64911,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L216" } ], "signatures": [ @@ -64926,7 +64926,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L216" } ], "type": { @@ -64949,7 +64949,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 221, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L221" } ], "type": { @@ -64979,7 +64979,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 209, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -64998,7 +64998,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 209, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -65018,7 +65018,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 209, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ] } @@ -65038,7 +65038,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 219, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L219" } ], "type": { @@ -65058,7 +65058,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L218" } ], "type": { @@ -65078,7 +65078,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 220, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L220" } ], "type": { @@ -65099,7 +65099,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 217, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L217" } ] } @@ -65127,7 +65127,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 208, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L208" } ], "extendedTypes": [ @@ -65176,7 +65176,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 237, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L237" } ], "signatures": [ @@ -65191,7 +65191,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 237, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L237" } ], "parameters": [ @@ -65267,7 +65267,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -65326,7 +65326,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -65360,7 +65360,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -65389,7 +65389,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 236, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L236" } ], "extendedTypes": [ @@ -65438,7 +65438,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L121" } ], "signatures": [ @@ -65453,7 +65453,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L121" } ], "type": { @@ -65505,7 +65505,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -65564,7 +65564,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -65598,7 +65598,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -65627,7 +65627,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 120, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L120" } ], "extendedTypes": [ @@ -65676,7 +65676,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L82" } ], "signatures": [ @@ -65691,7 +65691,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L82" } ], "parameters": [ @@ -65767,7 +65767,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -65824,7 +65824,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L80" } ], "type": { @@ -65853,7 +65853,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -65891,7 +65891,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 79, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L79" } ], "extendedTypes": [ @@ -65940,7 +65940,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L267" } ], "signatures": [ @@ -65955,7 +65955,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L267" } ], "parameters": [ @@ -66058,7 +66058,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -66117,7 +66117,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -66149,7 +66149,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 265, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L265" } ], "type": { @@ -66194,7 +66194,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -66223,7 +66223,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L261" } ], "extendedTypes": [ @@ -66272,7 +66272,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L103" } ], "signatures": [ @@ -66287,7 +66287,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L103" } ], "parameters": [ @@ -66394,7 +66394,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -66451,7 +66451,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -66483,7 +66483,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -66512,7 +66512,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 99, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L99" } ], "extendedTypes": [ @@ -66584,7 +66584,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L61" } ], "signatures": [ @@ -66618,7 +66618,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L61" } ], "parameters": [ @@ -66650,7 +66650,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 70, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L70" } ], "type": { @@ -66879,7 +66879,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 67, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L67" } ], "type": { @@ -66895,7 +66895,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 67, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L67" } ], "indexSignatures": [ @@ -66910,7 +66910,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 68, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L68" } ], "parameters": [ @@ -66947,7 +66947,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 66, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L66" } ], "type": { @@ -66968,7 +66968,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 65, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L65" } ] } @@ -67004,7 +67004,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L34" } ], "type": { @@ -67033,7 +67033,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L40" } ], "type": { @@ -67054,7 +67054,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 192, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L192" } ], "signatures": [ @@ -67085,7 +67085,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 192, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L192" } ], "parameters": [ @@ -67134,7 +67134,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 312, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L312" } ], "signatures": [ @@ -67165,7 +67165,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 312, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L312" } ], "parameters": [ @@ -67248,7 +67248,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L158" } ], "signatures": [ @@ -67271,7 +67271,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L158" } ], "parameters": [ @@ -67320,7 +67320,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L261" } ], "signatures": [ @@ -67343,7 +67343,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L261" } ], "parameters": [ @@ -67406,7 +67406,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 125, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L125" } ], "signatures": [ @@ -67429,7 +67429,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 125, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L125" } ], "parameters": [ @@ -67504,7 +67504,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 129, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L129" } ], "type": { @@ -67533,7 +67533,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 132, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L132" } ], "type": { @@ -67553,7 +67553,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 127, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L127" } ] } @@ -67592,7 +67592,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L214" } ], "signatures": [ @@ -67623,7 +67623,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L214" } ], "parameters": [ @@ -67697,7 +67697,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ], "type": { @@ -67723,7 +67723,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ], "type": { @@ -67742,7 +67742,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ], "type": { @@ -67767,7 +67767,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ] } @@ -67792,7 +67792,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ], "type": { @@ -67812,7 +67812,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ] } @@ -67837,7 +67837,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 218, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" } ], "type": { @@ -67860,7 +67860,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 218, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" } ], "type": { @@ -67879,7 +67879,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 218, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" } ] } @@ -67896,7 +67896,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 218, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" } ], "type": { @@ -67918,7 +67918,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" } ] } @@ -67943,7 +67943,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 94, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L94" } ], "signatures": [ @@ -67966,7 +67966,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 94, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L94" } ], "parameters": [ @@ -68050,7 +68050,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 97, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ], "type": { @@ -68069,7 +68069,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 97, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ], "type": { @@ -68100,7 +68100,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 97, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ] } @@ -68123,7 +68123,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 285, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L285" } ], "signatures": [ @@ -68146,7 +68146,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 285, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L285" } ], "parameters": [ @@ -68231,7 +68231,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 32, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L32" } ] }, @@ -68253,7 +68253,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L292" } ], "signatures": [ @@ -68287,7 +68287,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L292" } ], "parameters": [ @@ -68334,7 +68334,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 201, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L201" } ], "type": { @@ -68364,7 +68364,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 205, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L205" } ], "type": { @@ -68393,7 +68393,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L211" } ], "type": { @@ -68414,7 +68414,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 743, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L743" } ], "signatures": [ @@ -68437,7 +68437,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 743, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L743" } ], "parameters": [ @@ -68484,7 +68484,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3701, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3701" } ], "signatures": [ @@ -68533,7 +68533,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3701, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3701" } ], "parameters": [ @@ -68627,7 +68627,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3710, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3710" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3710" } ], "type": { @@ -68656,7 +68656,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3713, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3713" } ], "type": { @@ -68679,7 +68679,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3713, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3713" } ], "type": { @@ -68704,7 +68704,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3713, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3713" } ] } @@ -68737,7 +68737,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3707, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3707" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3707" } ], "type": { @@ -68762,7 +68762,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3703, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3703" } ] } @@ -68800,7 +68800,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -68823,7 +68823,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -68844,7 +68844,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -68865,7 +68865,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -68890,7 +68890,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ] } @@ -68907,7 +68907,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3718, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3718" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3718" } ], "type": { @@ -68927,7 +68927,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3716, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3716" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3716" } ] } @@ -68952,7 +68952,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3720, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3720" } ], "type": { @@ -68971,7 +68971,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3720, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3720" } ], "type": { @@ -68993,7 +68993,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3720, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3720" } ] } @@ -69018,7 +69018,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3721, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3721" } ], "type": { @@ -69037,7 +69037,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3721, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3721" } ], "type": { @@ -69057,7 +69057,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3721, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3721" } ] } @@ -69082,7 +69082,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1458, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1458" } ], "signatures": [ @@ -69114,7 +69114,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1458, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1458" } ], "type": { @@ -69147,7 +69147,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1551, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1551" } ], "type": { @@ -69170,7 +69170,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1552, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1552" } ], "type": { @@ -69192,7 +69192,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1551, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1551" } ] } @@ -69209,7 +69209,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1554, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1554" } ], "type": { @@ -69229,7 +69229,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1550, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1550" } ] } @@ -69254,7 +69254,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1557, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1557" } ], "type": { @@ -69277,7 +69277,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1558, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1558" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1558" } ], "type": { @@ -69297,7 +69297,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1557, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1557" } ] } @@ -69314,7 +69314,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1560, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1560" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1560" } ], "type": { @@ -69336,7 +69336,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1556, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ] } @@ -69361,7 +69361,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1563, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1563" } ], "type": { @@ -69384,7 +69384,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1564, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1564" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1564" } ], "type": { @@ -69404,7 +69404,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1563, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1563" } ] } @@ -69421,7 +69421,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1566, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1566" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1566" } ], "type": { @@ -69441,7 +69441,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1562, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1562" } ] } @@ -69466,7 +69466,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1700, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1700" } ], "signatures": [ @@ -69489,7 +69489,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1700, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1700" } ], "parameters": [ @@ -69546,7 +69546,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2282, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2282" } ], "signatures": [ @@ -69569,7 +69569,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2282, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2282" } ], "type": { @@ -69602,7 +69602,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2284, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2284" } ], "type": { @@ -69625,7 +69625,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2285, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2285" } ], "type": { @@ -69650,7 +69650,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2284, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2284" } ] } @@ -69667,7 +69667,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2287, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2287" } ], "type": { @@ -69687,7 +69687,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2283, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2283" } ] } @@ -69712,7 +69712,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2289, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2289" } ], "type": { @@ -69731,7 +69731,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2289, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2289" } ], "type": { @@ -69753,7 +69753,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2289, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2289" } ] } @@ -69778,7 +69778,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L440" } ], "signatures": [ @@ -69801,7 +69801,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L440" } ], "type": { @@ -69837,7 +69837,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 404, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L404" } ], "signatures": [ @@ -69860,7 +69860,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 404, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L404" } ], "type": { @@ -69881,19 +69881,19 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2307, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2307" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2312, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2312" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2314" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2314" } ], "signatures": [ @@ -69916,7 +69916,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2307, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2307" } ], "parameters": [ @@ -69971,7 +69971,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2312, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2312" } ], "parameters": [ @@ -70020,19 +70020,19 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2180" } ], "signatures": [ @@ -70055,7 +70055,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ], "parameters": [ @@ -70086,7 +70086,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ], "signatures": [ @@ -70101,7 +70101,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ], "parameters": [ @@ -70171,7 +70171,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2161, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2161" } ], "type": { @@ -70194,7 +70194,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2161, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2161" } ], "type": { @@ -70216,7 +70216,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2161, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2161" } ] } @@ -70234,7 +70234,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 90, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ] } @@ -70278,7 +70278,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ], "parameters": [ @@ -70309,7 +70309,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ], "signatures": [ @@ -70324,7 +70324,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ], "parameters": [ @@ -70405,7 +70405,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2177, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2177" } ], "type": { @@ -70428,7 +70428,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2177, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2177" } ], "type": { @@ -70450,7 +70450,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2177, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2177" } ] } @@ -70468,7 +70468,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ] } @@ -70487,7 +70487,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1371, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1371" } ], "signatures": [ @@ -70510,7 +70510,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1371, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1371" } ], "type": { @@ -70544,7 +70544,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ], "signatures": [ @@ -70567,7 +70567,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ], "parameters": [ @@ -70607,7 +70607,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ], "type": { @@ -70627,7 +70627,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ] } @@ -70665,7 +70665,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1406" } ], "signatures": [ @@ -70688,7 +70688,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1406" } ], "parameters": [ @@ -70737,7 +70737,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2236" } ], "signatures": [ @@ -70760,7 +70760,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2236" } ], "parameters": [ @@ -70819,7 +70819,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2240, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2240" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2240" } ], "type": { @@ -70848,7 +70848,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2239, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2239" } ], "type": { @@ -70868,7 +70868,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2238, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2238" } ] } @@ -70906,7 +70906,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2244, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2244" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2244" } ], "type": { @@ -70931,7 +70931,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2245, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2245" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2245" } ], "type": { @@ -70951,7 +70951,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2243, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2243" } ] } @@ -70976,7 +70976,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2247, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2247" } ], "type": { @@ -70995,7 +70995,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2247, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2247" } ], "type": { @@ -71017,7 +71017,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2247, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2247" } ] } @@ -71042,7 +71042,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1832, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1832" } ], "signatures": [ @@ -71065,7 +71065,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1832, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1832" } ], "parameters": [ @@ -71103,7 +71103,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1833, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1833" } ], "type": { @@ -71122,7 +71122,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1834, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1834" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1834" } ], "type": { @@ -71142,7 +71142,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1832, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1832" } ] } @@ -71180,7 +71180,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 547, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L547" } ], "signatures": [ @@ -71214,7 +71214,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 547, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L547" } ], "parameters": [ @@ -71265,7 +71265,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1156, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1156" } ], "signatures": [ @@ -71288,7 +71288,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1156, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1156" } ], "parameters": [ @@ -71337,7 +71337,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 731, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L731" } ], "signatures": [ @@ -71360,7 +71360,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 731, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L731" } ], "parameters": [ @@ -71409,7 +71409,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1209" } ], "signatures": [ @@ -71448,7 +71448,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1209" } ], "parameters": [ @@ -71497,7 +71497,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L667" } ], "signatures": [ @@ -71520,7 +71520,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L667" } ], "parameters": [ @@ -71569,7 +71569,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1326" } ], "signatures": [ @@ -71592,7 +71592,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1326" } ], "parameters": [ @@ -71641,7 +71641,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 758, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L758" } ], "signatures": [ @@ -71675,7 +71675,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 758, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L758" } ], "parameters": [ @@ -71723,7 +71723,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ], "type": { @@ -71746,7 +71746,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ], "type": { @@ -71767,7 +71767,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ], "type": { @@ -71789,7 +71789,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ] } @@ -71806,7 +71806,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L761" } ], "type": { @@ -71826,7 +71826,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 759, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L759" } ] } @@ -71851,7 +71851,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -71874,7 +71874,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -71893,7 +71893,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -71913,7 +71913,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ] } @@ -71930,7 +71930,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -71952,7 +71952,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ] } @@ -71977,7 +71977,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ], "signatures": [ @@ -72040,7 +72040,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ], "parameters": [ @@ -72086,7 +72086,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ], "type": { @@ -72117,7 +72117,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ] } @@ -72140,7 +72140,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 590, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L590" } ], "signatures": [ @@ -72183,7 +72183,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 590, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L590" } ], "parameters": [ @@ -72232,7 +72232,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2892, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2892" } ], "signatures": [ @@ -72270,7 +72270,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2892, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2892" } ], "type": { @@ -72302,7 +72302,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2905, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2905" } ], "signatures": [ @@ -72334,7 +72334,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2905, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2905" } ], "type": { @@ -72366,7 +72366,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2411" } ], "signatures": [ @@ -72389,7 +72389,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2411" } ], "parameters": [ @@ -72437,7 +72437,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2413, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2413" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2413" } ], "type": { @@ -72462,7 +72462,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2414, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2414" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2414" } ], "type": { @@ -72482,7 +72482,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2412, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2412" } ] } @@ -72507,7 +72507,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2416, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2416" } ], "type": { @@ -72526,7 +72526,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2416, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2416" } ], "type": { @@ -72548,7 +72548,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2416, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2416" } ] } @@ -72573,7 +72573,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1761" } ], "signatures": [ @@ -72596,7 +72596,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1761" } ], "parameters": [ @@ -72641,7 +72641,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1764, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1764" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1764" } ], "type": { @@ -72661,7 +72661,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1763, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1763" } ] } @@ -72700,7 +72700,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1265, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1265" } ], "signatures": [ @@ -72723,7 +72723,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1265, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1265" } ], "parameters": [ @@ -72784,7 +72784,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 192, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L192" } ] }, @@ -72825,7 +72825,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L37" } ], "signatures": [ @@ -72840,7 +72840,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L37" } ], "parameters": [ @@ -72890,7 +72890,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 35, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L35" } ], "type": { @@ -72920,7 +72920,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 52, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L52" } ], "extendedTypes": [ @@ -72979,7 +72979,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L450" } ], "type": { @@ -73008,7 +73008,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 476, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L476" } ], "type": { @@ -73038,7 +73038,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 401, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L401" } ], "type": { @@ -73072,7 +73072,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L457" } ], "type": { @@ -73117,7 +73117,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L501" } ], "type": { @@ -73147,7 +73147,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 418, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L418" } ], "type": { @@ -73182,7 +73182,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L411" } ], "type": { @@ -73224,7 +73224,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L494" } ], "type": { @@ -73254,7 +73254,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L406" } ], "type": { @@ -73288,7 +73288,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 464, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L464" } ], "type": { @@ -73349,7 +73349,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 485, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L485" } ], "type": { @@ -73394,7 +73394,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 440, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L440" } ], "type": { @@ -73414,7 +73414,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 429, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L429" } ], "extendedTypes": [ @@ -73492,7 +73492,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 286, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L286" } ], "type": { @@ -73521,7 +73521,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L292" } ], "type": { @@ -73541,7 +73541,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 284, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L284" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L284" } ] }, @@ -73571,7 +73571,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1778, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1778" } ], "signatures": [ @@ -73605,7 +73605,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1778, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1778" } ], "parameters": [ @@ -73666,7 +73666,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1780" } ], "type": { @@ -73686,7 +73686,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1780" } ] } @@ -73724,7 +73724,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1791" } ], "signatures": [ @@ -73758,7 +73758,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1791" } ], "parameters": [ @@ -73819,7 +73819,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1793, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1793" } ], "type": { @@ -73839,7 +73839,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1793, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1793" } ] } @@ -73877,7 +73877,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1768, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1768" } ], "signatures": [ @@ -73911,7 +73911,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1768, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1768" } ], "parameters": [ @@ -73966,7 +73966,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1802" } ], "signatures": [ @@ -74000,7 +74000,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1802" } ], "type": { @@ -74034,7 +74034,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ], "signatures": [ @@ -74068,7 +74068,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ], "parameters": [ @@ -74114,7 +74114,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ], "type": { @@ -74134,7 +74134,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ] } @@ -74173,7 +74173,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1755, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1755" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1755" } ] }, @@ -74221,7 +74221,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 855, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L855" } ], "type": { @@ -74250,7 +74250,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 857, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L857" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L857" } ], "type": { @@ -74270,7 +74270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 849, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L849" } ] }, @@ -74306,7 +74306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1298" } ], "signatures": [ @@ -74346,7 +74346,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1298" } ], "parameters": [ @@ -74395,7 +74395,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1288, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1288" } ], "signatures": [ @@ -74418,7 +74418,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1288, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1288" } ], "parameters": [ @@ -74468,7 +74468,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1283, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1283" } ] }, @@ -74498,7 +74498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1637" } ], "signatures": [ @@ -74529,7 +74529,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1637" } ], "parameters": [ @@ -74578,7 +74578,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "signatures": [ @@ -74609,7 +74609,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "parameters": [ @@ -74652,7 +74652,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "type": { @@ -74671,7 +74671,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "type": { @@ -74702,7 +74702,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ] } @@ -74725,7 +74725,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1645" } ], "signatures": [ @@ -74756,7 +74756,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1645" } ], "parameters": [ @@ -74803,7 +74803,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1629" } ], "signatures": [ @@ -74834,7 +74834,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1629" } ], "parameters": [ @@ -74885,7 +74885,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1669, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1669" } ], "signatures": [ @@ -74916,7 +74916,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1669, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1669" } ], "parameters": [ @@ -74963,7 +74963,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1653" } ], "signatures": [ @@ -74994,7 +74994,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1653" } ], "parameters": [ @@ -75055,7 +75055,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1622, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1622" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1622" } ] }, @@ -75085,7 +75085,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1241" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1241" } ], "type": { @@ -75109,25 +75109,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1192" } ], "signatures": [ @@ -75150,7 +75150,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1189" } ], "parameters": [ @@ -75188,7 +75188,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -75208,7 +75208,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -75245,7 +75245,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -75264,7 +75264,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -75286,7 +75286,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -75311,7 +75311,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -75342,7 +75342,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1059" } ], "type": { @@ -75369,7 +75369,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1053" } ], "type": { @@ -75396,7 +75396,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1056" } ], "type": { @@ -75416,7 +75416,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -75433,7 +75433,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -75453,7 +75453,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -75476,7 +75476,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1190" } ], "parameters": [ @@ -75514,7 +75514,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 973, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L973" } ], "type": { @@ -75550,7 +75550,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -75570,7 +75570,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -75607,7 +75607,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -75626,7 +75626,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -75648,7 +75648,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -75673,7 +75673,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -75704,7 +75704,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1059" } ], "type": { @@ -75731,7 +75731,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1053" } ], "type": { @@ -75758,7 +75758,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1056" } ], "type": { @@ -75778,7 +75778,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -75795,7 +75795,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -75815,7 +75815,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -75838,7 +75838,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1191" } ], "parameters": [ @@ -75876,7 +75876,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -75895,7 +75895,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 982, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L982" } ], "type": { @@ -75926,7 +75926,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 984, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L984" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L984" } ], "type": { @@ -75955,7 +75955,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 986, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L986" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L986" } ], "type": { @@ -75978,7 +75978,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 982, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L982" } ] } @@ -75996,7 +75996,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -76033,7 +76033,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -76052,7 +76052,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -76074,7 +76074,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -76099,7 +76099,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -76130,7 +76130,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1059" } ], "type": { @@ -76157,7 +76157,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1053" } ], "type": { @@ -76184,7 +76184,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1056" } ], "type": { @@ -76203,7 +76203,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1079" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1079" } ], "type": { @@ -76229,7 +76229,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1082, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1082" } ], "type": { @@ -76252,7 +76252,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1082, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1082" } ], "type": { @@ -76277,7 +76277,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1082, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1082" } ] } @@ -76294,7 +76294,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1081, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1081" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1081" } ], "type": { @@ -76314,7 +76314,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1080, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1080" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1080" } ] } @@ -76339,7 +76339,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1086, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1086" } ], "type": { @@ -76362,7 +76362,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1086, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1086" } ], "type": { @@ -76387,7 +76387,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1086, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1086" } ] } @@ -76404,7 +76404,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1085, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1085" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1085" } ], "type": { @@ -76424,7 +76424,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1084, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1084" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1084" } ] } @@ -76444,7 +76444,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -76461,7 +76461,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -76481,7 +76481,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -76504,7 +76504,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1192" } ], "parameters": [ @@ -76553,7 +76553,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1213" } ], "signatures": [ @@ -76576,7 +76576,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1213" } ], "parameters": [ @@ -76614,7 +76614,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -76641,7 +76641,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -76661,7 +76661,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -76699,25 +76699,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1183" } ], "signatures": [ @@ -76756,7 +76756,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1180" } ], "parameters": [ @@ -76794,7 +76794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1357" } ], "type": { @@ -76823,7 +76823,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1359" } ], "type": { @@ -76852,7 +76852,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1364, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1364" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1364" } ], "type": { @@ -76872,7 +76872,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -76908,7 +76908,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1181" } ], "parameters": [ @@ -76946,7 +76946,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1357" } ], "type": { @@ -76975,7 +76975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1359" } ], "type": { @@ -77002,7 +77002,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1371, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1371" } ], "type": { @@ -77022,7 +77022,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -77058,7 +77058,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1182" } ], "parameters": [ @@ -77096,7 +77096,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1357" } ], "type": { @@ -77125,7 +77125,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1359" } ], "type": { @@ -77145,7 +77145,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -77181,7 +77181,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1183, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1183" } ], "parameters": [ @@ -77230,7 +77230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1238" } ], "signatures": [ @@ -77277,7 +77277,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1238" } ], "type": { @@ -77311,7 +77311,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1223" } ], "signatures": [ @@ -77383,7 +77383,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1223" } ], "type": { @@ -77440,7 +77440,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1207, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1207" } ], "signatures": [ @@ -77479,7 +77479,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1207, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1207" } ], "parameters": [ @@ -77528,25 +77528,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1198, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1201" } ], "signatures": [ @@ -77569,7 +77569,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1198, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1198" } ], "parameters": [ @@ -77607,7 +77607,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -77634,7 +77634,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -77661,7 +77661,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -77681,7 +77681,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -77717,7 +77717,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1199" } ], "parameters": [ @@ -77755,7 +77755,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -77782,7 +77782,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -77809,7 +77809,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -77829,7 +77829,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -77865,7 +77865,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1200" } ], "parameters": [ @@ -77903,7 +77903,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -77930,7 +77930,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -77949,7 +77949,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L947" } ], "type": { @@ -78003,7 +78003,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -78039,7 +78039,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1201, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1201" } ], "parameters": [ @@ -78093,7 +78093,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1170, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1170" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1170" } ] }, @@ -78117,7 +78117,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1494" } ], "type": { @@ -78136,7 +78136,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1493" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1493" } ], "type": { @@ -78160,7 +78160,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1495, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1495" } ], "type": { @@ -78179,7 +78179,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1492, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1492" } ], "type": { @@ -78212,7 +78212,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1491, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1491" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1491" } ], "indexSignatures": [ @@ -78227,7 +78227,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1496, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1496" } ], "parameters": [ @@ -78289,7 +78289,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1459" } ], "type": { @@ -78317,7 +78317,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1482, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1482" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1482" } ], "type": { @@ -78343,7 +78343,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1480, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1480" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1480" } ], "type": { @@ -78366,7 +78366,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1455" } ], "type": { @@ -78404,7 +78404,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1473" } ], "type": { @@ -78425,7 +78425,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1456" } ], "type": { @@ -78451,7 +78451,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1457" } ], "type": { @@ -78477,7 +78477,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1475, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1475" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1475" } ], "type": { @@ -78498,7 +78498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1453" } ], "type": { @@ -78524,7 +78524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1478" } ], "type": { @@ -78545,7 +78545,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1479" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1479" } ], "type": { @@ -78566,7 +78566,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1474" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1474" } ], "type": { @@ -78587,7 +78587,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1485, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1485" } ], "type": { @@ -78608,7 +78608,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1458" } ], "type": { @@ -78634,7 +78634,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1460, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1460" } ], "type": { @@ -78660,7 +78660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1454" } ], "type": { @@ -78686,7 +78686,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1481, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1481" } ], "type": { @@ -78711,7 +78711,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1471, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1471" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1471" } ], "indexSignatures": [ @@ -78726,7 +78726,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1488" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1488" } ], "parameters": [ @@ -78783,7 +78783,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L239" } ], "type": { @@ -78812,7 +78812,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L251" } ], "type": { @@ -78839,7 +78839,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L247" } ], "type": { @@ -78868,7 +78868,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L235" } ], "type": { @@ -78906,7 +78906,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L230" } ], "type": { @@ -78942,7 +78942,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 243, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L243" } ], "type": { @@ -78961,7 +78961,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L252" } ], "type": { @@ -78988,7 +78988,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L257" } ], "type": { @@ -79010,7 +79010,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 226, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L226" } ] }, @@ -79040,7 +79040,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 514, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L514" } ], "type": { @@ -79056,7 +79056,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 514, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L514" } ], "signatures": [ @@ -79071,7 +79071,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 514, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L514" } ], "parameters": [ @@ -79139,7 +79139,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L510" } ], "type": { @@ -79175,7 +79175,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 518, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L518" } ], "type": { @@ -79191,7 +79191,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 518, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L518" } ], "signatures": [ @@ -79206,7 +79206,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 518, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L518" } ], "type": { @@ -79230,7 +79230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 504, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L504" } ] }, @@ -79254,7 +79254,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L380" } ], "type": { @@ -79273,7 +79273,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 371, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L371" } ], "type": { @@ -79294,7 +79294,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L373" } ], "type": { @@ -79315,7 +79315,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L374" } ], "type": { @@ -79336,7 +79336,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L384" } ], "type": { @@ -79355,7 +79355,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 383, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L383" } ], "type": { @@ -79376,7 +79376,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 394, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L394" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L394" } ], "type": { @@ -79397,7 +79397,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 381, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L381" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L381" } ], "type": { @@ -79418,7 +79418,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L376" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L376" } ], "type": { @@ -79439,7 +79439,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 385, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L385" } ], "type": { @@ -79460,7 +79460,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 393, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L393" } ], "type": { @@ -79541,7 +79541,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 370, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L370" } ], "type": { @@ -79562,7 +79562,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 390, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L390" } ], "type": { @@ -79588,7 +79588,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 379, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L379" } ], "type": { @@ -79609,7 +79609,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 391, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L391" } ], "type": { @@ -79630,7 +79630,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 392, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L392" } ], "type": { @@ -79651,7 +79651,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L387" } ], "type": { @@ -79672,7 +79672,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L377" } ], "type": { @@ -79693,7 +79693,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L378" } ], "type": { @@ -79714,7 +79714,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L382" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L382" } ], "type": { @@ -79735,7 +79735,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L386" } ], "type": { @@ -79756,7 +79756,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L375" } ], "type": { @@ -79777,7 +79777,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L388" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L388" } ], "type": { @@ -79798,7 +79798,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L389" } ], "type": { @@ -79817,7 +79817,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L372" } ], "type": { @@ -79842,7 +79842,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 369, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L369" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L369" } ] }, @@ -79874,7 +79874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L357" } ], "type": { @@ -79903,7 +79903,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 361, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L361" } ], "type": { @@ -79926,7 +79926,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 353, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L353" } ], "indexSignatures": [ @@ -79941,7 +79941,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L362" } ], "parameters": [ @@ -80008,7 +80008,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L426" } ], "type": { @@ -80037,7 +80037,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 401, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L401" } ], "type": { @@ -80066,7 +80066,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 418, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L418" } ], "type": { @@ -80095,7 +80095,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L411" } ], "type": { @@ -80124,7 +80124,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L406" } ], "type": { @@ -80144,7 +80144,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 397, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L397" } ] }, @@ -80168,7 +80168,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 303, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L303" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L303" } ], "type": { @@ -80187,7 +80187,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L296" } ], "type": { @@ -80208,7 +80208,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L298" } ], "type": { @@ -80224,7 +80224,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 298, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L298" } ], "indexSignatures": [ @@ -80239,7 +80239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 299, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L299" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L299" } ], "parameters": [ @@ -80275,7 +80275,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L301" } ], "type": { @@ -80296,7 +80296,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 304, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L304" } ], "type": { @@ -80315,7 +80315,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L302" } ], "type": { @@ -80336,7 +80336,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 305, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L305" } ], "type": { @@ -80355,7 +80355,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L297" } ], "type": { @@ -80375,7 +80375,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 295, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L295" } ] }, @@ -80390,7 +80390,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 365, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L365" } ], "indexSignatures": [ @@ -80405,7 +80405,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L366" } ], "parameters": [ @@ -80454,7 +80454,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 733, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L733" } ], "type": { @@ -80475,7 +80475,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 738, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L738" } ], "type": { @@ -80514,7 +80514,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 746, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L746" } ], "type": { @@ -80543,7 +80543,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 740, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L740" } ], "type": { @@ -80563,7 +80563,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 738, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L738" } ] } @@ -80588,7 +80588,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 735, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L735" } ], "type": { @@ -80615,7 +80615,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 737, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L737" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L737" } ], "type": { @@ -80637,7 +80637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 731, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L731" } ] }, @@ -80661,7 +80661,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 719, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L719" } ], "type": { @@ -80700,7 +80700,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 728, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L728" } ], "type": { @@ -80729,7 +80729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 721, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L721" } ], "type": { @@ -80749,7 +80749,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 719, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L719" } ] } @@ -80774,7 +80774,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 714, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L714" } ], "type": { @@ -80801,7 +80801,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 716, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L716" } ], "type": { @@ -80828,7 +80828,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L718" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L718" } ], "type": { @@ -80850,7 +80850,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 712, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L712" } ] }, @@ -80880,7 +80880,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L752" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L752" } ], "type": { @@ -80907,7 +80907,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 755, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L755" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L755" } ], "type": { @@ -80929,7 +80929,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 750, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L750" } ] }, @@ -80944,7 +80944,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 274, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L274" } ], "type": { @@ -80990,7 +80990,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 274, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L274" } ] } @@ -81011,7 +81011,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 44, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L44" } ], "type": { @@ -81061,7 +81061,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 42, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L42" } ], "type": { @@ -81080,7 +81080,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1144" } ], "type": { @@ -81108,7 +81108,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 593, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L593" } ], "type": { @@ -81145,7 +81145,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1254, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1254" } ], "type": { @@ -81176,7 +81176,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1256" } ], "type": { @@ -81203,7 +81203,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1259" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1259" } ], "type": { @@ -81223,7 +81223,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1254, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1254" } ] } @@ -81249,7 +81249,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1247, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1247" } ], "type": { @@ -81284,7 +81284,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1249" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1249" } ], "type": { @@ -81304,7 +81304,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1247, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1247" } ] } @@ -81334,7 +81334,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1273, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1273" } ], "type": { @@ -81365,7 +81365,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1275" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1275" } ], "type": { @@ -81385,7 +81385,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1273, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1273" } ] } @@ -81411,7 +81411,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1265, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1265" } ], "type": { @@ -81446,7 +81446,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1267" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1267" } ], "type": { @@ -81471,7 +81471,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1265, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1265" } ] } @@ -81492,7 +81492,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1074, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1074" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1074" } ], "type": { @@ -81552,7 +81552,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1126, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1126" } ], "type": { @@ -81590,7 +81590,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1066, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1066" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1066" } ], "type": { @@ -81671,7 +81671,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1095, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1095" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1095" } ], "type": { @@ -81739,7 +81739,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1115, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1115" } ], "type": { @@ -81799,7 +81799,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1123, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1123" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1123" } ], "type": { @@ -81828,7 +81828,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1429, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1429" } ], "type": { @@ -81888,7 +81888,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1041, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1041" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1041" } ], "type": { @@ -81926,7 +81926,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1420, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1420" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1420" } ], "type": { @@ -82007,7 +82007,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1442, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1442" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1442" } ], "type": { @@ -82067,7 +82067,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1146, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1146" } ], "type": { @@ -82102,7 +82102,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1163" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1163" } ], "type": { @@ -82134,7 +82134,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1148" } ], "type": { @@ -82185,7 +82185,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1156" } ], "type": { @@ -82216,7 +82216,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1146, "character": 74, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1146" } ] } @@ -82245,7 +82245,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1132, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1132" } ], "typeParameters": [ @@ -82318,7 +82318,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1136, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1136" } ], "type": { @@ -82351,7 +82351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1134, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1134" } ] } @@ -82425,7 +82425,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1046, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1046" } ], "type": { @@ -82460,7 +82460,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1048, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1048" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1048" } ], "type": { @@ -82480,7 +82480,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1046, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1046" } ] } @@ -82509,7 +82509,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1039, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1039" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1039" } ], "type": { @@ -82546,7 +82546,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1018, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1018" } ], "type": { @@ -82577,7 +82577,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1020, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1020" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1020" } ], "type": { @@ -82604,7 +82604,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1026, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1026" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1026" } ], "type": { @@ -82631,7 +82631,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1029, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1029" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1029" } ], "type": { @@ -82666,7 +82666,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1023, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1023" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1023" } ], "type": { @@ -82693,7 +82693,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1032, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1032" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1032" } ], "type": { @@ -82715,7 +82715,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1018, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1018" } ] } @@ -82740,7 +82740,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1713, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1713" } ], "type": { @@ -82777,7 +82777,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1719" } ], "type": { @@ -82812,7 +82812,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1721" } ], "type": { @@ -82832,7 +82832,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1719" } ] } @@ -82861,7 +82861,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1741" } ], "type": { @@ -82901,7 +82901,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1747" } ], "type": { @@ -82921,7 +82921,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1747" } ] } @@ -82955,7 +82955,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 178, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L178" } ], "type": { @@ -82984,7 +82984,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L181" } ], "type": { @@ -83012,7 +83012,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L180" } ], "type": { @@ -83031,7 +83031,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L179" } ], "type": { @@ -83051,7 +83051,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 178, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L178" } ] } @@ -83072,7 +83072,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 162, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L162" } ], "type": { @@ -83099,7 +83099,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L164" } ], "type": { @@ -83129,7 +83129,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L163" } ], "type": { @@ -83160,7 +83160,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 162, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L162" } ] } @@ -83181,7 +83181,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 167, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L167" } ], "type": { @@ -83208,7 +83208,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 169, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L169" } ], "type": { @@ -83238,7 +83238,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 168, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L168" } ], "type": { @@ -83270,7 +83270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 170, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L170" } ], "type": { @@ -83301,7 +83301,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 167, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L167" } ] } @@ -83322,7 +83322,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 184, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L184" } ], "type": { @@ -83349,7 +83349,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 186, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L186" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L186" } ], "type": { @@ -83370,7 +83370,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 185, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L185" } ], "type": { @@ -83392,7 +83392,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 184, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L184" } ] } @@ -83413,7 +83413,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 189, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L189" } ], "type": { @@ -83440,7 +83440,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L191" } ], "type": { @@ -83461,7 +83461,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L190" } ], "type": { @@ -83484,7 +83484,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L192" } ], "type": { @@ -83506,7 +83506,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 189, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L189" } ] } @@ -83527,7 +83527,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1325, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1325" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1325" } ], "type": { @@ -83564,7 +83564,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1565, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1565" } ], "type": { @@ -83595,7 +83595,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1567, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1567" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1567" } ], "type": { @@ -83624,7 +83624,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1569" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1569" } ], "type": { @@ -83653,7 +83653,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1573, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1573" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1573" } ], "type": { @@ -83685,7 +83685,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1571" } ], "type": { @@ -83717,7 +83717,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1575, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1575" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1575" } ], "type": { @@ -83751,7 +83751,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1577, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1577" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1577" } ], "type": { @@ -83771,7 +83771,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1565, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1565" } ] } @@ -83788,7 +83788,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 759, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L759" } ], "type": { @@ -83832,7 +83832,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 670, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L670" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L670" } ], "type": { @@ -83856,7 +83856,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 672, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L672" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L672" } ], "type": { @@ -83882,7 +83882,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 674, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L674" } ], "type": { @@ -83903,7 +83903,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 682, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L682" } ], "type": { @@ -83936,7 +83936,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 687, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L687" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L687" } ], "type": { @@ -83957,7 +83957,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L689" } ], "type": { @@ -84034,7 +84034,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 684, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L684" } ], "type": { @@ -84054,7 +84054,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 682, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L682" } ] } @@ -84081,7 +84081,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 680, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L680" } ], "type": { @@ -84118,7 +84118,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 677, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L677" } ], "type": { @@ -84140,7 +84140,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 673, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L673" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L673" } ] } @@ -84165,7 +84165,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 695, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L695" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L695" } ], "type": { @@ -84216,7 +84216,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 698, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L698" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L698" } ], "type": { @@ -84237,7 +84237,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 703, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L703" } ], "type": { @@ -84270,7 +84270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 705, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L705" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L705" } ], "type": { @@ -84290,7 +84290,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 703, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L703" } ] } @@ -84315,7 +84315,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 701, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L701" } ], "type": { @@ -84340,7 +84340,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 694, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L694" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L694" } ] } @@ -84415,7 +84415,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 329, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L329" } ], "typeParameters": [ @@ -84495,7 +84495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L349" } ], "type": { @@ -84538,7 +84538,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L342" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L342" } ], "type": { @@ -84570,7 +84570,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 337, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L337" } ], "type": { @@ -84597,7 +84597,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 334, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L334" } ], "type": { @@ -84652,7 +84652,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 347, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L347" } ], "type": { @@ -84674,7 +84674,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L350" } ], "type": { @@ -84694,7 +84694,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 332, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L332" } ] } @@ -84735,7 +84735,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 313, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L313" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L313" } ], "type": { @@ -84770,7 +84770,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 838, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L838" } ], "type": { @@ -84801,7 +84801,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L841" } ], "type": { @@ -84828,7 +84828,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 845, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L845" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L845" } ], "type": { @@ -84849,7 +84849,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 846, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L846" } ], "type": { @@ -84885,7 +84885,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 839, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L839" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L839" } ], "type": { @@ -84914,7 +84914,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 838, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L838" } ] } @@ -84931,7 +84931,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 824, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L824" } ], "type": { @@ -84962,7 +84962,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 827, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L827" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L827" } ], "type": { @@ -84983,7 +84983,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L828" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L828" } ], "type": { @@ -85028,7 +85028,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 825, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L825" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L825" } ], "type": { @@ -85057,7 +85057,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 824, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L824" } ] } @@ -85074,7 +85074,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 860, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L860" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L860" } ], "type": { @@ -85126,7 +85126,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 872, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L872" } ], "type": { @@ -85157,7 +85157,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 877, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L877" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L877" } ], "type": { @@ -85184,7 +85184,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 882, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L882" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L882" } ], "type": { @@ -85211,7 +85211,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L886" } ], "type": { @@ -85238,7 +85238,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 888, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L888" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L888" } ], "type": { @@ -85265,7 +85265,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 890, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L890" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L890" } ], "type": { @@ -85287,7 +85287,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 872, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L872" } ] } @@ -85304,7 +85304,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 866, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L866" } ], "type": { @@ -85331,7 +85331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 867, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L867" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L867" } ], "type": { @@ -85352,7 +85352,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 868, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L868" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L868" } ], "type": { @@ -85374,7 +85374,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 866, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L866" } ] } @@ -85395,7 +85395,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 893, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L893" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L893" } ], "type": { @@ -85439,7 +85439,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 831, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L831" } ], "type": { @@ -85470,7 +85470,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 834, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L834" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L834" } ], "type": { @@ -85491,7 +85491,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L835" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L835" } ], "type": { @@ -85527,7 +85527,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 832, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L832" } ], "type": { @@ -85547,7 +85547,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 831, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L831" } ] } @@ -85564,7 +85564,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 817, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L817" } ], "type": { @@ -85587,7 +85587,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 819, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L819" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L819" } ], "type": { @@ -85608,7 +85608,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L821" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L821" } ], "type": { @@ -85653,7 +85653,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 820, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L820" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L820" } ], "type": { @@ -85672,7 +85672,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 818, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L818" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L818" } ], "type": { @@ -85692,7 +85692,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 817, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L817" } ] } @@ -85709,7 +85709,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 70, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L70" } ], "type": { @@ -85734,7 +85734,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L80" } ], "type": { @@ -85755,7 +85755,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L98" } ], "type": { @@ -85778,7 +85778,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 98, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L98" } ], "signatures": [ @@ -85841,7 +85841,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L78" } ], "type": { @@ -85862,7 +85862,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L94" } ], "type": { @@ -85888,7 +85888,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L96" } ], "type": { @@ -85920,7 +85920,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L109" } ], "type": { @@ -85941,7 +85941,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L74" } ], "type": { @@ -85957,7 +85957,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L74" } ], "indexSignatures": [ @@ -85972,7 +85972,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 74, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L74" } ], "parameters": [ @@ -86019,7 +86019,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L104" } ], "type": { @@ -86042,7 +86042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L82" } ], "type": { @@ -86063,7 +86063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L84" } ], "type": { @@ -86086,7 +86086,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 76, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L76" } ], "type": { @@ -86115,7 +86115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L114" } ], "type": { @@ -86136,7 +86136,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L72" } ], "type": { @@ -86206,7 +86206,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L92" } ], "type": { @@ -86228,7 +86228,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 70, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L70" } ] } @@ -86245,7 +86245,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1323, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1323" } ], "type": { @@ -86268,7 +86268,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1323, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1323" } ], "type": { @@ -86299,7 +86299,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1323, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1323" } ] } @@ -86316,7 +86316,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1446, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1446" } ], "type": { @@ -86339,7 +86339,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1447" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1447" } ], "type": { @@ -86371,7 +86371,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1448" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1448" } ], "type": { @@ -86390,7 +86390,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1449" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1449" } ], "type": { @@ -86410,7 +86410,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1446, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1446" } ] } @@ -86444,7 +86444,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 68, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L68" } ], "type": { @@ -86460,7 +86460,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 68, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L68" } ], "signatures": [ @@ -86553,7 +86553,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 68, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L68" } ], "signatures": [ @@ -86621,7 +86621,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1012, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1012" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1012" } ], "type": { @@ -86645,7 +86645,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 999, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L999" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L999" } ], "type": { @@ -86683,7 +86683,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 976, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L976" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L976" } ], "type": { @@ -86729,7 +86729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 969, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L969" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L969" } ], "type": { @@ -86782,7 +86782,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 995, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L995" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L995" } ], "type": { @@ -86828,7 +86828,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 901, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L901" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L901" } ], "type": { @@ -86866,7 +86866,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1373, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1373" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1373" } ], "type": { @@ -86918,7 +86918,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1367, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1367" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1367" } ], "type": { @@ -86991,7 +86991,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1386, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1386" } ], "type": { @@ -87043,7 +87043,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 967, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L967" } ], "type": { @@ -87078,7 +87078,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 903, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L903" } ], "type": { @@ -87109,7 +87109,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L905" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L905" } ], "type": { @@ -87129,7 +87129,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 903, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L903" } ] } @@ -87146,7 +87146,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 959, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L959" } ], "type": { @@ -87184,7 +87184,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 924, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L924" } ], "type": { @@ -87230,7 +87230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 920, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L920" } ], "type": { @@ -87284,7 +87284,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 946, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L946" } ], "typeParameters": [ @@ -87350,7 +87350,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L947" } ], "type": { @@ -87398,7 +87398,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 946, "character": 98, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L946" } ] } @@ -87436,7 +87436,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 956, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L956" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L956" } ], "typeParameters": [ @@ -87531,7 +87531,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 758, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L758" } ], "type": { @@ -87567,7 +87567,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1676, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1676" } ], "type": { @@ -87598,7 +87598,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1678, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1678" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1678" } ], "type": { @@ -87625,7 +87625,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1684, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1684" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1684" } ], "type": { @@ -87652,7 +87652,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1680, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1680" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1680" } ], "type": { @@ -87679,7 +87679,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1682" } ], "type": { @@ -87699,7 +87699,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1676, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1676" } ] } @@ -87724,7 +87724,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1691, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1691" } ], "type": { @@ -87755,7 +87755,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1693, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1693" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1693" } ], "type": { @@ -87782,7 +87782,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1697, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1697" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1697" } ], "type": { @@ -87813,7 +87813,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1695, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1695" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1695" } ], "type": { @@ -87840,7 +87840,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1706, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1706" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1706" } ], "type": { @@ -87867,7 +87867,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1699, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1699" } ], "type": { @@ -87898,7 +87898,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1703, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1703" } ], "type": { @@ -87925,7 +87925,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1701, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1701" } ], "type": { @@ -87945,7 +87945,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1699, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1699" } ] } @@ -87963,7 +87963,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1691, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1691" } ] } @@ -87988,7 +87988,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1530, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1530" } ], "type": { @@ -88019,7 +88019,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1532, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1532" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1532" } ], "type": { @@ -88046,7 +88046,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1534, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1534" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1534" } ], "type": { @@ -88075,7 +88075,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1536" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1536" } ], "type": { @@ -88102,7 +88102,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1538" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1538" } ], "type": { @@ -88133,7 +88133,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1544, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1544" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1544" } ], "type": { @@ -88160,7 +88160,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1556, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1556" } ], "type": { @@ -88187,7 +88187,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1550" } ], "type": { @@ -88221,7 +88221,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1546, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1546" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1546" } ], "type": { @@ -88248,7 +88248,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1548" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1548" } ], "type": { @@ -88278,7 +88278,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1542" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1542" } ], "type": { @@ -88307,7 +88307,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1552, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1552" } ], "type": { @@ -88341,7 +88341,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1554, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1554" } ], "type": { @@ -88368,7 +88368,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1540, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1540" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1540" } ], "type": { @@ -88395,7 +88395,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1558, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1558" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1558" } ], "type": { @@ -88418,7 +88418,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1530, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1530" } ] } @@ -88443,7 +88443,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1506, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1506" } ], "type": { @@ -88479,7 +88479,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1608, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1608" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1608" } ], "type": { @@ -88505,7 +88505,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ], "type": { @@ -88531,7 +88531,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ], "type": { @@ -88550,7 +88550,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ], "type": { @@ -88575,7 +88575,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ] } @@ -88600,7 +88600,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1611, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1611" } ], "type": { @@ -88620,7 +88620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1609, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1609" } ] } @@ -88645,7 +88645,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1614, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1614" } ], "type": { @@ -88668,7 +88668,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1614, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1614" } ], "type": { @@ -88687,7 +88687,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1614, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1614" } ] } @@ -88704,7 +88704,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1615, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1615" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1615" } ], "type": { @@ -88726,7 +88726,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1613, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1613" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1613" } ] } @@ -88753,7 +88753,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1524, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1524" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1524" } ], "type": { @@ -88789,7 +88789,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1602, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1602" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1602" } ], "type": { @@ -88826,7 +88826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1512, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1512" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1512" } ], "type": { @@ -88853,7 +88853,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1518, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1518" } ], "type": { @@ -88889,7 +88889,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1728" } ], "type": { @@ -88920,7 +88920,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1730" } ], "type": { @@ -88949,7 +88949,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1734" } ], "type": { @@ -88976,7 +88976,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1732" } ], "type": { @@ -88999,7 +88999,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1728" } ] } @@ -89016,7 +89016,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 195, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L195" } ], "type": { @@ -89042,7 +89042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L197" } ], "type": { @@ -89065,7 +89065,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 198, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L198" } ], "type": { @@ -89086,7 +89086,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 199, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L199" } ], "type": { @@ -89106,7 +89106,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 197, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L197" } ] } @@ -89123,7 +89123,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L201" } ], "type": { @@ -89143,7 +89143,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 196, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L196" } ] } @@ -89168,7 +89168,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 204, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L204" } ], "type": { @@ -89191,7 +89191,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 205, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L205" } ], "type": { @@ -89212,7 +89212,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 206, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L206" } ], "type": { @@ -89232,7 +89232,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 204, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L204" } ] } @@ -89249,7 +89249,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 208, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L208" } ], "type": { @@ -89271,7 +89271,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 203, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L203" } ] } @@ -89290,7 +89290,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1334, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1334" } ], "type": { @@ -89323,7 +89323,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1336" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1336" } ], "type": { @@ -89352,7 +89352,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1338, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1338" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1338" } ], "type": { @@ -89372,7 +89372,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1334, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1334" } ] } @@ -89389,7 +89389,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1327, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1327" } ], "type": { @@ -89412,7 +89412,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1330, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1330" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1330" } ], "type": { @@ -89431,7 +89431,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1329, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1329" } ], "type": { @@ -89459,7 +89459,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1331, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1331" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1331" } ], "type": { @@ -89479,7 +89479,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1327, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1327" } ], "indexSignatures": [ @@ -89494,7 +89494,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1328, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1328" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1328" } ], "parameters": [ @@ -89538,7 +89538,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ], "typeParameters": [ @@ -89631,7 +89631,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 18, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L18" } ], "type": { @@ -89747,7 +89747,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 141, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L141" } ], "typeParameters": [ @@ -89804,7 +89804,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -89826,7 +89826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -89846,7 +89846,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 142, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L142" } ] } @@ -89871,7 +89871,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -89890,7 +89890,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -89937,7 +89937,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 146, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L146" } ] } @@ -89969,7 +89969,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 155, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L155" } ], "typeParameters": [ @@ -90004,7 +90004,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 156, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L156" } ], "type": { @@ -90026,7 +90026,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 156, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L156" } ], "type": { @@ -90046,7 +90046,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 156, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L156" } ] } @@ -90071,7 +90071,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 158, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L158" } ], "type": { @@ -90123,7 +90123,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 159, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L159" } ], "type": { @@ -90145,7 +90145,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 157, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L157" } ] } @@ -90164,7 +90164,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1452, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1452" } ], "type": { @@ -90187,7 +90187,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1459" } ], "type": { @@ -90208,7 +90208,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1455" } ], "type": { @@ -90239,7 +90239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1456" } ], "type": { @@ -90258,7 +90258,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1457" } ], "type": { @@ -90277,7 +90277,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1453" } ], "type": { @@ -90296,7 +90296,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1458" } ], "type": { @@ -90315,7 +90315,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1460, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1460" } ], "type": { @@ -90334,7 +90334,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1454" } ], "type": { @@ -90354,7 +90354,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1452, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1452" } ] } @@ -90378,7 +90378,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 761, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L761" } ], "type": { @@ -90404,7 +90404,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 764, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L764" } ], "type": { @@ -90425,7 +90425,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 765, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L765" } ], "type": { @@ -90458,7 +90458,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 769, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L769" } ], "type": { @@ -90487,7 +90487,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 767, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L767" } ], "type": { @@ -90507,7 +90507,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 765, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L765" } ] } @@ -90524,7 +90524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 763, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L763" } ], "type": { @@ -90570,7 +90570,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 762, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L762" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L762" } ] } @@ -90597,7 +90597,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 775, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L775" } ], "type": { @@ -90630,7 +90630,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 777, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L777" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L777" } ], "type": { @@ -90650,7 +90650,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 775, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L775" } ] } @@ -90667,7 +90667,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 774, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L774" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L774" } ], "type": { @@ -90686,7 +90686,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 773, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L773" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L773" } ], "type": { @@ -90732,7 +90732,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 772, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L772" } ] } @@ -90751,7 +90751,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 521, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L521" } ], "type": { @@ -90776,7 +90776,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 522, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L522" } ], "type": { @@ -90809,7 +90809,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 530, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L530" } ], "type": { @@ -90854,7 +90854,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 528, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L528" } ], "type": { @@ -90874,7 +90874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 522, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L522" } ] } @@ -90892,7 +90892,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 521, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L521" } ] } @@ -90909,7 +90909,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 609, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L609" } ], "type": { @@ -90950,7 +90950,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 615, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L615" } ], "type": { @@ -90987,7 +90987,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 617, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L617" } ], "type": { @@ -91008,7 +91008,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L618" } ], "type": { @@ -91041,7 +91041,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 620, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L620" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L620" } ], "type": { @@ -91061,7 +91061,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 618, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L618" } ] } @@ -91142,7 +91142,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 611, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L611" } ], "type": { @@ -91188,7 +91188,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 611, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L611" } ] } @@ -91249,7 +91249,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 613, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L613" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L613" } ], "type": { @@ -91269,7 +91269,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 609, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L609" } ] } @@ -91286,7 +91286,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 594, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L594" } ], "type": { @@ -91311,7 +91311,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 597, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L597" } ], "type": { @@ -91344,7 +91344,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 603, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L603" } ], "type": { @@ -91360,7 +91360,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 603, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L603" } ], "indexSignatures": [ @@ -91375,7 +91375,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 603, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L603" } ], "parameters": [ @@ -91421,7 +91421,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 599, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L599" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L599" } ], "type": { @@ -91450,7 +91450,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 601, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L601" } ], "type": { @@ -91479,7 +91479,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 605, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L605" } ], "type": { @@ -91499,7 +91499,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 597, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L597" } ] } @@ -91524,7 +91524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 596, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L596" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L596" } ], "type": { @@ -91546,7 +91546,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 594, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L594" } ] } @@ -91563,7 +91563,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 549, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L549" } ], "type": { @@ -91600,7 +91600,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L550" } ], "type": { @@ -91625,7 +91625,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 551, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L551" } ], "type": { @@ -91645,7 +91645,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 550, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L550" } ] } @@ -91663,7 +91663,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 549, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L549" } ] } @@ -91682,7 +91682,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 555, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L555" } ], "type": { @@ -91716,7 +91716,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 558, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L558" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L558" } ], "type": { @@ -91737,7 +91737,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 559, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L559" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L559" } ], "type": { @@ -91770,7 +91770,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 571, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L571" } ], "type": { @@ -91815,7 +91815,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 569, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L569" } ], "type": { @@ -91844,7 +91844,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L561" } ], "type": { @@ -91873,7 +91873,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L563" } ], "type": { @@ -91893,7 +91893,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L559" } ] } @@ -91911,7 +91911,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L556" } ] } @@ -91938,7 +91938,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L577" } ], "type": { @@ -91971,7 +91971,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L587" } ], "type": { @@ -92000,7 +92000,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L589" } ], "type": { @@ -92054,7 +92054,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L585" } ], "type": { @@ -92083,7 +92083,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 579, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L579" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L579" } ], "type": { @@ -92103,7 +92103,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 577, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L577" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L577" } ] } @@ -92128,7 +92128,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 576, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L576" } ], "type": { @@ -92148,7 +92148,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 574, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L574" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L574" } ] } @@ -92167,7 +92167,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 781, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L781" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L781" } ], "type": { @@ -92195,7 +92195,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 786, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L786" } ], "type": { @@ -92228,7 +92228,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 790, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L790" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L790" } ], "type": { @@ -92257,7 +92257,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 788, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L788" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L788" } ], "type": { @@ -92286,7 +92286,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 796, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L796" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L796" } ], "type": { @@ -92306,7 +92306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 786, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L786" } ] } @@ -92331,7 +92331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 784, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L784" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L784" } ], "type": { @@ -92351,7 +92351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 782, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L782" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L782" } ] } @@ -92384,7 +92384,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 801, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L801" } ], "type": { @@ -92405,7 +92405,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 803, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L803" } ], "type": { @@ -92438,7 +92438,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 807, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L807" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L807" } ], "type": { @@ -92467,7 +92467,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 805, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L805" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L805" } ], "type": { @@ -92496,7 +92496,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 813, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L813" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L813" } ], "type": { @@ -92516,7 +92516,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 803, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L803" } ] } @@ -92534,7 +92534,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 799, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L799" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L799" } ] } @@ -92553,7 +92553,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1341, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1341" } ], "type": { @@ -92586,7 +92586,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1352" } ], "type": { @@ -92619,7 +92619,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1341, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1341" } ] } @@ -92636,7 +92636,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1500, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1500" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1500" } ], "type": { @@ -92667,7 +92667,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 534, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L534" } ], "type": { @@ -92708,7 +92708,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 536, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L536" } ], "type": { @@ -92733,7 +92733,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 539, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L539" } ], "type": { @@ -92754,7 +92754,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 540, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L540" } ], "type": { @@ -92784,7 +92784,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 538, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L538" } ], "type": { @@ -92805,7 +92805,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 537, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L537" } ], "type": { @@ -92825,7 +92825,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 536, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L536" } ] } @@ -92843,7 +92843,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 535, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L535" } ] } @@ -92866,7 +92866,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 624, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L624" } ], "type": { @@ -92891,7 +92891,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L626" } ], "type": { @@ -92917,7 +92917,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L627" } ], "type": { @@ -92933,7 +92933,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L627" } ], "signatures": [ @@ -92964,7 +92964,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L626" } ] } @@ -92989,7 +92989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L625" } ], "type": { @@ -93005,7 +93005,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 625, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L625" } ], "signatures": [ @@ -93093,7 +93093,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 630, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L630" } ], "type": { @@ -93109,7 +93109,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 630, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L630" } ], "signatures": [ @@ -93205,7 +93205,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 624, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L624" } ] } @@ -93222,7 +93222,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 633, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L633" } ], "type": { @@ -93248,7 +93248,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 635, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L635" } ], "type": { @@ -93269,7 +93269,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 643, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L643" } ], "type": { @@ -93302,7 +93302,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 648, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L648" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L648" } ], "type": { @@ -93323,7 +93323,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 650, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L650" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L650" } ], "type": { @@ -93404,7 +93404,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 645, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L645" } ], "type": { @@ -93424,7 +93424,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 643, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L643" } ] } @@ -93451,7 +93451,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 641, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L641" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L641" } ], "type": { @@ -93488,7 +93488,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 638, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L638" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L638" } ], "type": { @@ -93510,7 +93510,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 634, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L634" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L634" } ] } @@ -93535,7 +93535,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 656, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L656" } ], "type": { @@ -93586,7 +93586,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 659, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L659" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L659" } ], "type": { @@ -93607,7 +93607,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 664, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L664" } ], "type": { @@ -93640,7 +93640,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 666, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L666" } ], "type": { @@ -93660,7 +93660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 664, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L664" } ] } @@ -93685,7 +93685,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 662, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L662" } ], "type": { @@ -93710,7 +93710,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 655, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L655" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L655" } ] } @@ -93729,7 +93729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 211, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L211" } ], "type": { @@ -93772,7 +93772,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 219, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L219" } ], "type": { @@ -93792,7 +93792,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 211, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L211" } ] } @@ -93821,7 +93821,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 136, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L136" } ], "typeParameters": [ @@ -93888,7 +93888,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1310, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1310" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1310" } ], "type": { @@ -93980,7 +93980,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1320" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1320" } ], "type": { @@ -94000,7 +94000,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1312, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1312" } ] } @@ -94027,7 +94027,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1585, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1585" } ], "type": { @@ -94060,7 +94060,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1587, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1587" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1587" } ], "type": { @@ -94089,7 +94089,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1589, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1589" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1589" } ], "type": { @@ -94118,7 +94118,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1595, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1595" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1595" } ], "type": { @@ -94152,7 +94152,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1591, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1591" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1591" } ], "type": { @@ -94181,7 +94181,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1593" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1593" } ], "type": { @@ -94204,7 +94204,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1585, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1585" } ] } @@ -94221,7 +94221,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 222, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -94248,7 +94248,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L223" } ], "type": { @@ -94270,7 +94270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 222, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L222" } ] } @@ -94291,7 +94291,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 711, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L711" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L711" } ], "type": { @@ -94329,7 +94329,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 120, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L120" } ], "type": { @@ -94352,7 +94352,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L122" } ], "type": { @@ -94371,7 +94371,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L121" } ], "type": { @@ -94396,7 +94396,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 120, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L120" } ] } @@ -94413,7 +94413,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 119, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L119" } ], "type": { @@ -94448,7 +94448,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 709, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L709" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L709" } ], "type": { @@ -94482,7 +94482,7 @@ "fileName": "packages/core/auth-js/src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/AuthAdminApi.ts#L3" } ], "type": { @@ -94509,7 +94509,7 @@ "fileName": "packages/core/auth-js/src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/AuthClient.ts#L3" } ], "type": { @@ -94540,7 +94540,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L6" } ], "type": { @@ -94567,7 +94567,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L10" } ], "type": { @@ -94588,7 +94588,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L6" } ] } @@ -94608,7 +94608,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1499, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1499" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1499" } ], "type": { @@ -94645,7 +94645,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 61, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L61" } ], "signatures": [ @@ -94660,7 +94660,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 61, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L61" } ], "parameters": [ @@ -94701,7 +94701,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L36" } ], "signatures": [ @@ -94716,7 +94716,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L36" } ], "parameters": [ @@ -94757,7 +94757,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 192, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L192" } ], "signatures": [ @@ -94772,7 +94772,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 192, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L192" } ], "parameters": [ @@ -94813,7 +94813,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 242, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L242" } ], "signatures": [ @@ -94828,7 +94828,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 242, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L242" } ], "parameters": [ @@ -94869,7 +94869,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 126, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L126" } ], "signatures": [ @@ -94884,7 +94884,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 126, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L126" } ], "parameters": [ @@ -94925,7 +94925,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L274" } ], "signatures": [ @@ -94940,7 +94940,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L274" } ], "parameters": [ @@ -94981,7 +94981,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L96" } ], "signatures": [ @@ -95057,7 +95057,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L96" } ], "typeParameters": [ @@ -95143,7 +95143,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L99" } ], "signatures": [ @@ -95158,7 +95158,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L99" } ], "type": { @@ -95217,7 +95217,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 214, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L214" } ], "signatures": [ @@ -95260,7 +95260,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 214, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L214" } ], "typeParameters": [ @@ -95346,7 +95346,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 217, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L217" } ], "signatures": [ @@ -95361,7 +95361,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 217, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L217" } ], "type": { @@ -100470,7 +100470,7 @@ "flags": {}, "children": [ { - "id": 705, + "id": 726, "name": "PostgrestBuilder", "variant": "declaration", "kind": 128, @@ -100479,7 +100479,7 @@ }, "children": [ { - "id": 706, + "id": 727, "name": "constructor", "variant": "declaration", "kind": 512, @@ -100489,12 +100489,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "signatures": [ { - "id": 707, + "id": 728, "name": "PostgrestBuilder", "variant": "signature", "kind": 16384, @@ -100523,32 +100523,32 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "typeParameters": [ { - "id": 708, + "id": 729, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 709, + "id": 730, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 710, + "id": 731, "name": "ThrowOnError", "variant": "typeParam", "kind": 131072, @@ -100565,7 +100565,7 @@ ], "parameters": [ { - "id": 711, + "id": 732, "name": "builder", "variant": "param", "kind": 32768, @@ -100573,14 +100573,14 @@ "type": { "type": "reflection", "declaration": { - "id": 712, + "id": 733, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 717, + "id": 738, "name": "body", "variant": "declaration", "kind": 1024, @@ -100592,7 +100592,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 49, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" } ], "type": { @@ -100601,7 +100601,7 @@ } }, { - "id": 720, + "id": 741, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -100613,13 +100613,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 52, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" } ], "type": { "type": "reflection", "declaration": { - "id": 721, + "id": 742, "name": "__type", "variant": "declaration", "kind": 65536, @@ -100638,7 +100638,7 @@ ], "signatures": [ { - "id": 722, + "id": 743, "name": "__type", "variant": "signature", "kind": 4096, @@ -100660,7 +100660,7 @@ ], "parameters": [ { - "id": 723, + "id": 744, "name": "input", "variant": "param", "kind": 32768, @@ -100690,7 +100690,7 @@ } }, { - "id": 724, + "id": 745, "name": "init", "variant": "param", "kind": 32768, @@ -100730,7 +100730,7 @@ } }, { - "id": 725, + "id": 746, "name": "__type", "variant": "signature", "kind": 4096, @@ -100752,7 +100752,7 @@ ], "parameters": [ { - "id": 726, + "id": 747, "name": "input", "variant": "param", "kind": 32768, @@ -100786,7 +100786,7 @@ } }, { - "id": 727, + "id": 748, "name": "init", "variant": "param", "kind": 32768, @@ -100830,7 +100830,7 @@ } }, { - "id": 715, + "id": 736, "name": "headers", "variant": "declaration", "kind": 1024, @@ -100840,7 +100840,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 47, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" } ], "type": { @@ -100854,7 +100854,7 @@ } }, { - "id": 728, + "id": 749, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -100866,7 +100866,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 53, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" } ], "type": { @@ -100875,7 +100875,7 @@ } }, { - "id": 713, + "id": 734, "name": "method", "variant": "declaration", "kind": 1024, @@ -100885,7 +100885,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 45, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" } ], "type": { @@ -100915,7 +100915,7 @@ } }, { - "id": 716, + "id": 737, "name": "schema", "variant": "declaration", "kind": 1024, @@ -100927,7 +100927,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 48, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" } ], "type": { @@ -100936,7 +100936,7 @@ } }, { - "id": 718, + "id": 739, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -100948,7 +100948,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 50, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" } ], "type": { @@ -100957,7 +100957,7 @@ } }, { - "id": 719, + "id": 740, "name": "signal", "variant": "declaration", "kind": 1024, @@ -100969,7 +100969,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 51, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" } ], "type": { @@ -100983,7 +100983,7 @@ } }, { - "id": 714, + "id": 735, "name": "url", "variant": "declaration", "kind": 1024, @@ -100993,7 +100993,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" } ], "type": { @@ -101010,7 +101010,7 @@ "groups": [ { "title": "Properties", - "children": [717, 720, 715, 728, 713, 716, 718, 719, 714] + "children": [738, 741, 736, 749, 734, 737, 739, 740, 735] } ], "sources": [ @@ -101018,7 +101018,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ] } @@ -101027,11 +101027,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -101039,7 +101039,7 @@ }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -101047,7 +101047,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -101062,7 +101062,7 @@ ] }, { - "id": 733, + "id": 754, "name": "body", "variant": "declaration", "kind": 1024, @@ -101075,7 +101075,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 25, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" } ], "type": { @@ -101084,7 +101084,7 @@ } }, { - "id": 736, + "id": 757, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -101096,13 +101096,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" } ], "type": { "type": "reflection", "declaration": { - "id": 737, + "id": 758, "name": "__type", "variant": "declaration", "kind": 65536, @@ -101121,7 +101121,7 @@ ], "signatures": [ { - "id": 738, + "id": 759, "name": "__type", "variant": "signature", "kind": 4096, @@ -101143,7 +101143,7 @@ ], "parameters": [ { - "id": 739, + "id": 760, "name": "input", "variant": "param", "kind": 32768, @@ -101173,7 +101173,7 @@ } }, { - "id": 740, + "id": 761, "name": "init", "variant": "param", "kind": 32768, @@ -101213,7 +101213,7 @@ } }, { - "id": 741, + "id": 762, "name": "__type", "variant": "signature", "kind": 4096, @@ -101235,7 +101235,7 @@ ], "parameters": [ { - "id": 742, + "id": 763, "name": "input", "variant": "param", "kind": 32768, @@ -101269,7 +101269,7 @@ } }, { - "id": 743, + "id": 764, "name": "init", "variant": "param", "kind": 32768, @@ -101313,7 +101313,7 @@ } }, { - "id": 731, + "id": 752, "name": "headers", "variant": "declaration", "kind": 1024, @@ -101325,7 +101325,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 23, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" } ], "type": { @@ -101339,7 +101339,7 @@ } }, { - "id": 744, + "id": 765, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -101351,7 +101351,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" } ], "type": { @@ -101360,7 +101360,7 @@ } }, { - "id": 729, + "id": 750, "name": "method", "variant": "declaration", "kind": 1024, @@ -101372,7 +101372,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" } ], "type": { @@ -101402,7 +101402,7 @@ } }, { - "id": 732, + "id": 753, "name": "schema", "variant": "declaration", "kind": 1024, @@ -101415,7 +101415,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" } ], "type": { @@ -101424,7 +101424,7 @@ } }, { - "id": 734, + "id": 755, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -101436,7 +101436,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 26, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" } ], "type": { @@ -101446,7 +101446,7 @@ "defaultValue": "false" }, { - "id": 735, + "id": 756, "name": "signal", "variant": "declaration", "kind": 1024, @@ -101459,7 +101459,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 27, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" } ], "type": { @@ -101473,7 +101473,7 @@ } }, { - "id": 730, + "id": 751, "name": "url", "variant": "declaration", "kind": 1024, @@ -101485,7 +101485,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" } ], "type": { @@ -101499,7 +101499,7 @@ } }, { - "id": 766, + "id": 787, "name": "overrideTypes", "variant": "declaration", "kind": 2048, @@ -101509,12 +101509,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "signatures": [ { - "id": 767, + "id": 788, "name": "overrideTypes", "variant": "signature", "kind": 4096, @@ -101560,12 +101560,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "typeParameters": [ { - "id": 768, + "id": 789, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -101580,7 +101580,7 @@ } }, { - "id": 769, + "id": 790, "name": "Options", "variant": "typeParam", "kind": 131072, @@ -101596,14 +101596,14 @@ "type": { "type": "reflection", "declaration": { - "id": 770, + "id": 791, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 771, + "id": 792, "name": "merge", "variant": "declaration", "kind": 1024, @@ -101615,7 +101615,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -101627,7 +101627,7 @@ "groups": [ { "title": "Properties", - "children": [771] + "children": [792] } ], "sources": [ @@ -101635,7 +101635,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -101643,14 +101643,14 @@ "default": { "type": "reflection", "declaration": { - "id": 772, + "id": 793, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 773, + "id": 794, "name": "merge", "variant": "declaration", "kind": 1024, @@ -101660,7 +101660,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -101672,7 +101672,7 @@ "groups": [ { "title": "Properties", - "children": [773] + "children": [794] } ], "sources": [ @@ -101680,7 +101680,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -101689,11 +101689,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -101710,7 +101710,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -101718,7 +101718,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -101750,7 +101750,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -101780,7 +101780,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -101794,7 +101794,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -101806,7 +101806,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -101826,14 +101826,14 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -101841,7 +101841,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -101860,7 +101860,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -101868,7 +101868,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -101880,7 +101880,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -101895,7 +101895,7 @@ ] }, { - "id": 763, + "id": 784, "name": "returns", "variant": "declaration", "kind": 2048, @@ -101905,12 +101905,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" } ], "signatures": [ { - "id": 764, + "id": 785, "name": "returns", "variant": "signature", "kind": 4096, @@ -101947,12 +101947,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" } ], "typeParameters": [ { - "id": 765, + "id": 786, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -101969,11 +101969,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -101988,7 +101988,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -101996,7 +101996,7 @@ }, { "type": "reference", - "target": 765, + "target": 786, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -102007,7 +102007,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -102022,7 +102022,7 @@ ] }, { - "id": 747, + "id": 768, "name": "setHeader", "variant": "declaration", "kind": 2048, @@ -102032,12 +102032,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "signatures": [ { - "id": 748, + "id": 769, "name": "setHeader", "variant": "signature", "kind": 4096, @@ -102055,12 +102055,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "parameters": [ { - "id": 749, + "id": 770, "name": "name", "variant": "param", "kind": 32768, @@ -102071,7 +102071,7 @@ } }, { - "id": 750, + "id": 771, "name": "value", "variant": "param", "kind": 32768, @@ -102090,7 +102090,7 @@ ] }, { - "id": 751, + "id": 772, "name": "then", "variant": "declaration", "kind": 2048, @@ -102100,12 +102100,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "signatures": [ { - "id": 752, + "id": 773, "name": "then", "variant": "signature", "kind": 4096, @@ -102134,12 +102134,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "typeParameters": [ { - "id": 753, + "id": 774, "name": "TResult1", "variant": "typeParam", "kind": 131072, @@ -102148,7 +102148,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -102160,11 +102160,11 @@ }, "trueType": { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -102176,11 +102176,11 @@ }, "falseType": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -102193,7 +102193,7 @@ } }, { - "id": 754, + "id": 775, "name": "TResult2", "variant": "typeParam", "kind": 131072, @@ -102206,7 +102206,7 @@ ], "parameters": [ { - "id": 755, + "id": 776, "name": "onfulfilled", "variant": "param", "kind": 32768, @@ -102231,7 +102231,7 @@ { "type": "reflection", "declaration": { - "id": 756, + "id": 777, "name": "__type", "variant": "declaration", "kind": 65536, @@ -102241,12 +102241,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "signatures": [ { - "id": 757, + "id": 778, "name": "__type", "variant": "signature", "kind": 4096, @@ -102256,12 +102256,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "parameters": [ { - "id": 758, + "id": 779, "name": "value", "variant": "param", "kind": 32768, @@ -102270,7 +102270,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -102282,11 +102282,11 @@ }, "trueType": { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -102298,11 +102298,11 @@ }, "falseType": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -102320,7 +102320,7 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -102334,7 +102334,7 @@ "typeArguments": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -102353,7 +102353,7 @@ } }, { - "id": 759, + "id": 780, "name": "onrejected", "variant": "param", "kind": 32768, @@ -102378,7 +102378,7 @@ { "type": "reflection", "declaration": { - "id": 760, + "id": 781, "name": "__type", "variant": "declaration", "kind": 65536, @@ -102388,12 +102388,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "signatures": [ { - "id": 761, + "id": 782, "name": "__type", "variant": "signature", "kind": 4096, @@ -102403,12 +102403,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "parameters": [ { - "id": 762, + "id": 783, "name": "reason", "variant": "param", "kind": 32768, @@ -102424,7 +102424,7 @@ "types": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -102438,7 +102438,7 @@ "typeArguments": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -102469,14 +102469,14 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -102501,7 +102501,7 @@ } }, { - "id": 745, + "id": 766, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -102511,12 +102511,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "signatures": [ { - "id": 746, + "id": 767, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -102540,7 +102540,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -102548,11 +102548,11 @@ "types": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -102560,7 +102560,7 @@ }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -102568,7 +102568,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -102581,11 +102581,11 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -102593,7 +102593,7 @@ }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -102617,15 +102617,15 @@ "groups": [ { "title": "Constructors", - "children": [706] + "children": [727] }, { "title": "Properties", - "children": [733, 736, 731, 744, 729, 732, 734, 735, 730] + "children": [754, 757, 752, 765, 750, 753, 755, 756, 751] }, { "title": "Methods", - "children": [766, 763, 747, 751, 745] + "children": [787, 784, 768, 772, 766] } ], "sources": [ @@ -102633,32 +102633,32 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 12, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12" } ], "typeParameters": [ { - "id": 774, + "id": 795, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 775, + "id": 796, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 776, + "id": 797, "name": "ThrowOnError", "variant": "typeParam", "kind": 131072, @@ -102676,7 +102676,7 @@ "extendedBy": [ { "type": "reference", - "target": 546, + "target": 567, "name": "PostgrestTransformBuilder" } ], @@ -102692,7 +102692,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -102704,11 +102704,11 @@ }, "trueType": { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -102720,11 +102720,11 @@ }, "falseType": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -102767,7 +102767,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L61" } ], "signatures": [ @@ -102801,7 +102801,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L61" } ], "typeParameters": [ @@ -102824,7 +102824,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" }, @@ -102858,7 +102858,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -102884,7 +102884,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -103138,7 +103138,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 70, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L70" } ], "type": { @@ -103375,7 +103375,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 68, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L68" } ], "type": { @@ -103410,7 +103410,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 69, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L69" } ], "type": { @@ -103434,7 +103434,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 67, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L67" } ] } @@ -103499,7 +103499,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L40" } ], "type": { @@ -103726,7 +103726,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L38" } ], "type": { @@ -103752,7 +103752,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 39, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L39" } ], "type": { @@ -103775,7 +103775,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L37" } ], "type": { @@ -103814,19 +103814,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L90" } ], "signatures": [ @@ -103841,7 +103841,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L78" } ], "typeParameters": [ @@ -103940,7 +103940,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L82" } ], "typeParameters": [ @@ -104039,9 +104039,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 144, + "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L148" } ], "signatures": [ @@ -104062,9 +104062,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 144, + "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L148" } ], "typeParameters": [ @@ -104288,9 +104288,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 162, + "line": 166, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L166" } ], "type": { @@ -104338,9 +104338,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 161, + "line": 165, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L165" } ], "type": { @@ -104384,9 +104384,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 160, + "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L164" } ], "type": { @@ -104405,9 +104405,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 159, + "line": 163, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L163" } ] } @@ -104512,9 +104512,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 106, + "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L110" } ], "signatures": [ @@ -104535,9 +104535,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 106, + "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L110" } ], "typeParameters": [ @@ -104677,7 +104677,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 16, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L16" } ], "typeParameters": [ @@ -104708,7 +104708,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" }, @@ -104742,7 +104742,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -104750,7 +104750,7 @@ "name": "I", "constraint": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -104768,7 +104768,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L18" } ] } @@ -104796,7 +104796,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 22, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L22" } ] } @@ -105039,7 +105039,7 @@ ] }, { - "id": 777, + "id": 798, "name": "PostgrestError", "variant": "declaration", "kind": 128, @@ -105060,7 +105060,7 @@ }, "children": [ { - "id": 778, + "id": 799, "name": "constructor", "variant": "declaration", "kind": 512, @@ -105070,12 +105070,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "signatures": [ { - "id": 779, + "id": 800, "name": "PostgrestError", "variant": "signature", "kind": 16384, @@ -105099,12 +105099,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "parameters": [ { - "id": 780, + "id": 801, "name": "context", "variant": "param", "kind": 32768, @@ -105112,14 +105112,14 @@ "type": { "type": "reflection", "declaration": { - "id": 781, + "id": 802, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 785, + "id": 806, "name": "code", "variant": "declaration", "kind": 1024, @@ -105129,7 +105129,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 73, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -105138,7 +105138,7 @@ } }, { - "id": 783, + "id": 804, "name": "details", "variant": "declaration", "kind": 1024, @@ -105148,7 +105148,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -105157,7 +105157,7 @@ } }, { - "id": 784, + "id": 805, "name": "hint", "variant": "declaration", "kind": 1024, @@ -105167,7 +105167,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -105176,7 +105176,7 @@ } }, { - "id": 782, + "id": 803, "name": "message", "variant": "declaration", "kind": 1024, @@ -105186,7 +105186,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -105198,7 +105198,7 @@ "groups": [ { "title": "Properties", - "children": [785, 783, 784, 782] + "children": [806, 804, 805, 803] } ], "sources": [ @@ -105206,7 +105206,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ] } @@ -105215,7 +105215,7 @@ ], "type": { "type": "reference", - "target": 777, + "target": 798, "name": "PostgrestError", "package": "@supabase/postgrest-js", "qualifiedName": "default" @@ -105234,7 +105234,7 @@ } }, { - "id": 788, + "id": 809, "name": "code", "variant": "declaration", "kind": 1024, @@ -105244,7 +105244,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L9" } ], "type": { @@ -105253,7 +105253,7 @@ } }, { - "id": 786, + "id": 807, "name": "details", "variant": "declaration", "kind": 1024, @@ -105263,7 +105263,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L7" } ], "type": { @@ -105272,7 +105272,7 @@ } }, { - "id": 787, + "id": 808, "name": "hint", "variant": "declaration", "kind": 1024, @@ -105282,7 +105282,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L8" } ], "type": { @@ -105294,11 +105294,11 @@ "groups": [ { "title": "Constructors", - "children": [778] + "children": [799] }, { "title": "Properties", - "children": [788, 786, 787] + "children": [809, 807, 808] } ], "sources": [ @@ -105306,7 +105306,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 6, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L6" } ], "extendedTypes": [ @@ -105339,7 +105339,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "signatures": [ @@ -105373,7 +105373,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "typeParameters": [ @@ -105385,7 +105385,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -105502,7 +105502,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 49, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" } ], "type": { @@ -105523,7 +105523,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 52, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" } ], "type": { @@ -105750,7 +105750,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 47, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" } ], "type": { @@ -105776,7 +105776,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 53, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" } ], "type": { @@ -105795,7 +105795,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 45, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" } ], "type": { @@ -105837,7 +105837,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 48, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" } ], "type": { @@ -105858,7 +105858,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 50, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" } ], "type": { @@ -105879,7 +105879,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 51, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" } ], "type": { @@ -105903,7 +105903,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" } ], "type": { @@ -105928,7 +105928,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ] } @@ -106002,19 +106002,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 548, + "target": 569, "name": "default.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 547, + "target": 568, "name": "default.constructor" } }, { - "id": 501, + "id": 522, "name": "body", "variant": "declaration", "kind": 1024, @@ -106028,7 +106028,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 25, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" } ], "type": { @@ -106037,12 +106037,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 660, + "target": 681, "name": "default.body" } }, { - "id": 504, + "id": 525, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -106055,13 +106055,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" } ], "type": { "type": "reflection", "declaration": { - "id": 505, + "id": 526, "name": "__type", "variant": "declaration", "kind": 65536, @@ -106080,7 +106080,7 @@ ], "signatures": [ { - "id": 506, + "id": 527, "name": "__type", "variant": "signature", "kind": 4096, @@ -106102,7 +106102,7 @@ ], "parameters": [ { - "id": 507, + "id": 528, "name": "input", "variant": "param", "kind": 32768, @@ -106132,7 +106132,7 @@ } }, { - "id": 508, + "id": 529, "name": "init", "variant": "param", "kind": 32768, @@ -106172,7 +106172,7 @@ } }, { - "id": 509, + "id": 530, "name": "__type", "variant": "signature", "kind": 4096, @@ -106194,7 +106194,7 @@ ], "parameters": [ { - "id": 510, + "id": 531, "name": "input", "variant": "param", "kind": 32768, @@ -106228,7 +106228,7 @@ } }, { - "id": 511, + "id": 532, "name": "init", "variant": "param", "kind": 32768, @@ -106272,12 +106272,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 663, + "target": 684, "name": "default.fetch" } }, { - "id": 499, + "id": 520, "name": "headers", "variant": "declaration", "kind": 1024, @@ -106290,7 +106290,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 23, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" } ], "type": { @@ -106304,12 +106304,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 658, + "target": 679, "name": "default.headers" } }, { - "id": 512, + "id": 533, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -106322,7 +106322,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" } ], "type": { @@ -106331,12 +106331,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 671, + "target": 692, "name": "default.isMaybeSingle" } }, { - "id": 497, + "id": 518, "name": "method", "variant": "declaration", "kind": 1024, @@ -106349,7 +106349,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" } ], "type": { @@ -106379,12 +106379,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 656, + "target": 677, "name": "default.method" } }, { - "id": 500, + "id": 521, "name": "schema", "variant": "declaration", "kind": 1024, @@ -106398,7 +106398,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" } ], "type": { @@ -106407,12 +106407,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 659, + "target": 680, "name": "default.schema" } }, { - "id": 502, + "id": 523, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -106425,7 +106425,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 26, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" } ], "type": { @@ -106435,12 +106435,12 @@ "defaultValue": "false", "inheritedFrom": { "type": "reference", - "target": 661, + "target": 682, "name": "default.shouldThrowOnError" } }, { - "id": 503, + "id": 524, "name": "signal", "variant": "declaration", "kind": 1024, @@ -106454,7 +106454,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 27, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" } ], "type": { @@ -106468,12 +106468,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 662, + "target": 683, "name": "default.signal" } }, { - "id": 498, + "id": 519, "name": "url", "variant": "declaration", "kind": 1024, @@ -106486,7 +106486,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" } ], "type": { @@ -106500,12 +106500,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 657, + "target": 678, "name": "default.url" } }, { - "id": 466, + "id": 487, "name": "abortSignal", "variant": "declaration", "kind": 2048, @@ -106517,12 +106517,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "signatures": [ { - "id": 467, + "id": 488, "name": "abortSignal", "variant": "signature", "kind": 4096, @@ -106542,12 +106542,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "parameters": [ { - "id": 468, + "id": 489, "name": "signal", "variant": "param", "kind": 32768, @@ -106577,19 +106577,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 626, + "target": 647, "name": "default.abortSignal" } } ], "inheritedFrom": { "type": "reference", - "target": 625, + "target": 646, "name": "default.abortSignal" } }, { - "id": 310, + "id": 331, "name": "containedBy", "variant": "declaration", "kind": 2048, @@ -106643,26 +106643,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 356, + "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L409" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 360, + "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L413" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 368, + "line": 421, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L368" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L421" } ], "signatures": [ { - "id": 311, + "id": 332, "name": "containedBy", "variant": "signature", "kind": 4096, @@ -106670,14 +106670,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 356, + "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L409" } ], "typeParameters": [ { - "id": 312, + "id": 333, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -106690,21 +106690,21 @@ ], "parameters": [ { - "id": 313, + "id": 334, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 312, + "target": 333, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 314, + "id": 335, "name": "value", "variant": "param", "kind": 32768, @@ -106744,7 +106744,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 312, + "target": 333, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -106770,7 +106770,7 @@ } }, { - "id": 315, + "id": 336, "name": "containedBy", "variant": "signature", "kind": 4096, @@ -106778,14 +106778,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 360, + "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L413" } ], "parameters": [ { - "id": 316, + "id": 337, "name": "column", "variant": "param", "kind": 32768, @@ -106796,7 +106796,7 @@ } }, { - "id": 317, + "id": 338, "name": "value", "variant": "param", "kind": 32768, @@ -106850,7 +106850,7 @@ ] }, { - "id": 302, + "id": 323, "name": "contains", "variant": "declaration", "kind": 2048, @@ -106904,26 +106904,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 329, + "line": 382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 333, + "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L386" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 341, + "line": 394, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L394" } ], "signatures": [ { - "id": 303, + "id": 324, "name": "contains", "variant": "signature", "kind": 4096, @@ -106931,14 +106931,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 329, + "line": 382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" } ], "typeParameters": [ { - "id": 304, + "id": 325, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -106951,21 +106951,21 @@ ], "parameters": [ { - "id": 305, + "id": 326, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 304, + "target": 325, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 306, + "id": 327, "name": "value", "variant": "param", "kind": 32768, @@ -107005,7 +107005,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 304, + "target": 325, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -107031,7 +107031,7 @@ } }, { - "id": 307, + "id": 328, "name": "contains", "variant": "signature", "kind": 4096, @@ -107039,14 +107039,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 333, + "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L386" } ], "parameters": [ { - "id": 308, + "id": 329, "name": "column", "variant": "param", "kind": 32768, @@ -107057,7 +107057,7 @@ } }, { - "id": 309, + "id": 330, "name": "value", "variant": "param", "kind": 32768, @@ -107111,7 +107111,7 @@ ] }, { - "id": 475, + "id": 496, "name": "csv", "variant": "declaration", "kind": 2048, @@ -107123,12 +107123,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "signatures": [ { - "id": 476, + "id": 497, "name": "csv", "variant": "signature", "kind": 4096, @@ -107156,12 +107156,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -107182,14 +107182,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 635, + "target": 656, "name": "default.csv" } } ], "inheritedFrom": { "type": "reference", - "target": 634, + "target": 655, "name": "default.csv" } }, @@ -107202,9 +107202,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 101, + "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104" } ], "signatures": [ @@ -107257,9 +107257,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 101, + "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104" } ], "typeParameters": [ @@ -107445,7 +107445,7 @@ ] }, { - "id": 479, + "id": 500, "name": "explain", "variant": "declaration", "kind": 2048, @@ -107457,12 +107457,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "signatures": [ { - "id": 480, + "id": 501, "name": "explain", "variant": "signature", "kind": 4096, @@ -107490,12 +107490,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "parameters": [ { - "id": 481, + "id": 502, "name": "options", "variant": "param", "kind": 32768, @@ -107511,14 +107511,14 @@ "type": { "type": "reflection", "declaration": { - "id": 482, + "id": 503, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 483, + "id": 504, "name": "analyze", "variant": "declaration", "kind": 1024, @@ -107546,7 +107546,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 288, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" } ], "type": { @@ -107556,7 +107556,7 @@ "defaultValue": "false" }, { - "id": 486, + "id": 507, "name": "buffers", "variant": "declaration", "kind": 1024, @@ -107584,7 +107584,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 291, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" } ], "type": { @@ -107594,7 +107594,7 @@ "defaultValue": "false" }, { - "id": 488, + "id": 509, "name": "format", "variant": "declaration", "kind": 1024, @@ -107626,7 +107626,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 293, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" } ], "type": { @@ -107645,7 +107645,7 @@ "defaultValue": "'text'" }, { - "id": 485, + "id": 506, "name": "settings", "variant": "declaration", "kind": 1024, @@ -107673,7 +107673,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 290, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" } ], "type": { @@ -107683,7 +107683,7 @@ "defaultValue": "false" }, { - "id": 484, + "id": 505, "name": "verbose", "variant": "declaration", "kind": 1024, @@ -107719,7 +107719,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 289, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" } ], "type": { @@ -107729,7 +107729,7 @@ "defaultValue": "false" }, { - "id": 487, + "id": 508, "name": "wal", "variant": "declaration", "kind": 1024, @@ -107757,7 +107757,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 292, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" } ], "type": { @@ -107770,7 +107770,7 @@ "groups": [ { "title": "Properties", - "children": [483, 486, 488, 485, 484, 487] + "children": [504, 507, 509, 506, 505, 508] } ], "sources": [ @@ -107778,7 +107778,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 287, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" } ] } @@ -107791,7 +107791,7 @@ "types": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -107816,7 +107816,7 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -107861,19 +107861,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 639, + "target": 660, "name": "default.explain" } } ], "inheritedFrom": { "type": "reference", - "target": 638, + "target": 659, "name": "default.explain" } }, { - "id": 405, + "id": 426, "name": "filter", "variant": "declaration", "kind": 2048, @@ -107937,26 +107937,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 583, + "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L636" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 588, + "line": 641, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L641" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 602, + "line": 655, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L602" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L655" } ], "signatures": [ { - "id": 406, + "id": 427, "name": "filter", "variant": "signature", "kind": 4096, @@ -107964,14 +107964,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 583, + "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L636" } ], "typeParameters": [ { - "id": 407, + "id": 428, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -107984,21 +107984,21 @@ ], "parameters": [ { - "id": 408, + "id": 429, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 407, + "target": 428, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 409, + "id": 430, "name": "operator", "variant": "param", "kind": 32768, @@ -108015,6 +108015,10 @@ "name": "FilterOperator", "package": "@supabase/postgrest-js" }, + { + "type": "literal", + "value": "not.match" + }, { "type": "literal", "value": "not.eq" @@ -108051,6 +108055,10 @@ "type": "literal", "value": "not.is" }, + { + "type": "literal", + "value": "not.isdistinct" + }, { "type": "literal", "value": "not.in" @@ -108102,12 +108110,16 @@ { "type": "literal", "value": "not.wfts" + }, + { + "type": "literal", + "value": "not.imatch" } ] } }, { - "id": 410, + "id": 431, "name": "value", "variant": "param", "kind": 32768, @@ -108124,7 +108136,7 @@ } }, { - "id": 411, + "id": 432, "name": "filter", "variant": "signature", "kind": 4096, @@ -108132,14 +108144,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 588, + "line": 641, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L641" } ], "parameters": [ { - "id": 412, + "id": 433, "name": "column", "variant": "param", "kind": 32768, @@ -108150,7 +108162,7 @@ } }, { - "id": 413, + "id": 434, "name": "operator", "variant": "param", "kind": 32768, @@ -108161,7 +108173,7 @@ } }, { - "id": 414, + "id": 435, "name": "value", "variant": "param", "kind": 32768, @@ -108180,7 +108192,7 @@ ] }, { - "id": 477, + "id": 498, "name": "geojson", "variant": "declaration", "kind": 2048, @@ -108192,12 +108204,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "signatures": [ { - "id": 478, + "id": 499, "name": "geojson", "variant": "signature", "kind": 4096, @@ -108225,12 +108237,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -108266,14 +108278,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 637, + "target": 658, "name": "default.geojson" } } ], "inheritedFrom": { "type": "reference", - "target": 636, + "target": 657, "name": "default.geojson" } }, @@ -108332,21 +108344,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 134, + "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 135, + "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 142, + "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145" } ], "signatures": [ @@ -108359,9 +108371,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 134, + "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137" } ], "typeParameters": [ @@ -108432,9 +108444,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 135, + "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138" } ], "parameters": [ @@ -108523,21 +108535,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 147, + "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 148, + "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 155, + "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" } ], "signatures": [ @@ -108550,9 +108562,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 147, + "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150" } ], "typeParameters": [ @@ -108623,9 +108635,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 148, + "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151" } ], "parameters": [ @@ -108714,21 +108726,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 231, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 232, + "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 239, + "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242" } ], "signatures": [ @@ -108741,9 +108753,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 231, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234" } ], "typeParameters": [ @@ -108800,9 +108812,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 232, + "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235" } ], "parameters": [ @@ -108891,21 +108903,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 244, + "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 248, + "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 255, + "line": 258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258" } ], "signatures": [ @@ -108918,9 +108930,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 244, + "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247" } ], "typeParameters": [ @@ -108984,9 +108996,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 248, + "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251" } ], "parameters": [ @@ -109082,21 +109094,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 260, + "line": 263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 264, + "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 271, + "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274" } ], "signatures": [ @@ -109109,9 +109121,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 260, + "line": 263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263" } ], "typeParameters": [ @@ -109175,9 +109187,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 264, + "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267" } ], "parameters": [ @@ -109219,7 +109231,7 @@ ] }, { - "id": 297, + "id": 318, "name": "in", "variant": "declaration", "kind": 2048, @@ -109227,14 +109239,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 304, + "line": 357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357" } ], "signatures": [ { - "id": 298, + "id": 319, "name": "in", "variant": "signature", "kind": 4096, @@ -109266,14 +109278,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 304, + "line": 357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357" } ], "typeParameters": [ { - "id": 299, + "id": 320, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -109286,7 +109298,7 @@ ], "parameters": [ { - "id": 300, + "id": 321, "name": "column", "variant": "param", "kind": 32768, @@ -109301,14 +109313,14 @@ }, "type": { "type": "reference", - "target": 299, + "target": 320, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 301, + "id": 322, "name": "values", "variant": "param", "kind": 32768, @@ -109353,7 +109365,7 @@ }, { "type": "reference", - "target": 299, + "target": 320, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -109397,7 +109409,7 @@ }, { "type": "reference", - "target": 299, + "target": 320, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -109444,7 +109456,7 @@ ] }, { - "id": 289, + "id": 305, "name": "is", "variant": "declaration", "kind": 2048, @@ -109554,26 +109566,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 276, + "line": 307, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 280, + "line": 311, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 293, + "line": 324, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L324" } ], "signatures": [ { - "id": 290, + "id": 306, "name": "is", "variant": "signature", "kind": 4096, @@ -109581,14 +109593,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 276, + "line": 307, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307" } ], "typeParameters": [ { - "id": 291, + "id": 307, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -109601,21 +109613,21 @@ ], "parameters": [ { - "id": 292, + "id": 308, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 291, + "target": 307, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 293, + "id": 309, "name": "value", "variant": "param", "kind": 32768, @@ -109627,7 +109639,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 291, + "target": 307, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -109664,7 +109676,7 @@ } }, { - "id": 294, + "id": 310, "name": "is", "variant": "signature", "kind": 4096, @@ -109672,14 +109684,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 280, + "line": 311, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311" } ], "parameters": [ { - "id": 295, + "id": 311, "name": "column", "variant": "param", "kind": 32768, @@ -109690,7 +109702,7 @@ } }, { - "id": 296, + "id": 312, "name": "value", "variant": "param", "kind": 32768, @@ -109717,6 +109729,256 @@ } ] }, + { + "id": 313, + "name": "isDistinct", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 339, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339" + } + ], + "signatures": [ + { + "id": 314, + "name": "isDistinct", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " IS DISTINCT FROM " + }, + { + "kind": "code", + "text": "`value`" + }, + { + "kind": "text", + "text": ".\n\nUnlike " + }, + { + "kind": "code", + "text": "`.neq()`" + }, + { + "kind": "text", + "text": ", this treats " + }, + { + "kind": "code", + "text": "`NULL`" + }, + { + "kind": "text", + "text": " as a comparable value. Two " + }, + { + "kind": "code", + "text": "`NULL`" + }, + { + "kind": "text", + "text": " values\nare considered equal (not distinct), and comparing " + }, + { + "kind": "code", + "text": "`NULL`" + }, + { + "kind": "text", + "text": " with any non-NULL\nvalue returns true (distinct)." + } + ] + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 339, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339" + } + ], + "typeParameters": [ + { + "id": 315, + "name": "ColumnName", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 316, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, + "type": { + "type": "reference", + "target": 315, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + }, + { + "id": 317, + "name": "value", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value to filter with" + } + ] + }, + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolveFilterValue" + }, + "typeArguments": [ + { + "type": "reference", + "target": 174, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 175, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 315, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "ResolveFilterValue", + "package": "@supabase/postgrest-js" + }, + "extendsType": { + "type": "intrinsic", + "name": "never" + }, + "trueType": { + "type": "intrinsic", + "name": "unknown" + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolveFilterValue" + }, + "typeArguments": [ + { + "type": "reference", + "target": 174, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 175, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 315, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "ResolveFilterValue", + "package": "@supabase/postgrest-js" + }, + "extendsType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolvedFilterValue" + }, + "name": "ResolvedFilterValue", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + }, + "trueType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolvedFilterValue" + }, + "name": "ResolvedFilterValue", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + } + ] + }, { "id": 241, "name": "like", @@ -109772,21 +110034,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 186, + "line": 189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 187, + "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 194, + "line": 197, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197" } ], "signatures": [ @@ -109799,9 +110061,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 186, + "line": 189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189" } ], "typeParameters": [ @@ -109858,9 +110120,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 187, + "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190" } ], "parameters": [ @@ -109949,21 +110211,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 199, + "line": 202, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 203, + "line": 206, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 210, + "line": 213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213" } ], "signatures": [ @@ -109976,9 +110238,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 199, + "line": 202, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202" } ], "typeParameters": [ @@ -110042,9 +110304,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 203, + "line": 206, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206" } ], "parameters": [ @@ -110140,21 +110402,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 215, + "line": 218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 219, + "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 226, + "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229" } ], "signatures": [ @@ -110167,9 +110429,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 215, + "line": 218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218" } ], "typeParameters": [ @@ -110233,9 +110495,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 219, + "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" } ], "parameters": [ @@ -110277,7 +110539,7 @@ ] }, { - "id": 451, + "id": 472, "name": "limit", "variant": "declaration", "kind": 2048, @@ -110289,12 +110551,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "signatures": [ { - "id": 452, + "id": 473, "name": "limit", "variant": "signature", "kind": 4096, @@ -110322,12 +110584,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "parameters": [ { - "id": 453, + "id": 474, "name": "count", "variant": "param", "kind": 32768, @@ -110346,7 +110608,7 @@ } }, { - "id": 454, + "id": 475, "name": "options", "variant": "param", "kind": 32768, @@ -110362,14 +110624,14 @@ "type": { "type": "reflection", "declaration": { - "id": 455, + "id": 476, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 456, + "id": 477, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -110397,7 +110659,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -110406,7 +110668,7 @@ } }, { - "id": 457, + "id": 478, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -110426,7 +110688,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -110439,7 +110701,7 @@ "groups": [ { "title": "Properties", - "children": [456, 457] + "children": [477, 478] } ], "sources": [ @@ -110447,7 +110709,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ] } @@ -110461,14 +110723,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 611, + "target": 632, "name": "default.limit" } } ], "inheritedFrom": { "type": "reference", - "target": 610, + "target": 631, "name": "default.limit" } }, @@ -110527,21 +110789,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 160, + "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 161, + "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 168, + "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171" } ], "signatures": [ @@ -110554,9 +110816,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 160, + "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163" } ], "typeParameters": [ @@ -110627,9 +110889,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 161, + "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164" } ], "parameters": [ @@ -110718,21 +110980,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 173, + "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 174, + "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 181, + "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184" } ], "signatures": [ @@ -110745,9 +111007,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 173, + "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176" } ], "typeParameters": [ @@ -110818,9 +111080,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 174, + "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177" } ], "parameters": [ @@ -110855,7 +111117,7 @@ ] }, { - "id": 382, + "id": 403, "name": "match", "variant": "declaration", "kind": 2048, @@ -110899,26 +111161,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 516, + "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L569" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 517, + "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L570" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 525, + "line": 578, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L578" } ], "signatures": [ { - "id": 383, + "id": 404, "name": "match", "variant": "signature", "kind": 4096, @@ -110926,14 +111188,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 516, + "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L569" } ], "typeParameters": [ { - "id": 384, + "id": 405, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -110946,7 +111208,7 @@ ], "parameters": [ { - "id": 385, + "id": 406, "name": "query", "variant": "param", "kind": 32768, @@ -110960,7 +111222,7 @@ "typeArguments": [ { "type": "reference", - "target": 384, + "target": 405, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -110969,7 +111231,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 384, + "target": 405, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -110995,7 +111257,7 @@ } }, { - "id": 386, + "id": 407, "name": "match", "variant": "signature", "kind": 4096, @@ -111003,14 +111265,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 517, + "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L570" } ], "parameters": [ { - "id": 387, + "id": 408, "name": "query", "variant": "param", "kind": 32768, @@ -111044,7 +111306,7 @@ ] }, { - "id": 494, + "id": 515, "name": "maxAffected", "variant": "declaration", "kind": 2048, @@ -111056,12 +111318,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "signatures": [ { - "id": 495, + "id": 516, "name": "maxAffected", "variant": "signature", "kind": 4096, @@ -111081,12 +111343,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "parameters": [ { - "id": 496, + "id": 517, "name": "value", "variant": "param", "kind": 32768, @@ -111263,19 +111525,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 654, + "target": 675, "name": "default.maxAffected" } } ], "inheritedFrom": { "type": "reference", - "target": 653, + "target": 674, "name": "default.maxAffected" } }, { - "id": 472, + "id": 493, "name": "maybeSingle", "variant": "declaration", "kind": 2048, @@ -111287,12 +111549,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "signatures": [ { - "id": 473, + "id": 494, "name": "maybeSingle", "variant": "signature", "kind": 4096, @@ -111328,12 +111590,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "typeParameters": [ { - "id": 474, + "id": 495, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -111380,7 +111642,7 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -111399,7 +111661,7 @@ }, { "type": "reference", - "target": 474, + "target": 495, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -111413,14 +111675,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 632, + "target": 653, "name": "default.maybeSingle" } } ], "inheritedFrom": { "type": "reference", - "target": 631, + "target": 652, "name": "default.maybeSingle" } }, @@ -111433,9 +111695,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 122, + "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125" } ], "signatures": [ @@ -111472,9 +111734,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 122, + "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125" } ], "typeParameters": [ @@ -111643,7 +111905,7 @@ ] }, { - "id": 388, + "id": 409, "name": "not", "variant": "declaration", "kind": 2048, @@ -111707,26 +111969,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 532, + "line": 585, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L585" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 537, + "line": 590, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L590" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 551, + "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L604" } ], "signatures": [ { - "id": 389, + "id": 410, "name": "not", "variant": "signature", "kind": 4096, @@ -111734,14 +111996,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 532, + "line": 585, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L585" } ], "typeParameters": [ { - "id": 390, + "id": 411, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -111754,21 +112016,21 @@ ], "parameters": [ { - "id": 391, + "id": 412, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 390, + "target": 411, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 392, + "id": 413, "name": "operator", "variant": "param", "kind": 32768, @@ -111784,7 +112046,7 @@ } }, { - "id": 393, + "id": 414, "name": "value", "variant": "param", "kind": 32768, @@ -111793,7 +112055,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 390, + "target": 411, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -111815,7 +112077,7 @@ } }, { - "id": 394, + "id": 415, "name": "not", "variant": "signature", "kind": 4096, @@ -111823,14 +112085,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 537, + "line": 590, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L590" } ], "parameters": [ { - "id": 395, + "id": 416, "name": "column", "variant": "param", "kind": 32768, @@ -111841,7 +112103,7 @@ } }, { - "id": 396, + "id": 417, "name": "operator", "variant": "param", "kind": 32768, @@ -111852,7 +112114,7 @@ } }, { - "id": 397, + "id": 418, "name": "value", "variant": "param", "kind": 32768, @@ -111871,7 +112133,7 @@ ] }, { - "id": 398, + "id": 419, "name": "or", "variant": "declaration", "kind": 2048, @@ -111879,14 +112141,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 571, + "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "signatures": [ { - "id": 399, + "id": 420, "name": "or", "variant": "signature", "kind": 4096, @@ -111918,14 +112180,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 571, + "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "parameters": [ { - "id": 400, + "id": 421, "name": "filters", "variant": "param", "kind": 32768, @@ -111944,7 +112206,7 @@ } }, { - "id": 401, + "id": 422, "name": "options", "variant": "param", "kind": 32768, @@ -111960,14 +112222,14 @@ "type": { "type": "reflection", "declaration": { - "id": 402, + "id": 423, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 403, + "id": 424, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -111993,9 +112255,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 576, + "line": 629, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L629" } ], "type": { @@ -112004,7 +112266,7 @@ } }, { - "id": 404, + "id": 425, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -112022,9 +112284,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 576, + "line": 629, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L629" } ], "type": { @@ -112037,15 +112299,15 @@ "groups": [ { "title": "Properties", - "children": [403, 404] + "children": [424, 425] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 576, + "line": 629, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L629" } ] } @@ -112061,7 +112323,7 @@ ] }, { - "id": 420, + "id": 441, "name": "order", "variant": "declaration", "kind": 2048, @@ -112207,36 +112469,36 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "signatures": [ { - "id": 421, + "id": 442, "name": "order", "variant": "signature", "kind": 4096, @@ -112248,12 +112510,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" } ], "typeParameters": [ { - "id": 422, + "id": 443, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -112266,21 +112528,21 @@ ], "parameters": [ { - "id": 423, + "id": 444, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 422, + "target": 443, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 424, + "id": 445, "name": "options", "variant": "param", "kind": 32768, @@ -112290,14 +112552,14 @@ "type": { "type": "reflection", "declaration": { - "id": 425, + "id": 446, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 426, + "id": 447, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -112309,7 +112571,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -112318,7 +112580,7 @@ } }, { - "id": 427, + "id": 448, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -112330,7 +112592,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -112339,7 +112601,7 @@ } }, { - "id": 428, + "id": 449, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -112351,7 +112613,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -112363,7 +112625,7 @@ "groups": [ { "title": "Properties", - "children": [426, 427, 428] + "children": [447, 448, 449] } ], "sources": [ @@ -112371,7 +112633,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ] } @@ -112384,12 +112646,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 580, + "target": 601, "name": "default.order" } }, { - "id": 429, + "id": 450, "name": "order", "variant": "signature", "kind": 4096, @@ -112401,12 +112663,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" } ], "parameters": [ { - "id": 430, + "id": 451, "name": "column", "variant": "param", "kind": 32768, @@ -112417,7 +112679,7 @@ } }, { - "id": 431, + "id": 452, "name": "options", "variant": "param", "kind": 32768, @@ -112427,14 +112689,14 @@ "type": { "type": "reflection", "declaration": { - "id": 432, + "id": 453, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 433, + "id": 454, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -112446,7 +112708,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -112455,7 +112717,7 @@ } }, { - "id": 434, + "id": 455, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -112467,7 +112729,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -112476,7 +112738,7 @@ } }, { - "id": 435, + "id": 456, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -112488,7 +112750,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -112500,7 +112762,7 @@ "groups": [ { "title": "Properties", - "children": [433, 434, 435] + "children": [454, 455, 456] } ], "sources": [ @@ -112508,7 +112770,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ] } @@ -112521,12 +112783,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 588, + "target": 609, "name": "default.order" } }, { - "id": 436, + "id": 457, "name": "order", "variant": "signature", "kind": 4096, @@ -112564,12 +112826,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" } ], "typeParameters": [ { - "id": 437, + "id": 458, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -112582,21 +112844,21 @@ ], "parameters": [ { - "id": 438, + "id": 459, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 437, + "target": 458, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 439, + "id": 460, "name": "options", "variant": "param", "kind": 32768, @@ -112606,14 +112868,14 @@ "type": { "type": "reflection", "declaration": { - "id": 440, + "id": 461, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 441, + "id": 462, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -112625,7 +112887,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -112634,7 +112896,7 @@ } }, { - "id": 443, + "id": 464, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -112646,7 +112908,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -112655,7 +112917,7 @@ } }, { - "id": 442, + "id": 463, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -112667,7 +112929,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -112679,7 +112941,7 @@ "groups": [ { "title": "Properties", - "children": [441, 443, 442] + "children": [462, 464, 463] } ], "sources": [ @@ -112687,7 +112949,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ] } @@ -112700,12 +112962,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 595, + "target": 616, "name": "default.order" } }, { - "id": 444, + "id": 465, "name": "order", "variant": "signature", "kind": 4096, @@ -112743,12 +113005,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" } ], "parameters": [ { - "id": 445, + "id": 466, "name": "column", "variant": "param", "kind": 32768, @@ -112759,7 +113021,7 @@ } }, { - "id": 446, + "id": 467, "name": "options", "variant": "param", "kind": 32768, @@ -112769,14 +113031,14 @@ "type": { "type": "reflection", "declaration": { - "id": 447, + "id": 468, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 448, + "id": 469, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -112788,7 +113050,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -112797,7 +113059,7 @@ } }, { - "id": 450, + "id": 471, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -112809,7 +113071,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -112818,7 +113080,7 @@ } }, { - "id": 449, + "id": 470, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -112830,7 +113092,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -112842,7 +113104,7 @@ "groups": [ { "title": "Properties", - "children": [448, 450, 449] + "children": [469, 471, 470] } ], "sources": [ @@ -112850,7 +113112,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ] } @@ -112863,19 +113125,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 603, + "target": 624, "name": "default.order" } } ], "inheritedFrom": { "type": "reference", - "target": 579, + "target": 600, "name": "default.order" } }, { - "id": 358, + "id": 379, "name": "overlaps", "variant": "declaration", "kind": 2048, @@ -112929,26 +113191,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 455, + "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L508" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 459, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 467, + "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" } ], "signatures": [ { - "id": 359, + "id": 380, "name": "overlaps", "variant": "signature", "kind": 4096, @@ -112956,14 +113218,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 455, + "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L508" } ], "typeParameters": [ { - "id": 360, + "id": 381, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -112976,21 +113238,21 @@ ], "parameters": [ { - "id": 361, + "id": 382, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 360, + "target": 381, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 362, + "id": 383, "name": "value", "variant": "param", "kind": 32768, @@ -113011,7 +113273,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 360, + "target": 381, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -113037,7 +113299,7 @@ } }, { - "id": 363, + "id": 384, "name": "overlaps", "variant": "signature", "kind": 4096, @@ -113045,14 +113307,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 459, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" } ], "parameters": [ { - "id": 364, + "id": 385, "name": "column", "variant": "param", "kind": 32768, @@ -113063,7 +113325,7 @@ } }, { - "id": 365, + "id": 386, "name": "value", "variant": "param", "kind": 32768, @@ -113098,7 +113360,7 @@ ] }, { - "id": 531, + "id": 552, "name": "overrideTypes", "variant": "declaration", "kind": 2048, @@ -113110,12 +113372,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "signatures": [ { - "id": 532, + "id": 553, "name": "overrideTypes", "variant": "signature", "kind": 4096, @@ -113163,12 +113425,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "typeParameters": [ { - "id": 533, + "id": 554, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -113183,7 +113445,7 @@ } }, { - "id": 534, + "id": 555, "name": "Options", "variant": "typeParam", "kind": 131072, @@ -113199,14 +113461,14 @@ "type": { "type": "reflection", "declaration": { - "id": 535, + "id": 556, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 536, + "id": 557, "name": "merge", "variant": "declaration", "kind": 1024, @@ -113218,7 +113480,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -113230,7 +113492,7 @@ "groups": [ { "title": "Properties", - "children": [536] + "children": [557] } ], "sources": [ @@ -113238,7 +113500,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -113246,14 +113508,14 @@ "default": { "type": "reflection", "declaration": { - "id": 537, + "id": 558, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 538, + "id": 559, "name": "merge", "variant": "declaration", "kind": 1024, @@ -113263,7 +113525,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -113275,7 +113537,7 @@ "groups": [ { "title": "Properties", - "children": [538] + "children": [559] } ], "sources": [ @@ -113283,7 +113545,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -113292,7 +113554,7 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -113321,7 +113583,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -113383,7 +113645,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -113409,7 +113671,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -113429,7 +113691,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -113444,7 +113706,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -113471,7 +113733,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -113492,19 +113754,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 691, + "target": 712, "name": "default.overrideTypes" } } ], "inheritedFrom": { "type": "reference", - "target": 690, + "target": 711, "name": "default.overrideTypes" } }, { - "id": 458, + "id": 479, "name": "range", "variant": "declaration", "kind": 2048, @@ -113516,12 +113778,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "signatures": [ { - "id": 459, + "id": 480, "name": "range", "variant": "signature", "kind": 4096, @@ -113581,12 +113843,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "parameters": [ { - "id": 460, + "id": 481, "name": "from", "variant": "param", "kind": 32768, @@ -113605,7 +113867,7 @@ } }, { - "id": 461, + "id": 482, "name": "to", "variant": "param", "kind": 32768, @@ -113624,7 +113886,7 @@ } }, { - "id": 462, + "id": 483, "name": "options", "variant": "param", "kind": 32768, @@ -113640,14 +113902,14 @@ "type": { "type": "reflection", "declaration": { - "id": 463, + "id": 484, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 464, + "id": 485, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -113675,7 +113937,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -113684,7 +113946,7 @@ } }, { - "id": 465, + "id": 486, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -113704,7 +113966,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -113717,7 +113979,7 @@ "groups": [ { "title": "Properties", - "children": [464, 465] + "children": [485, 486] } ], "sources": [ @@ -113725,7 +113987,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ] } @@ -113739,19 +114001,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 618, + "target": 639, "name": "default.range" } } ], "inheritedFrom": { "type": "reference", - "target": 617, + "target": 638, "name": "default.range" } }, { - "id": 350, + "id": 371, "name": "rangeAdjacent", "variant": "declaration", "kind": 2048, @@ -113805,26 +114067,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 440, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 441, + "line": 494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L494" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 450, + "line": 503, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L503" } ], "signatures": [ { - "id": 351, + "id": 372, "name": "rangeAdjacent", "variant": "signature", "kind": 4096, @@ -113832,14 +114094,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 440, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493" } ], "typeParameters": [ { - "id": 352, + "id": 373, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -113852,21 +114114,21 @@ ], "parameters": [ { - "id": 353, + "id": 374, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 352, + "target": 373, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 354, + "id": 375, "name": "range", "variant": "param", "kind": 32768, @@ -113883,7 +114145,7 @@ } }, { - "id": 355, + "id": 376, "name": "rangeAdjacent", "variant": "signature", "kind": 4096, @@ -113891,14 +114153,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 441, + "line": 494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L494" } ], "parameters": [ { - "id": 356, + "id": 377, "name": "column", "variant": "param", "kind": 32768, @@ -113909,7 +114171,7 @@ } }, { - "id": 357, + "id": 378, "name": "range", "variant": "param", "kind": 32768, @@ -113928,7 +114190,7 @@ ] }, { - "id": 318, + "id": 339, "name": "rangeGt", "variant": "declaration", "kind": 2048, @@ -113982,26 +114244,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 382, + "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 383, + "line": 436, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L436" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 391, + "line": 444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L444" } ], "signatures": [ { - "id": 319, + "id": 340, "name": "rangeGt", "variant": "signature", "kind": 4096, @@ -114009,14 +114271,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 382, + "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435" } ], "typeParameters": [ { - "id": 320, + "id": 341, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -114029,21 +114291,21 @@ ], "parameters": [ { - "id": 321, + "id": 342, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 320, + "target": 341, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 322, + "id": 343, "name": "range", "variant": "param", "kind": 32768, @@ -114060,7 +114322,7 @@ } }, { - "id": 323, + "id": 344, "name": "rangeGt", "variant": "signature", "kind": 4096, @@ -114068,14 +114330,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 383, + "line": 436, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L436" } ], "parameters": [ { - "id": 324, + "id": 345, "name": "column", "variant": "param", "kind": 32768, @@ -114086,7 +114348,7 @@ } }, { - "id": 325, + "id": 346, "name": "range", "variant": "param", "kind": 32768, @@ -114105,7 +114367,7 @@ ] }, { - "id": 326, + "id": 347, "name": "rangeGte", "variant": "declaration", "kind": 2048, @@ -114167,26 +114429,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 396, + "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 397, + "line": 450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 406, + "line": 459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459" } ], "signatures": [ { - "id": 327, + "id": 348, "name": "rangeGte", "variant": "signature", "kind": 4096, @@ -114194,14 +114456,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 396, + "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449" } ], "typeParameters": [ { - "id": 328, + "id": 349, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -114214,21 +114476,21 @@ ], "parameters": [ { - "id": 329, + "id": 350, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 328, + "target": 349, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 330, + "id": 351, "name": "range", "variant": "param", "kind": 32768, @@ -114245,7 +114507,7 @@ } }, { - "id": 331, + "id": 352, "name": "rangeGte", "variant": "signature", "kind": 4096, @@ -114253,14 +114515,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 397, + "line": 450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450" } ], "parameters": [ { - "id": 332, + "id": 353, "name": "column", "variant": "param", "kind": 32768, @@ -114271,7 +114533,7 @@ } }, { - "id": 333, + "id": 354, "name": "range", "variant": "param", "kind": 32768, @@ -114290,7 +114552,7 @@ ] }, { - "id": 334, + "id": 355, "name": "rangeLt", "variant": "declaration", "kind": 2048, @@ -114344,26 +114606,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 411, + "line": 464, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 412, + "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L465" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 420, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L420" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L473" } ], "signatures": [ { - "id": 335, + "id": 356, "name": "rangeLt", "variant": "signature", "kind": 4096, @@ -114371,14 +114633,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 411, + "line": 464, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464" } ], "typeParameters": [ { - "id": 336, + "id": 357, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -114391,21 +114653,21 @@ ], "parameters": [ { - "id": 337, + "id": 358, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 336, + "target": 357, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 338, + "id": 359, "name": "range", "variant": "param", "kind": 32768, @@ -114422,7 +114684,7 @@ } }, { - "id": 339, + "id": 360, "name": "rangeLt", "variant": "signature", "kind": 4096, @@ -114430,14 +114692,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 412, + "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L465" } ], "parameters": [ { - "id": 340, + "id": 361, "name": "column", "variant": "param", "kind": 32768, @@ -114448,7 +114710,7 @@ } }, { - "id": 341, + "id": 362, "name": "range", "variant": "param", "kind": 32768, @@ -114467,7 +114729,7 @@ ] }, { - "id": 342, + "id": 363, "name": "rangeLte", "variant": "declaration", "kind": 2048, @@ -114529,26 +114791,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 425, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 426, + "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L479" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 435, + "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L488" } ], "signatures": [ { - "id": 343, + "id": 364, "name": "rangeLte", "variant": "signature", "kind": 4096, @@ -114556,14 +114818,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 425, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" } ], "typeParameters": [ { - "id": 344, + "id": 365, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -114576,21 +114838,21 @@ ], "parameters": [ { - "id": 345, + "id": 366, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 344, + "target": 365, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 346, + "id": 367, "name": "range", "variant": "param", "kind": 32768, @@ -114607,7 +114869,7 @@ } }, { - "id": 347, + "id": 368, "name": "rangeLte", "variant": "signature", "kind": 4096, @@ -114615,14 +114877,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 426, + "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L479" } ], "parameters": [ { - "id": 348, + "id": 369, "name": "column", "variant": "param", "kind": 32768, @@ -114633,7 +114895,7 @@ } }, { - "id": 349, + "id": 370, "name": "range", "variant": "param", "kind": 32768, @@ -114652,7 +114914,377 @@ ] }, { - "id": 491, + "id": 297, + "name": "regexIMatch", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " matches the PostgreSQL regex " + }, + { + "kind": "code", + "text": "`pattern`" + }, + { + "kind": "text", + "text": "\ncase-insensitively (using the " + }, + { + "kind": "code", + "text": "`~*`" + }, + { + "kind": "text", + "text": " operator)." + } + ], + "blockTags": [ + { + "tag": "@param", + "name": "column", + "content": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, + { + "tag": "@param", + "name": "pattern", + "content": [ + { + "kind": "text", + "text": "The PostgreSQL regular expression pattern to match with" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 293, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 294, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 302, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302" + } + ], + "signatures": [ + { + "id": 298, + "name": "regexIMatch", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 293, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293" + } + ], + "typeParameters": [ + { + "id": 299, + "name": "ColumnName", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 300, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 299, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + }, + { + "id": 301, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + }, + { + "id": 302, + "name": "regexIMatch", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 294, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + } + ], + "parameters": [ + { + "id": 303, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 304, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + } + ] + }, + { + "id": 289, + "name": "regexMatch", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " matches the PostgreSQL regex " + }, + { + "kind": "code", + "text": "`pattern`" + }, + { + "kind": "text", + "text": "\ncase-sensitively (using the " + }, + { + "kind": "code", + "text": "`~`" + }, + { + "kind": "text", + "text": " operator)." + } + ], + "blockTags": [ + { + "tag": "@param", + "name": "column", + "content": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, + { + "tag": "@param", + "name": "pattern", + "content": [ + { + "kind": "text", + "text": "The PostgreSQL regular expression pattern to match with" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 279, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 280, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 288, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L288" + } + ], + "signatures": [ + { + "id": 290, + "name": "regexMatch", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 279, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279" + } + ], + "typeParameters": [ + { + "id": 291, + "name": "ColumnName", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 292, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 291, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + }, + { + "id": 293, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + }, + { + "id": 294, + "name": "regexMatch", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 280, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + } + ], + "parameters": [ + { + "id": 295, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 296, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + } + ] + }, + { + "id": 512, "name": "returns", "variant": "declaration", "kind": 2048, @@ -114664,12 +115296,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" } ], "signatures": [ { - "id": 492, + "id": 513, "name": "returns", "variant": "signature", "kind": 4096, @@ -114708,12 +115340,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" } ], "typeParameters": [ { - "id": 493, + "id": 514, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -114730,7 +115362,7 @@ ], "type": { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", @@ -114773,7 +115405,7 @@ }, { "type": "reference", - "target": 493, + "target": 514, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -114813,19 +115445,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 651, + "target": 672, "name": "default.returns" } } ], "inheritedFrom": { "type": "reference", - "target": 650, + "target": 671, "name": "default.returns" } }, { - "id": 489, + "id": 510, "name": "rollback", "variant": "declaration", "kind": 2048, @@ -114837,12 +115469,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ { - "id": 490, + "id": 511, "name": "rollback", "variant": "signature", "kind": 4096, @@ -114870,7 +115502,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "type": { @@ -114879,19 +115511,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 649, + "target": 670, "name": "default.rollback" } } ], "inheritedFrom": { "type": "reference", - "target": 648, + "target": 669, "name": "default.rollback" } }, { - "id": 415, + "id": 436, "name": "select", "variant": "declaration", "kind": 2048, @@ -114903,12 +115535,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "signatures": [ { - "id": 416, + "id": 437, "name": "select", "variant": "signature", "kind": 4096, @@ -114968,12 +115600,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "typeParameters": [ { - "id": 417, + "id": 438, "name": "Query", "variant": "typeParam", "kind": 131072, @@ -114988,14 +115620,14 @@ } }, { - "id": 418, + "id": 439, "name": "NewResultOne", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 811, + "target": 832, "typeArguments": [ { "type": "reference", @@ -115031,7 +115663,7 @@ }, { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -115052,7 +115684,7 @@ ], "parameters": [ { - "id": 419, + "id": 440, "name": "columns", "variant": "param", "kind": 32768, @@ -115069,7 +115701,7 @@ }, "type": { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -115139,7 +115771,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -115147,7 +115779,7 @@ }, "falseType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -115157,7 +115789,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -115195,19 +115827,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 575, + "target": 596, "name": "default.select" } } ], "inheritedFrom": { "type": "reference", - "target": 574, + "target": 595, "name": "default.select" } }, { - "id": 515, + "id": 536, "name": "setHeader", "variant": "declaration", "kind": 2048, @@ -115219,12 +115851,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "signatures": [ { - "id": 516, + "id": 537, "name": "setHeader", "variant": "signature", "kind": 4096, @@ -115244,12 +115876,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "parameters": [ { - "id": 517, + "id": 538, "name": "name", "variant": "param", "kind": 32768, @@ -115260,7 +115892,7 @@ } }, { - "id": 518, + "id": 539, "name": "value", "variant": "param", "kind": 32768, @@ -115277,19 +115909,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 675, + "target": 696, "name": "default.setHeader" } } ], "inheritedFrom": { "type": "reference", - "target": 674, + "target": 695, "name": "default.setHeader" } }, { - "id": 469, + "id": 490, "name": "single", "variant": "declaration", "kind": 2048, @@ -115301,12 +115933,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "signatures": [ { - "id": 470, + "id": 491, "name": "single", "variant": "signature", "kind": 4096, @@ -115342,12 +115974,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "typeParameters": [ { - "id": 471, + "id": 492, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -115394,7 +116026,7 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -115406,7 +116038,7 @@ }, { "type": "reference", - "target": 471, + "target": 492, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -115418,19 +116050,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 629, + "target": 650, "name": "default.single" } } ], "inheritedFrom": { "type": "reference", - "target": 628, + "target": 649, "name": "default.single" } }, { - "id": 366, + "id": 387, "name": "textSearch", "variant": "declaration", "kind": 2048, @@ -115522,26 +116154,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 478, + "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 483, + "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 498, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" } ], "signatures": [ { - "id": 367, + "id": 388, "name": "textSearch", "variant": "signature", "kind": 4096, @@ -115549,14 +116181,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 478, + "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" } ], "typeParameters": [ { - "id": 368, + "id": 389, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -115569,21 +116201,21 @@ ], "parameters": [ { - "id": 369, + "id": 390, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 368, + "target": 389, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 370, + "id": 391, "name": "query", "variant": "param", "kind": 32768, @@ -115594,7 +116226,7 @@ } }, { - "id": 371, + "id": 392, "name": "options", "variant": "param", "kind": 32768, @@ -115604,14 +116236,14 @@ "type": { "type": "reflection", "declaration": { - "id": 372, + "id": 393, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 373, + "id": 394, "name": "config", "variant": "declaration", "kind": 1024, @@ -115621,9 +116253,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 481, + "line": 534, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L534" } ], "type": { @@ -115632,7 +116264,7 @@ } }, { - "id": 374, + "id": 395, "name": "type", "variant": "declaration", "kind": 1024, @@ -115642,9 +116274,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 481, + "line": 534, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L534" } ], "type": { @@ -115669,15 +116301,15 @@ "groups": [ { "title": "Properties", - "children": [373, 374] + "children": [394, 395] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 481, + "line": 534, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L534" } ] } @@ -115690,7 +116322,7 @@ } }, { - "id": 375, + "id": 396, "name": "textSearch", "variant": "signature", "kind": 4096, @@ -115698,14 +116330,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 483, + "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536" } ], "parameters": [ { - "id": 376, + "id": 397, "name": "column", "variant": "param", "kind": 32768, @@ -115716,7 +116348,7 @@ } }, { - "id": 377, + "id": 398, "name": "query", "variant": "param", "kind": 32768, @@ -115727,7 +116359,7 @@ } }, { - "id": 378, + "id": 399, "name": "options", "variant": "param", "kind": 32768, @@ -115737,14 +116369,14 @@ "type": { "type": "reflection", "declaration": { - "id": 379, + "id": 400, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 380, + "id": 401, "name": "config", "variant": "declaration", "kind": 1024, @@ -115754,9 +116386,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 486, + "line": 539, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ], "type": { @@ -115765,7 +116397,7 @@ } }, { - "id": 381, + "id": 402, "name": "type", "variant": "declaration", "kind": 1024, @@ -115775,9 +116407,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 486, + "line": 539, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ], "type": { @@ -115802,15 +116434,15 @@ "groups": [ { "title": "Properties", - "children": [380, 381] + "children": [401, 402] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 486, + "line": 539, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ] } @@ -115825,7 +116457,7 @@ ] }, { - "id": 519, + "id": 540, "name": "then", "variant": "declaration", "kind": 2048, @@ -115837,12 +116469,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "signatures": [ { - "id": 520, + "id": 541, "name": "then", "variant": "signature", "kind": 4096, @@ -115873,19 +116505,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "typeParameters": [ { - "id": 521, + "id": 542, "name": "TResult1", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", @@ -115901,7 +116533,7 @@ } }, { - "id": 522, + "id": 543, "name": "TResult2", "variant": "typeParam", "kind": 131072, @@ -115914,7 +116546,7 @@ ], "parameters": [ { - "id": 523, + "id": 544, "name": "onfulfilled", "variant": "param", "kind": 32768, @@ -115939,7 +116571,7 @@ { "type": "reflection", "declaration": { - "id": 524, + "id": 545, "name": "__type", "variant": "declaration", "kind": 65536, @@ -115949,12 +116581,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "signatures": [ { - "id": 525, + "id": 546, "name": "__type", "variant": "signature", "kind": 4096, @@ -115964,19 +116596,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "parameters": [ { - "id": 526, + "id": 547, "name": "value", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", @@ -115997,7 +116629,7 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -116011,7 +116643,7 @@ "typeArguments": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -116030,7 +116662,7 @@ } }, { - "id": 527, + "id": 548, "name": "onrejected", "variant": "param", "kind": 32768, @@ -116055,7 +116687,7 @@ { "type": "reflection", "declaration": { - "id": 528, + "id": 549, "name": "__type", "variant": "declaration", "kind": 65536, @@ -116065,12 +116697,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "signatures": [ { - "id": 529, + "id": 550, "name": "__type", "variant": "signature", "kind": 4096, @@ -116080,12 +116712,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "parameters": [ { - "id": 530, + "id": 551, "name": "reason", "variant": "param", "kind": 32768, @@ -116101,7 +116733,7 @@ "types": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -116115,7 +116747,7 @@ "typeArguments": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -116146,14 +116778,14 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -116166,19 +116798,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 679, + "target": 700, "name": "default.then" } } ], "inheritedFrom": { "type": "reference", - "target": 678, + "target": 699, "name": "default.then" } }, { - "id": 513, + "id": 534, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -116190,12 +116822,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "signatures": [ { - "id": 514, + "id": 535, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -116221,7 +116853,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -116294,7 +116926,7 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -116325,14 +116957,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 673, + "target": 694, "name": "default.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 672, + "target": 693, "name": "default.throwOnError" } } @@ -116344,41 +116976,41 @@ }, { "title": "Properties", - "children": [501, 504, 499, 512, 497, 500, 502, 503, 498] + "children": [522, 525, 520, 533, 518, 521, 523, 524, 519] }, { "title": "Methods", "children": [ - 466, 310, 302, 475, 198, 479, 405, 477, 209, 217, 265, 273, 281, 297, 289, 241, 249, - 257, 451, 225, 233, 382, 494, 472, 204, 388, 398, 420, 358, 531, 458, 350, 318, 326, - 334, 342, 491, 489, 415, 515, 469, 366, 519, 513 + 487, 331, 323, 496, 198, 500, 426, 498, 209, 217, 265, 273, 281, 318, 305, 313, 241, + 249, 257, 472, 225, 233, 403, 515, 493, 204, 409, 419, 441, 379, 552, 479, 371, 339, + 347, 355, 363, 297, 289, 512, 510, 436, 536, 490, 387, 540, 534 ] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 76, + "line": 79, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L79" } ], "typeParameters": [ { - "id": 539, + "id": 560, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 540, + "id": 561, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -116394,7 +117026,7 @@ } }, { - "id": 541, + "id": 562, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -116420,14 +117052,14 @@ } }, { - "id": 542, + "id": 563, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 543, + "id": 564, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -116438,7 +117070,7 @@ } }, { - "id": 544, + "id": 565, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -116449,7 +117081,7 @@ } }, { - "id": 545, + "id": 566, "name": "Method", "variant": "typeParam", "kind": 131072, @@ -116463,7 +117095,7 @@ "extendedTypes": [ { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", @@ -116545,7 +117177,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" } ], "signatures": [ @@ -116579,7 +117211,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" } ], "typeParameters": [ @@ -116591,7 +117223,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -116689,7 +117321,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ], "type": { @@ -116715,7 +117347,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ] } @@ -116782,7 +117414,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 46, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46" } ], "type": { @@ -117011,7 +117643,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 44, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44" } ], "type": { @@ -117038,7 +117670,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 45, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45" } ], "type": { @@ -117058,7 +117690,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 43, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43" } ] } @@ -117130,7 +117762,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" } ], "type": { @@ -117357,7 +117989,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" } ], "type": { @@ -117383,7 +118015,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" } ], "type": { @@ -117404,7 +118036,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" } ], "type": { @@ -117428,7 +118060,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18" } ], "type": { @@ -117450,9 +118082,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 429, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L478" } ], "signatures": [ @@ -117481,9 +118113,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 429, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L478" } ], "parameters": [ @@ -117561,9 +118193,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 432, + "line": 481, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L481" } ], "type": { @@ -117594,9 +118226,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 431, + "line": 480, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L480" } ] } @@ -117780,19 +118412,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189" } ], "signatures": [ @@ -117807,7 +118439,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134" } ], "typeParameters": [ @@ -117883,7 +118515,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 137, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137" } ], "type": { @@ -117916,7 +118548,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 136, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136" } ] } @@ -117999,7 +118631,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148" } ], "typeParameters": [ @@ -118078,7 +118710,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151" } ], "type": { @@ -118112,7 +118744,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152" } ], "type": { @@ -118132,7 +118764,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 150, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150" } ] } @@ -118217,7 +118849,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "signatures": [ @@ -118240,7 +118872,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "typeParameters": [ @@ -118267,7 +118899,7 @@ "flags": {}, "default": { "type": "reference", - "target": 811, + "target": 832, "typeArguments": [ { "type": "reference", @@ -118436,7 +119068,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 90, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90" } ], "type": { @@ -118494,7 +119126,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 89, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89" } ], "type": { @@ -118514,7 +119146,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 88, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88" } ] } @@ -118603,9 +119235,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 379, + "line": 428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L428" } ], "signatures": [ @@ -118634,9 +119266,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 379, + "line": 428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L428" } ], "typeParameters": [ @@ -118764,9 +119396,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 384, + "line": 433, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L433" } ], "type": { @@ -118797,9 +119429,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 383, + "line": 432, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432" } ] } @@ -119067,6 +119699,26 @@ "text": ". This also only applies when doing bulk upserts." } ] + }, + { + "tag": "@example", + "name": "Upsert a single row using a unique key", + "content": [ + { + "kind": "code", + "text": "```ts\n// Upserting a single row, overwriting based on the 'username' unique column\nconst { data, error } = await supabase\n .from('users')\n .upsert({ username: 'supabot' }, { onConflict: 'username' })\n\n// Example response:\n// {\n// data: [\n// { id: 4, message: 'bar', username: 'supabot' }\n// ],\n// error: null\n// }\n```" + } + ] + }, + { + "tag": "@example", + "name": "Upsert with conflict resolution and exact row counting", + "content": [ + { + "kind": "code", + "text": "```ts\n// Upserting and returning exact count\nconst { data, error, count } = await supabase\n .from('users')\n .upsert(\n {\n id: 3,\n message: 'foo',\n username: 'supabot'\n },\n {\n onConflict: 'username',\n count: 'exact'\n }\n )\n\n// Example response:\n// {\n// data: [\n// {\n// id: 42,\n// handle: \"saoirse\",\n// display_name: \"Saoirse\"\n// }\n// ],\n// count: 1,\n// error: null\n// }\n```" + } + ] } ] }, @@ -119075,19 +119727,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 306, + "line": 355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L306" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L355" } ], "signatures": [ @@ -119102,7 +119754,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235" } ], "typeParameters": [ @@ -119178,7 +119830,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 240, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240" } ], "type": { @@ -119212,7 +119864,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 239, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239" } ], "type": { @@ -119233,7 +119885,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 238, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238" } ], "type": { @@ -119253,7 +119905,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 237, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237" } ] } @@ -119336,7 +119988,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" } ], "typeParameters": [ @@ -119415,7 +120067,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 256, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256" } ], "type": { @@ -119449,7 +120101,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 257, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257" } ], "type": { @@ -119470,7 +120122,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 255, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255" } ], "type": { @@ -119491,7 +120143,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 254, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254" } ], "type": { @@ -119511,7 +120163,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 253, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253" } ] } @@ -119605,7 +120257,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 11, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11" } ], "typeParameters": [ @@ -119617,7 +120269,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -119715,7 +120367,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ], "type": { @@ -119735,7 +120387,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ] } @@ -119759,14 +120411,14 @@ ] }, { - "id": 546, + "id": 567, "name": "PostgrestTransformBuilder", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 547, + "id": 568, "name": "constructor", "variant": "declaration", "kind": 512, @@ -119776,12 +120428,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "signatures": [ { - "id": 548, + "id": 569, "name": "PostgrestTransformBuilder", "variant": "signature", "kind": 16384, @@ -119810,25 +120462,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "typeParameters": [ { - "id": 549, + "id": 570, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 550, + "id": 571, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -119844,7 +120496,7 @@ } }, { - "id": 551, + "id": 572, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -119870,14 +120522,14 @@ } }, { - "id": 552, + "id": 573, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 553, + "id": 574, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -119888,7 +120540,7 @@ } }, { - "id": 554, + "id": 575, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -119899,7 +120551,7 @@ } }, { - "id": 555, + "id": 576, "name": "Method", "variant": "typeParam", "kind": 131072, @@ -119912,7 +120564,7 @@ ], "parameters": [ { - "id": 556, + "id": 577, "name": "builder", "variant": "param", "kind": 32768, @@ -119920,14 +120572,14 @@ "type": { "type": "reflection", "declaration": { - "id": 557, + "id": 578, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 562, + "id": 583, "name": "body", "variant": "declaration", "kind": 1024, @@ -119939,7 +120591,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 49, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" } ], "type": { @@ -119948,7 +120600,7 @@ } }, { - "id": 565, + "id": 586, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -119960,13 +120612,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 52, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" } ], "type": { "type": "reflection", "declaration": { - "id": 566, + "id": 587, "name": "__type", "variant": "declaration", "kind": 65536, @@ -119985,7 +120637,7 @@ ], "signatures": [ { - "id": 567, + "id": 588, "name": "__type", "variant": "signature", "kind": 4096, @@ -120007,7 +120659,7 @@ ], "parameters": [ { - "id": 568, + "id": 589, "name": "input", "variant": "param", "kind": 32768, @@ -120037,7 +120689,7 @@ } }, { - "id": 569, + "id": 590, "name": "init", "variant": "param", "kind": 32768, @@ -120077,7 +120729,7 @@ } }, { - "id": 570, + "id": 591, "name": "__type", "variant": "signature", "kind": 4096, @@ -120099,7 +120751,7 @@ ], "parameters": [ { - "id": 571, + "id": 592, "name": "input", "variant": "param", "kind": 32768, @@ -120133,7 +120785,7 @@ } }, { - "id": 572, + "id": 593, "name": "init", "variant": "param", "kind": 32768, @@ -120177,7 +120829,7 @@ } }, { - "id": 560, + "id": 581, "name": "headers", "variant": "declaration", "kind": 1024, @@ -120187,7 +120839,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 47, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" } ], "type": { @@ -120201,7 +120853,7 @@ } }, { - "id": 573, + "id": 594, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -120213,7 +120865,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 53, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" } ], "type": { @@ -120222,7 +120874,7 @@ } }, { - "id": 558, + "id": 579, "name": "method", "variant": "declaration", "kind": 1024, @@ -120232,7 +120884,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 45, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" } ], "type": { @@ -120262,7 +120914,7 @@ } }, { - "id": 561, + "id": 582, "name": "schema", "variant": "declaration", "kind": 1024, @@ -120274,7 +120926,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 48, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" } ], "type": { @@ -120283,7 +120935,7 @@ } }, { - "id": 563, + "id": 584, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -120295,7 +120947,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 50, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" } ], "type": { @@ -120304,7 +120956,7 @@ } }, { - "id": 564, + "id": 585, "name": "signal", "variant": "declaration", "kind": 1024, @@ -120316,7 +120968,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 51, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" } ], "type": { @@ -120330,7 +120982,7 @@ } }, { - "id": 559, + "id": 580, "name": "url", "variant": "declaration", "kind": 1024, @@ -120340,7 +120992,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" } ], "type": { @@ -120357,7 +121009,7 @@ "groups": [ { "title": "Properties", - "children": [562, 565, 560, 573, 558, 561, 563, 564, 559] + "children": [583, 586, 581, 594, 579, 582, 584, 585, 580] } ], "sources": [ @@ -120365,7 +121017,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ] } @@ -120374,11 +121026,11 @@ ], "type": { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -120386,7 +121038,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -120394,7 +121046,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -120402,7 +121054,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -120410,7 +121062,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -120418,7 +121070,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -120426,7 +121078,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -120439,19 +121091,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 707, + "target": 728, "name": "default.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 706, + "target": 727, "name": "default.constructor" } }, { - "id": 660, + "id": 681, "name": "body", "variant": "declaration", "kind": 1024, @@ -120465,7 +121117,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 25, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" } ], "type": { @@ -120474,12 +121126,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 733, + "target": 754, "name": "default.body" } }, { - "id": 663, + "id": 684, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -120492,13 +121144,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" } ], "type": { "type": "reflection", "declaration": { - "id": 664, + "id": 685, "name": "__type", "variant": "declaration", "kind": 65536, @@ -120517,7 +121169,7 @@ ], "signatures": [ { - "id": 665, + "id": 686, "name": "__type", "variant": "signature", "kind": 4096, @@ -120539,7 +121191,7 @@ ], "parameters": [ { - "id": 666, + "id": 687, "name": "input", "variant": "param", "kind": 32768, @@ -120569,7 +121221,7 @@ } }, { - "id": 667, + "id": 688, "name": "init", "variant": "param", "kind": 32768, @@ -120609,7 +121261,7 @@ } }, { - "id": 668, + "id": 689, "name": "__type", "variant": "signature", "kind": 4096, @@ -120631,7 +121283,7 @@ ], "parameters": [ { - "id": 669, + "id": 690, "name": "input", "variant": "param", "kind": 32768, @@ -120665,7 +121317,7 @@ } }, { - "id": 670, + "id": 691, "name": "init", "variant": "param", "kind": 32768, @@ -120709,12 +121361,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 736, + "target": 757, "name": "default.fetch" } }, { - "id": 658, + "id": 679, "name": "headers", "variant": "declaration", "kind": 1024, @@ -120727,7 +121379,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 23, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" } ], "type": { @@ -120741,12 +121393,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 731, + "target": 752, "name": "default.headers" } }, { - "id": 671, + "id": 692, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -120759,7 +121411,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" } ], "type": { @@ -120768,12 +121420,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 744, + "target": 765, "name": "default.isMaybeSingle" } }, { - "id": 656, + "id": 677, "name": "method", "variant": "declaration", "kind": 1024, @@ -120786,7 +121438,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" } ], "type": { @@ -120816,12 +121468,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 729, + "target": 750, "name": "default.method" } }, { - "id": 659, + "id": 680, "name": "schema", "variant": "declaration", "kind": 1024, @@ -120835,7 +121487,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" } ], "type": { @@ -120844,12 +121496,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 732, + "target": 753, "name": "default.schema" } }, { - "id": 661, + "id": 682, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -120862,7 +121514,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 26, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" } ], "type": { @@ -120872,12 +121524,12 @@ "defaultValue": "false", "inheritedFrom": { "type": "reference", - "target": 734, + "target": 755, "name": "default.shouldThrowOnError" } }, { - "id": 662, + "id": 683, "name": "signal", "variant": "declaration", "kind": 1024, @@ -120891,7 +121543,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 27, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" } ], "type": { @@ -120905,12 +121557,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 735, + "target": 756, "name": "default.signal" } }, { - "id": 657, + "id": 678, "name": "url", "variant": "declaration", "kind": 1024, @@ -120923,7 +121575,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" } ], "type": { @@ -120937,12 +121589,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 730, + "target": 751, "name": "default.url" } }, { - "id": 625, + "id": 646, "name": "abortSignal", "variant": "declaration", "kind": 2048, @@ -120952,12 +121604,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "signatures": [ { - "id": 626, + "id": 647, "name": "abortSignal", "variant": "signature", "kind": 4096, @@ -120975,12 +121627,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "parameters": [ { - "id": 627, + "id": 648, "name": "signal", "variant": "param", "kind": 32768, @@ -121012,7 +121664,7 @@ ] }, { - "id": 634, + "id": 655, "name": "csv", "variant": "declaration", "kind": 2048, @@ -121022,12 +121674,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "signatures": [ { - "id": 635, + "id": 656, "name": "csv", "variant": "signature", "kind": 4096, @@ -121053,16 +121705,16 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -121081,7 +121733,7 @@ ] }, { - "id": 638, + "id": 659, "name": "explain", "variant": "declaration", "kind": 2048, @@ -121091,12 +121743,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "signatures": [ { - "id": 639, + "id": 660, "name": "explain", "variant": "signature", "kind": 4096, @@ -121122,12 +121774,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "parameters": [ { - "id": 640, + "id": 661, "name": "options", "variant": "param", "kind": 32768, @@ -121143,14 +121795,14 @@ "type": { "type": "reflection", "declaration": { - "id": 641, + "id": 662, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 642, + "id": 663, "name": "analyze", "variant": "declaration", "kind": 1024, @@ -121178,7 +121830,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 288, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" } ], "type": { @@ -121188,7 +121840,7 @@ "defaultValue": "false" }, { - "id": 645, + "id": 666, "name": "buffers", "variant": "declaration", "kind": 1024, @@ -121216,7 +121868,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 291, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" } ], "type": { @@ -121226,7 +121878,7 @@ "defaultValue": "false" }, { - "id": 647, + "id": 668, "name": "format", "variant": "declaration", "kind": 1024, @@ -121258,7 +121910,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 293, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" } ], "type": { @@ -121277,7 +121929,7 @@ "defaultValue": "'text'" }, { - "id": 644, + "id": 665, "name": "settings", "variant": "declaration", "kind": 1024, @@ -121305,7 +121957,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 290, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" } ], "type": { @@ -121315,7 +121967,7 @@ "defaultValue": "false" }, { - "id": 643, + "id": 664, "name": "verbose", "variant": "declaration", "kind": 1024, @@ -121351,7 +122003,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 289, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" } ], "type": { @@ -121361,7 +122013,7 @@ "defaultValue": "false" }, { - "id": 646, + "id": 667, "name": "wal", "variant": "declaration", "kind": 1024, @@ -121389,7 +122041,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 292, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" } ], "type": { @@ -121402,7 +122054,7 @@ "groups": [ { "title": "Properties", - "children": [642, 645, 647, 644, 643, 646] + "children": [663, 666, 668, 665, 664, 667] } ], "sources": [ @@ -121410,7 +122062,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 287, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" } ] } @@ -121423,11 +122075,11 @@ "types": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -121448,11 +122100,11 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -121495,7 +122147,7 @@ ] }, { - "id": 636, + "id": 657, "name": "geojson", "variant": "declaration", "kind": 2048, @@ -121505,12 +122157,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "signatures": [ { - "id": 637, + "id": 658, "name": "geojson", "variant": "signature", "kind": 4096, @@ -121536,16 +122188,16 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -121579,7 +122231,7 @@ ] }, { - "id": 610, + "id": 631, "name": "limit", "variant": "declaration", "kind": 2048, @@ -121589,12 +122241,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "signatures": [ { - "id": 611, + "id": 632, "name": "limit", "variant": "signature", "kind": 4096, @@ -121620,12 +122272,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "parameters": [ { - "id": 612, + "id": 633, "name": "count", "variant": "param", "kind": 32768, @@ -121644,7 +122296,7 @@ } }, { - "id": 613, + "id": 634, "name": "options", "variant": "param", "kind": 32768, @@ -121660,14 +122312,14 @@ "type": { "type": "reflection", "declaration": { - "id": 614, + "id": 635, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 615, + "id": 636, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -121695,7 +122347,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -121704,7 +122356,7 @@ } }, { - "id": 616, + "id": 637, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -121724,7 +122376,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -121737,7 +122389,7 @@ "groups": [ { "title": "Properties", - "children": [615, 616] + "children": [636, 637] } ], "sources": [ @@ -121745,7 +122397,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ] } @@ -121761,7 +122413,7 @@ ] }, { - "id": 653, + "id": 674, "name": "maxAffected", "variant": "declaration", "kind": 2048, @@ -121771,12 +122423,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "signatures": [ { - "id": 654, + "id": 675, "name": "maxAffected", "variant": "signature", "kind": 4096, @@ -121794,12 +122446,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "parameters": [ { - "id": 655, + "id": 676, "name": "value", "variant": "param", "kind": 32768, @@ -121835,7 +122487,7 @@ }, "objectType": { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -121854,7 +122506,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -121879,11 +122531,11 @@ }, "trueType": { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -121891,7 +122543,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -121899,7 +122551,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -121907,7 +122559,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -121915,7 +122567,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -121923,7 +122575,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -121931,7 +122583,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -121978,7 +122630,7 @@ ] }, { - "id": 631, + "id": 652, "name": "maybeSingle", "variant": "declaration", "kind": 2048, @@ -121988,12 +122640,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "signatures": [ { - "id": 632, + "id": 653, "name": "maybeSingle", "variant": "signature", "kind": 4096, @@ -122027,12 +122679,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "typeParameters": [ { - "id": 633, + "id": 654, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -122041,7 +122693,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -122079,11 +122731,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -122098,7 +122750,7 @@ }, { "type": "reference", - "target": 474, + "target": 495, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -122114,7 +122766,7 @@ ] }, { - "id": 579, + "id": 600, "name": "order", "variant": "declaration", "kind": 2048, @@ -122258,36 +122910,36 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "signatures": [ { - "id": 580, + "id": 601, "name": "order", "variant": "signature", "kind": 4096, @@ -122297,12 +122949,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" } ], "typeParameters": [ { - "id": 581, + "id": 602, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -122315,21 +122967,21 @@ ], "parameters": [ { - "id": 582, + "id": 603, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 422, + "target": 443, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 583, + "id": 604, "name": "options", "variant": "param", "kind": 32768, @@ -122339,14 +122991,14 @@ "type": { "type": "reflection", "declaration": { - "id": 584, + "id": 605, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 585, + "id": 606, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -122358,7 +123010,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -122367,7 +123019,7 @@ } }, { - "id": 586, + "id": 607, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -122379,7 +123031,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -122388,7 +123040,7 @@ } }, { - "id": 587, + "id": 608, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -122400,7 +123052,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -122412,7 +123064,7 @@ "groups": [ { "title": "Properties", - "children": [585, 586, 587] + "children": [606, 607, 608] } ], "sources": [ @@ -122420,7 +123072,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ] } @@ -122433,7 +123085,7 @@ } }, { - "id": 588, + "id": 609, "name": "order", "variant": "signature", "kind": 4096, @@ -122443,12 +123095,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" } ], "parameters": [ { - "id": 589, + "id": 610, "name": "column", "variant": "param", "kind": 32768, @@ -122459,7 +123111,7 @@ } }, { - "id": 590, + "id": 611, "name": "options", "variant": "param", "kind": 32768, @@ -122469,14 +123121,14 @@ "type": { "type": "reflection", "declaration": { - "id": 591, + "id": 612, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 592, + "id": 613, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -122488,7 +123140,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -122497,7 +123149,7 @@ } }, { - "id": 593, + "id": 614, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -122509,7 +123161,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -122518,7 +123170,7 @@ } }, { - "id": 594, + "id": 615, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -122530,7 +123182,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -122542,7 +123194,7 @@ "groups": [ { "title": "Properties", - "children": [592, 593, 594] + "children": [613, 614, 615] } ], "sources": [ @@ -122550,7 +123202,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ] } @@ -122563,7 +123215,7 @@ } }, { - "id": 595, + "id": 616, "name": "order", "variant": "signature", "kind": 4096, @@ -122599,12 +123251,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" } ], "typeParameters": [ { - "id": 596, + "id": 617, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -122617,21 +123269,21 @@ ], "parameters": [ { - "id": 597, + "id": 618, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 437, + "target": 458, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 598, + "id": 619, "name": "options", "variant": "param", "kind": 32768, @@ -122641,14 +123293,14 @@ "type": { "type": "reflection", "declaration": { - "id": 599, + "id": 620, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 600, + "id": 621, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -122660,7 +123312,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -122669,7 +123321,7 @@ } }, { - "id": 602, + "id": 623, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -122681,7 +123333,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -122690,7 +123342,7 @@ } }, { - "id": 601, + "id": 622, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -122702,7 +123354,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -122714,7 +123366,7 @@ "groups": [ { "title": "Properties", - "children": [600, 602, 601] + "children": [621, 623, 622] } ], "sources": [ @@ -122722,7 +123374,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ] } @@ -122735,7 +123387,7 @@ } }, { - "id": 603, + "id": 624, "name": "order", "variant": "signature", "kind": 4096, @@ -122771,12 +123423,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" } ], "parameters": [ { - "id": 604, + "id": 625, "name": "column", "variant": "param", "kind": 32768, @@ -122787,7 +123439,7 @@ } }, { - "id": 605, + "id": 626, "name": "options", "variant": "param", "kind": 32768, @@ -122797,14 +123449,14 @@ "type": { "type": "reflection", "declaration": { - "id": 606, + "id": 627, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 607, + "id": 628, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -122816,7 +123468,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -122825,7 +123477,7 @@ } }, { - "id": 609, + "id": 630, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -122837,7 +123489,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -122846,7 +123498,7 @@ } }, { - "id": 608, + "id": 629, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -122858,7 +123510,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -122870,7 +123522,7 @@ "groups": [ { "title": "Properties", - "children": [607, 609, 608] + "children": [628, 630, 629] } ], "sources": [ @@ -122878,7 +123530,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ] } @@ -122893,7 +123545,7 @@ ] }, { - "id": 690, + "id": 711, "name": "overrideTypes", "variant": "declaration", "kind": 2048, @@ -122905,12 +123557,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "signatures": [ { - "id": 691, + "id": 712, "name": "overrideTypes", "variant": "signature", "kind": 4096, @@ -122958,12 +123610,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "typeParameters": [ { - "id": 692, + "id": 713, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -122978,7 +123630,7 @@ } }, { - "id": 693, + "id": 714, "name": "Options", "variant": "typeParam", "kind": 131072, @@ -122994,14 +123646,14 @@ "type": { "type": "reflection", "declaration": { - "id": 694, + "id": 715, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 695, + "id": 716, "name": "merge", "variant": "declaration", "kind": 1024, @@ -123013,7 +123665,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -123025,7 +123677,7 @@ "groups": [ { "title": "Properties", - "children": [695] + "children": [716] } ], "sources": [ @@ -123033,7 +123685,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -123041,14 +123693,14 @@ "default": { "type": "reflection", "declaration": { - "id": 696, + "id": 717, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 697, + "id": 718, "name": "merge", "variant": "declaration", "kind": 1024, @@ -123058,7 +123710,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -123070,7 +123722,7 @@ "groups": [ { "title": "Properties", - "children": [697] + "children": [718] } ], "sources": [ @@ -123078,7 +123730,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -123087,11 +123739,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -123108,7 +123760,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -123116,7 +123768,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -123148,7 +123800,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -123178,7 +123830,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -123192,7 +123844,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -123204,7 +123856,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -123224,14 +123876,14 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -123239,7 +123891,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -123258,7 +123910,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -123266,7 +123918,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -123287,19 +123939,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 767, + "target": 788, "name": "default.overrideTypes" } } ], "inheritedFrom": { "type": "reference", - "target": 766, + "target": 787, "name": "default.overrideTypes" } }, { - "id": 617, + "id": 638, "name": "range", "variant": "declaration", "kind": 2048, @@ -123309,12 +123961,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "signatures": [ { - "id": 618, + "id": 639, "name": "range", "variant": "signature", "kind": 4096, @@ -123372,12 +124024,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "parameters": [ { - "id": 619, + "id": 640, "name": "from", "variant": "param", "kind": 32768, @@ -123396,7 +124048,7 @@ } }, { - "id": 620, + "id": 641, "name": "to", "variant": "param", "kind": 32768, @@ -123415,7 +124067,7 @@ } }, { - "id": 621, + "id": 642, "name": "options", "variant": "param", "kind": 32768, @@ -123431,14 +124083,14 @@ "type": { "type": "reflection", "declaration": { - "id": 622, + "id": 643, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 623, + "id": 644, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -123466,7 +124118,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -123475,7 +124127,7 @@ } }, { - "id": 624, + "id": 645, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -123495,7 +124147,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -123508,7 +124160,7 @@ "groups": [ { "title": "Properties", - "children": [623, 624] + "children": [644, 645] } ], "sources": [ @@ -123516,7 +124168,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ] } @@ -123532,7 +124184,7 @@ ] }, { - "id": 650, + "id": 671, "name": "returns", "variant": "declaration", "kind": 2048, @@ -123542,12 +124194,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" } ], "signatures": [ { - "id": 651, + "id": 672, "name": "returns", "variant": "signature", "kind": 4096, @@ -123584,12 +124236,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" } ], "typeParameters": [ { - "id": 652, + "id": 673, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -123606,11 +124258,11 @@ ], "type": { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -123618,7 +124270,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -123626,7 +124278,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -123641,7 +124293,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -123649,7 +124301,7 @@ }, { "type": "reference", - "target": 493, + "target": 514, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -123660,7 +124312,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -123668,7 +124320,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -123676,7 +124328,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -123689,19 +124341,19 @@ }, "overwrites": { "type": "reference", - "target": 764, + "target": 785, "name": "default.returns" } } ], "overwrites": { "type": "reference", - "target": 763, + "target": 784, "name": "default.returns" } }, { - "id": 648, + "id": 669, "name": "rollback", "variant": "declaration", "kind": 2048, @@ -123711,12 +124363,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ { - "id": 649, + "id": 670, "name": "rollback", "variant": "signature", "kind": 4096, @@ -123742,7 +124394,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "type": { @@ -123753,7 +124405,7 @@ ] }, { - "id": 574, + "id": 595, "name": "select", "variant": "declaration", "kind": 2048, @@ -123763,12 +124415,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "signatures": [ { - "id": 575, + "id": 596, "name": "select", "variant": "signature", "kind": 4096, @@ -123826,12 +124478,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "typeParameters": [ { - "id": 576, + "id": 597, "name": "Query", "variant": "typeParam", "kind": 131072, @@ -123846,18 +124498,18 @@ } }, { - "id": 577, + "id": 598, "name": "NewResultOne", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 811, + "target": 832, "typeArguments": [ { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -123865,7 +124517,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -123873,7 +124525,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -123881,7 +124533,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -123889,14 +124541,14 @@ }, { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -123910,7 +124562,7 @@ ], "parameters": [ { - "id": 578, + "id": 599, "name": "columns", "variant": "param", "kind": 32768, @@ -123927,7 +124579,7 @@ }, "type": { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -123940,7 +124592,7 @@ "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -123948,7 +124600,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -123956,7 +124608,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -123966,7 +124618,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -123980,7 +124632,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -123997,7 +124649,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -124005,7 +124657,7 @@ }, "falseType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -124015,7 +124667,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -124024,7 +124676,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -124032,7 +124684,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -124040,7 +124692,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -124055,7 +124707,7 @@ ] }, { - "id": 674, + "id": 695, "name": "setHeader", "variant": "declaration", "kind": 2048, @@ -124067,12 +124719,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "signatures": [ { - "id": 675, + "id": 696, "name": "setHeader", "variant": "signature", "kind": 4096, @@ -124092,12 +124744,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "parameters": [ { - "id": 676, + "id": 697, "name": "name", "variant": "param", "kind": 32768, @@ -124108,7 +124760,7 @@ } }, { - "id": 677, + "id": 698, "name": "value", "variant": "param", "kind": 32768, @@ -124125,19 +124777,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 748, + "target": 769, "name": "default.setHeader" } } ], "inheritedFrom": { "type": "reference", - "target": 747, + "target": 768, "name": "default.setHeader" } }, { - "id": 628, + "id": 649, "name": "single", "variant": "declaration", "kind": 2048, @@ -124147,12 +124799,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "signatures": [ { - "id": 629, + "id": 650, "name": "single", "variant": "signature", "kind": 4096, @@ -124186,12 +124838,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "typeParameters": [ { - "id": 630, + "id": 651, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -124200,7 +124852,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -124238,11 +124890,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -124250,7 +124902,7 @@ }, { "type": "reference", - "target": 471, + "target": 492, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -124264,7 +124916,7 @@ ] }, { - "id": 678, + "id": 699, "name": "then", "variant": "declaration", "kind": 2048, @@ -124276,12 +124928,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "signatures": [ { - "id": 679, + "id": 700, "name": "then", "variant": "signature", "kind": 4096, @@ -124312,23 +124964,23 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "typeParameters": [ { - "id": 680, + "id": 701, "name": "TResult1", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -124340,7 +124992,7 @@ } }, { - "id": 681, + "id": 702, "name": "TResult2", "variant": "typeParam", "kind": 131072, @@ -124353,7 +125005,7 @@ ], "parameters": [ { - "id": 682, + "id": 703, "name": "onfulfilled", "variant": "param", "kind": 32768, @@ -124378,7 +125030,7 @@ { "type": "reflection", "declaration": { - "id": 683, + "id": 704, "name": "__type", "variant": "declaration", "kind": 65536, @@ -124388,12 +125040,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "signatures": [ { - "id": 684, + "id": 705, "name": "__type", "variant": "signature", "kind": 4096, @@ -124403,23 +125055,23 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "parameters": [ { - "id": 685, + "id": 706, "name": "value", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -124436,7 +125088,7 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -124450,7 +125102,7 @@ "typeArguments": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -124469,7 +125121,7 @@ } }, { - "id": 686, + "id": 707, "name": "onrejected", "variant": "param", "kind": 32768, @@ -124494,7 +125146,7 @@ { "type": "reflection", "declaration": { - "id": 687, + "id": 708, "name": "__type", "variant": "declaration", "kind": 65536, @@ -124504,12 +125156,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "signatures": [ { - "id": 688, + "id": 709, "name": "__type", "variant": "signature", "kind": 4096, @@ -124519,12 +125171,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "parameters": [ { - "id": 689, + "id": 710, "name": "reason", "variant": "param", "kind": 32768, @@ -124540,7 +125192,7 @@ "types": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -124554,7 +125206,7 @@ "typeArguments": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -124585,14 +125237,14 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -124605,19 +125257,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 752, + "target": 773, "name": "default.then" } } ], "inheritedFrom": { "type": "reference", - "target": 751, + "target": 772, "name": "default.then" } }, { - "id": 672, + "id": 693, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -124629,12 +125281,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "signatures": [ { - "id": 673, + "id": 694, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -124660,7 +125312,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -124668,11 +125320,11 @@ "types": [ { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -124680,7 +125332,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -124688,7 +125340,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -124696,7 +125348,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -124704,7 +125356,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -124712,7 +125364,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -124720,7 +125372,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -124733,11 +125385,11 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -124745,7 +125397,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -124764,14 +125416,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 746, + "target": 767, "name": "default.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 745, + "target": 766, "name": "default.throwOnError" } } @@ -124779,16 +125431,16 @@ "groups": [ { "title": "Constructors", - "children": [547] + "children": [568] }, { "title": "Properties", - "children": [660, 663, 658, 671, 656, 659, 661, 662, 657] + "children": [681, 684, 679, 692, 677, 680, 682, 683, 678] }, { "title": "Methods", "children": [ - 625, 634, 638, 636, 610, 653, 631, 579, 690, 617, 650, 648, 574, 674, 628, 678, 672 + 646, 655, 659, 657, 631, 674, 652, 600, 711, 638, 671, 669, 595, 695, 649, 699, 693 ] } ], @@ -124797,25 +125449,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" } ], "typeParameters": [ { - "id": 698, + "id": 719, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 699, + "id": 720, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -124831,7 +125483,7 @@ } }, { - "id": 700, + "id": 721, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -124857,14 +125509,14 @@ } }, { - "id": 701, + "id": 722, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 702, + "id": 723, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -124875,7 +125527,7 @@ } }, { - "id": 703, + "id": 724, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -124886,7 +125538,7 @@ } }, { - "id": 704, + "id": 725, "name": "Method", "variant": "typeParam", "kind": 131072, @@ -124900,11 +125552,11 @@ "extendedTypes": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -124912,7 +125564,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -124932,14 +125584,14 @@ ] }, { - "id": 791, + "id": 812, "name": "PostgrestResponseFailure", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 794, + "id": 815, "name": "count", "variant": "declaration", "kind": 1024, @@ -124949,7 +125601,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L23" } ], "type": { @@ -124958,7 +125610,7 @@ } }, { - "id": 793, + "id": 814, "name": "data", "variant": "declaration", "kind": 1024, @@ -124968,7 +125620,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L22" } ], "type": { @@ -124977,7 +125629,7 @@ } }, { - "id": 792, + "id": 813, "name": "error", "variant": "declaration", "kind": 1024, @@ -124987,19 +125639,19 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L21" } ], "type": { "type": "reference", - "target": 777, + "target": 798, "name": "PostgrestError", "package": "@supabase/postgrest-js", "qualifiedName": "default" } }, { - "id": 795, + "id": 816, "name": "status", "variant": "declaration", "kind": 1024, @@ -125011,7 +125663,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -125025,7 +125677,7 @@ } }, { - "id": 796, + "id": 817, "name": "statusText", "variant": "declaration", "kind": 1024, @@ -125037,7 +125689,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -125054,7 +125706,7 @@ "groups": [ { "title": "Properties", - "children": [794, 793, 792, 795, 796] + "children": [815, 814, 813, 816, 817] } ], "sources": [ @@ -125062,7 +125714,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 20, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L20" } ], "extendedTypes": [ @@ -125078,14 +125730,14 @@ ] }, { - "id": 797, + "id": 818, "name": "PostgrestResponseSuccess", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 800, + "id": 821, "name": "count", "variant": "declaration", "kind": 1024, @@ -125095,7 +125747,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L18" } ], "type": { @@ -125113,7 +125765,7 @@ } }, { - "id": 799, + "id": 820, "name": "data", "variant": "declaration", "kind": 1024, @@ -125123,12 +125775,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L17" } ], "type": { "type": "reference", - "target": 803, + "target": 824, "name": "T", "package": "@supabase/postgrest-js", "qualifiedName": "PostgrestResponseSuccess.T", @@ -125136,7 +125788,7 @@ } }, { - "id": 798, + "id": 819, "name": "error", "variant": "declaration", "kind": 1024, @@ -125146,7 +125798,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L16" } ], "type": { @@ -125155,7 +125807,7 @@ } }, { - "id": 801, + "id": 822, "name": "status", "variant": "declaration", "kind": 1024, @@ -125167,7 +125819,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -125181,7 +125833,7 @@ } }, { - "id": 802, + "id": 823, "name": "statusText", "variant": "declaration", "kind": 1024, @@ -125193,7 +125845,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -125210,7 +125862,7 @@ "groups": [ { "title": "Properties", - "children": [800, 799, 798, 801, 802] + "children": [821, 820, 819, 822, 823] } ], "sources": [ @@ -125218,12 +125870,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 15, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L15" } ], "typeParameters": [ { - "id": 803, + "id": 824, "name": "T", "variant": "typeParam", "kind": 131072, @@ -125243,7 +125895,7 @@ ] }, { - "id": 808, + "id": 829, "name": "PostgrestClientOptions", "variant": "declaration", "kind": 2097152, @@ -125253,20 +125905,20 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/common/common.ts#L54" } ], "type": { "type": "reflection", "declaration": { - "id": 809, + "id": 830, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 810, + "id": 831, "name": "PostgrestVersion", "variant": "declaration", "kind": 1024, @@ -125278,7 +125930,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/common/common.ts#L55" } ], "type": { @@ -125290,7 +125942,7 @@ "groups": [ { "title": "Properties", - "children": [810] + "children": [831] } ], "sources": [ @@ -125298,14 +125950,14 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 54, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/common/common.ts#L54" } ] } } }, { - "id": 806, + "id": 827, "name": "PostgrestMaybeSingleResponse", "variant": "declaration", "kind": 2097152, @@ -125315,12 +125967,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L30" } ], "typeParameters": [ { - "id": 807, + "id": 828, "name": "T", "variant": "typeParam", "kind": 131072, @@ -125329,14 +125981,14 @@ ], "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "union", "types": [ { "type": "reference", - "target": 807, + "target": 828, "name": "T", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125353,7 +126005,7 @@ } }, { - "id": 789, + "id": 810, "name": "PostgrestResponse", "variant": "declaration", "kind": 2097152, @@ -125363,12 +126015,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L31" } ], "typeParameters": [ { - "id": 790, + "id": 811, "name": "T", "variant": "typeParam", "kind": 131072, @@ -125377,13 +126029,13 @@ ], "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "array", "elementType": { "type": "reference", - "target": 790, + "target": 811, "name": "T", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125395,7 +126047,7 @@ } }, { - "id": 804, + "id": 825, "name": "PostgrestSingleResponse", "variant": "declaration", "kind": 2097152, @@ -125405,12 +126057,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L29" } ], "typeParameters": [ { - "id": 805, + "id": 826, "name": "T", "variant": "typeParam", "kind": 131072, @@ -125422,11 +126074,11 @@ "types": [ { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 805, + "target": 826, "name": "T", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125437,7 +126089,7 @@ }, { "type": "reference", - "target": 791, + "target": 812, "name": "PostgrestResponseFailure", "package": "@supabase/postgrest-js" } @@ -125445,7 +126097,7 @@ } }, { - "id": 811, + "id": 832, "name": "UnstableGetResult", "variant": "declaration", "kind": 2097152, @@ -125463,12 +126115,12 @@ "fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" } ], "typeParameters": [ { - "id": 812, + "id": 833, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -125492,7 +126144,7 @@ } }, { - "id": 813, + "id": 834, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -125526,7 +126178,7 @@ } }, { - "id": 814, + "id": 835, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -125541,7 +126193,7 @@ } }, { - "id": 815, + "id": 836, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -125556,7 +126208,7 @@ } }, { - "id": 816, + "id": 837, "name": "Query", "variant": "typeParam", "kind": 131072, @@ -125575,14 +126227,14 @@ } }, { - "id": 817, + "id": 838, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -125599,7 +126251,7 @@ "typeArguments": [ { "type": "reference", - "target": 812, + "target": 833, "name": "Schema", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125623,7 +126275,7 @@ "typeArguments": [ { "type": "reference", - "target": 816, + "target": 837, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125664,7 +126316,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125719,7 +126371,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 815, + "target": 836, "name": "Relationships", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125739,7 +126391,7 @@ "typeArguments": [ { "type": "reference", - "target": 816, + "target": 837, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125797,7 +126449,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125808,7 +126460,7 @@ }, "trueType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125820,7 +126472,7 @@ }, { "type": "reference", - "target": 813, + "target": 834, "name": "Row", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125842,7 +126494,7 @@ }, "falseType": { "type": "reference", - "target": 813, + "target": 834, "name": "Row", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125859,7 +126511,7 @@ "typeArguments": [ { "type": "reference", - "target": 816, + "target": 837, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125900,7 +126552,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125913,7 +126565,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 815, + "target": 836, "name": "Relationships", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -125939,35 +126591,35 @@ "typeArguments": [ { "type": "reference", - "target": 817, + "target": 838, "name": "ClientOptions", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 812, + "target": 833, "name": "Schema", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 813, + "target": 834, "name": "Row", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 815, + "target": 836, "name": "Relationships", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -126048,7 +126700,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L17" } ], "type": { @@ -126071,14 +126723,14 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L22" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 705, + "target": 726, "name": "default", "package": "@supabase/postgrest-js" } @@ -126095,7 +126747,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L18" } ], "type": { @@ -126119,14 +126771,14 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L23" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 777, + "target": 798, "name": "default", "package": "@supabase/postgrest-js" } @@ -126143,7 +126795,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L20" } ], "type": { @@ -126167,7 +126819,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L19" } ], "type": { @@ -126191,14 +126843,14 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L21" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 546, + "target": 567, "name": "default", "package": "@supabase/postgrest-js" } @@ -126216,7 +126868,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L17" } ] } @@ -126226,15 +126878,15 @@ "groups": [ { "title": "Classes", - "children": [705, 9, 777, 170, 75, 546] + "children": [726, 9, 798, 170, 75, 567] }, { "title": "Interfaces", - "children": [791, 797] + "children": [812, 818] }, { "title": "Type Aliases", - "children": [808, 806, 789, 804, 811] + "children": [829, 827, 810, 825, 832] }, { "title": "Variables", @@ -127592,11 +128244,11 @@ }, "289": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.is" + "qualifiedName": "default.regexMatch" }, "290": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.is" + "qualifiedName": "default.regexMatch" }, "291": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127608,11 +128260,11 @@ }, "293": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "pattern" }, "294": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.is" + "qualifiedName": "default.regexMatch" }, "295": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127620,15 +128272,15 @@ }, "296": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "pattern" }, "297": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.in" + "qualifiedName": "default.regexIMatch" }, "298": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.in" + "qualifiedName": "default.regexIMatch" }, "299": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127640,31 +128292,31 @@ }, "301": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "values" + "qualifiedName": "pattern" }, "302": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.contains" + "qualifiedName": "default.regexIMatch" }, "303": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.contains" + "qualifiedName": "column" }, "304": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "pattern" }, "305": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "default.is" }, "306": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "default.is" }, "307": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.contains" + "qualifiedName": "ColumnName" }, "308": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127676,27 +128328,27 @@ }, "310": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.containedBy" + "qualifiedName": "default.is" }, "311": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.containedBy" + "qualifiedName": "column" }, "312": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "value" }, "313": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "default.isDistinct" }, "314": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "default.isDistinct" }, "315": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.containedBy" + "qualifiedName": "ColumnName" }, "316": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127708,11 +128360,11 @@ }, "318": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeGt" + "qualifiedName": "default.in" }, "319": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeGt" + "qualifiedName": "default.in" }, "320": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127724,31 +128376,31 @@ }, "322": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "range" + "qualifiedName": "values" }, "323": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeGt" + "qualifiedName": "default.contains" }, "324": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "default.contains" }, "325": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "range" + "qualifiedName": "ColumnName" }, "326": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeGte" + "qualifiedName": "column" }, "327": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeGte" + "qualifiedName": "value" }, "328": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "default.contains" }, "329": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127756,31 +128408,31 @@ }, "330": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "range" + "qualifiedName": "value" }, "331": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeGte" + "qualifiedName": "default.containedBy" }, "332": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "default.containedBy" }, "333": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "range" + "qualifiedName": "ColumnName" }, "334": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeLt" + "qualifiedName": "column" }, "335": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeLt" + "qualifiedName": "value" }, "336": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "default.containedBy" }, "337": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127788,31 +128440,31 @@ }, "338": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "range" + "qualifiedName": "value" }, "339": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeLt" + "qualifiedName": "default.rangeGt" }, "340": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "default.rangeGt" }, "341": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "range" + "qualifiedName": "ColumnName" }, "342": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeLte" + "qualifiedName": "column" }, "343": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeLte" + "qualifiedName": "range" }, "344": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "default.rangeGt" }, "345": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127824,27 +128476,27 @@ }, "347": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeLte" + "qualifiedName": "default.rangeGte" }, "348": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "default.rangeGte" }, "349": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "range" + "qualifiedName": "ColumnName" }, "350": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeAdjacent" + "qualifiedName": "column" }, "351": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeAdjacent" + "qualifiedName": "range" }, "352": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "default.rangeGte" }, "353": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127856,27 +128508,27 @@ }, "355": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.rangeAdjacent" + "qualifiedName": "default.rangeLt" }, "356": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "default.rangeLt" }, "357": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "range" + "qualifiedName": "ColumnName" }, "358": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.overlaps" + "qualifiedName": "column" }, "359": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.overlaps" + "qualifiedName": "range" }, "360": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "default.rangeLt" }, "361": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127884,31 +128536,31 @@ }, "362": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "range" }, "363": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.overlaps" + "qualifiedName": "default.rangeLte" }, "364": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "default.rangeLte" }, "365": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "ColumnName" }, "366": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.textSearch" + "qualifiedName": "column" }, "367": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.textSearch" + "qualifiedName": "range" }, "368": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "default.rangeLte" }, "369": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -127916,171 +128568,171 @@ }, "370": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "query" + "qualifiedName": "range" }, "371": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "options" + "qualifiedName": "default.rangeAdjacent" }, "372": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "__type" + "qualifiedName": "default.rangeAdjacent" }, "373": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "__type.config" + "qualifiedName": "ColumnName" }, "374": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "__type.type" + "qualifiedName": "column" }, "375": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.textSearch" + "qualifiedName": "range" }, "376": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "default.rangeAdjacent" }, "377": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "query" + "qualifiedName": "column" }, "378": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "options" + "qualifiedName": "range" }, "379": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "__type" + "qualifiedName": "default.overlaps" }, "380": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "__type.config" + "qualifiedName": "default.overlaps" }, "381": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "__type.type" + "qualifiedName": "ColumnName" }, "382": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.match" + "qualifiedName": "column" }, "383": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.match" + "qualifiedName": "value" }, "384": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "default.overlaps" }, "385": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "query" + "qualifiedName": "column" }, "386": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.match" + "qualifiedName": "value" }, "387": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "query" + "qualifiedName": "default.textSearch" }, "388": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.not" + "qualifiedName": "default.textSearch" }, "389": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.not" + "qualifiedName": "ColumnName" }, "390": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "column" }, "391": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "query" }, "392": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "operator" + "qualifiedName": "options" }, "393": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "__type" }, "394": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.not" + "qualifiedName": "__type.config" }, "395": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "__type.type" }, "396": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "operator" + "qualifiedName": "default.textSearch" }, "397": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "column" }, "398": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.or" + "qualifiedName": "query" }, "399": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.or" + "qualifiedName": "options" }, "400": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "filters" + "qualifiedName": "__type" }, "401": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "__1" + "qualifiedName": "__type.config" }, "402": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.type" }, "403": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "__type.foreignTable" + "qualifiedName": "default.match" }, "404": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "__type.referencedTable" + "qualifiedName": "default.match" }, "405": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.filter" + "qualifiedName": "ColumnName" }, "406": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.filter" + "qualifiedName": "query" }, "407": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "ColumnName" + "qualifiedName": "default.match" }, "408": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "column" + "qualifiedName": "query" }, "409": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "operator" + "qualifiedName": "default.not" }, "410": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "default.not" }, "411": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.filter" + "qualifiedName": "ColumnName" }, "412": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -128095,1614 +128747,1698 @@ "qualifiedName": "value" }, "415": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.not" + }, + "416": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "417": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "operator" + }, + "418": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "value" + }, + "419": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.or" + }, + "420": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.or" + }, + "421": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "filters" + }, + "422": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "__1" + }, + "423": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "__type" + }, + "424": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "__type.foreignTable" + }, + "425": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "__type.referencedTable" + }, + "426": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.filter" + }, + "427": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.filter" + }, + "428": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ColumnName" + }, + "429": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "430": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "operator" + }, + "431": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "value" + }, + "432": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.filter" + }, + "433": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "434": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "operator" + }, + "435": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "value" + }, + "436": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "416": { + "437": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "417": { + "438": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "Query" }, - "418": { + "439": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResultOne" }, - "419": { + "440": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "columns" }, - "420": { + "441": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "421": { + "442": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "422": { + "443": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "423": { + "444": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "424": { + "445": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "425": { + "446": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "426": { + "447": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "427": { + "448": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "428": { + "449": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "429": { + "450": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "430": { + "451": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "431": { + "452": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "432": { + "453": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "433": { + "454": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "434": { + "455": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "435": { + "456": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "436": { + "457": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "437": { + "458": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "438": { + "459": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "439": { + "460": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "440": { + "461": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "441": { + "462": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "442": { + "463": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "443": { + "464": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "444": { + "465": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "445": { + "466": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "446": { + "467": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "447": { + "468": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "448": { + "469": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "449": { + "470": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "450": { + "471": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "451": { + "472": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "452": { + "473": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "453": { + "474": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "count" }, - "454": { + "475": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__1" }, - "455": { + "476": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "456": { + "477": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "457": { + "478": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "458": { + "479": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "459": { + "480": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "460": { + "481": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "from" }, - "461": { + "482": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "to" }, - "462": { + "483": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__2" }, - "463": { + "484": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "464": { + "485": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "465": { + "486": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "466": { + "487": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "467": { + "488": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "468": { + "489": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "signal" }, - "469": { + "490": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "470": { + "491": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "471": { + "492": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "472": { + "493": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "473": { + "494": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "474": { + "495": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "475": { + "496": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "476": { + "497": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "477": { + "498": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "478": { + "499": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "479": { + "500": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "480": { + "501": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "481": { + "502": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__0" }, - "482": { + "503": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "483": { + "504": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.analyze" }, - "484": { + "505": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.verbose" }, - "485": { + "506": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.settings" }, - "486": { + "507": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.buffers" }, - "487": { + "508": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.wal" }, - "488": { + "509": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.format" }, - "489": { + "510": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "490": { + "511": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "491": { + "512": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "492": { + "513": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "493": { + "514": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResult" }, - "494": { + "515": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "495": { + "516": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "496": { + "517": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "value" }, - "497": { + "518": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.method" }, - "498": { + "519": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.url" }, - "499": { + "520": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.headers" }, - "500": { + "521": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.schema" }, - "501": { + "522": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.body" }, - "502": { + "523": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.shouldThrowOnError" }, - "503": { + "524": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.signal" }, - "504": { + "525": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.fetch" }, - "505": { + "526": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "506": { + "527": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "507": { + "528": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "508": { + "529": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "509": { + "530": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "510": { + "531": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "511": { + "532": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "512": { + "533": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.isMaybeSingle" }, - "513": { + "534": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "514": { + "535": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "515": { + "536": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "516": { + "537": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "517": { + "538": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "name" }, - "518": { + "539": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "519": { + "540": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "520": { + "541": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "521": { + "542": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult1" }, - "522": { + "543": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult2" }, - "523": { + "544": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onfulfilled" }, - "524": { + "545": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "525": { + "546": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "526": { + "547": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "527": { + "548": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onrejected" }, - "528": { + "549": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "529": { + "550": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "530": { + "551": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "reason" }, - "531": { + "552": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "532": { + "553": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "533": { + "554": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "534": { + "555": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "Options" }, - "535": { + "556": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "536": { + "557": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "537": { + "558": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "538": { + "559": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "539": { + "560": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "540": { + "561": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Schema" }, - "541": { + "562": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Row" }, - "542": { + "563": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Result" }, - "543": { + "564": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.RelationName" }, - "544": { + "565": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Relationships" }, - "545": { + "566": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Method" }, - "546": { + "567": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default" }, - "547": { + "568": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.__constructor" }, - "548": { + "569": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default" }, - "549": { + "570": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "550": { + "571": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Schema" }, - "551": { + "572": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Row" }, - "552": { + "573": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Result" }, - "553": { + "574": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.RelationName" }, - "554": { + "575": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Relationships" }, - "555": { + "576": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Method" }, - "556": { + "577": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "builder" }, - "557": { + "578": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "558": { + "579": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.method" }, - "559": { + "580": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.url" }, - "560": { + "581": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.headers" }, - "561": { + "582": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.schema" }, - "562": { + "583": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.body" }, - "563": { + "584": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.shouldThrowOnError" }, - "564": { + "585": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.signal" }, - "565": { + "586": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.fetch" }, - "566": { + "587": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "567": { + "588": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "568": { + "589": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "569": { + "590": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "570": { + "591": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "571": { + "592": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "572": { + "593": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "573": { + "594": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.isMaybeSingle" }, - "574": { + "595": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "575": { + "596": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "576": { + "597": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "Query" }, - "577": { + "598": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResultOne" }, - "578": { + "599": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "columns" }, - "579": { + "600": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "580": { + "601": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "581": { + "602": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "582": { + "603": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "583": { + "604": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "584": { + "605": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "585": { + "606": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "586": { + "607": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "587": { + "608": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "588": { + "609": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "589": { + "610": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "590": { + "611": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "591": { + "612": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "592": { + "613": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "593": { + "614": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "594": { + "615": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "595": { + "616": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "596": { + "617": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "597": { + "618": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "598": { + "619": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "599": { + "620": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "600": { + "621": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "601": { + "622": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "602": { + "623": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "603": { + "624": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "604": { + "625": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "605": { + "626": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "606": { + "627": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "607": { + "628": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "608": { + "629": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "609": { + "630": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "610": { + "631": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "611": { + "632": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "612": { + "633": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "count" }, - "613": { + "634": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__1" }, - "614": { + "635": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "615": { + "636": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "616": { + "637": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "617": { + "638": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "618": { + "639": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "619": { + "640": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "from" }, - "620": { + "641": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "to" }, - "621": { + "642": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__2" }, - "622": { + "643": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "623": { + "644": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "624": { + "645": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "625": { + "646": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "626": { + "647": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "627": { + "648": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "signal" }, - "628": { + "649": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "629": { + "650": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "630": { + "651": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "631": { + "652": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "632": { + "653": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "633": { + "654": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "634": { + "655": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "635": { + "656": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "636": { + "657": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "637": { + "658": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "638": { + "659": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "639": { + "660": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "640": { + "661": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__0" }, - "641": { + "662": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "642": { + "663": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.analyze" }, - "643": { + "664": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.verbose" }, - "644": { + "665": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.settings" }, - "645": { + "666": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.buffers" }, - "646": { + "667": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.wal" }, - "647": { + "668": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.format" }, - "648": { + "669": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "649": { + "670": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "650": { + "671": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "651": { + "672": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "652": { + "673": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResult" }, - "653": { + "674": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "654": { + "675": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "655": { + "676": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "value" }, - "656": { + "677": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.method" }, - "657": { + "678": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.url" }, - "658": { + "679": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.headers" }, - "659": { + "680": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.schema" }, - "660": { + "681": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.body" }, - "661": { + "682": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.shouldThrowOnError" }, - "662": { + "683": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.signal" }, - "663": { + "684": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.fetch" }, - "664": { + "685": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "665": { + "686": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "666": { + "687": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "667": { + "688": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "668": { + "689": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "669": { + "690": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "670": { + "691": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "671": { + "692": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.isMaybeSingle" }, - "672": { + "693": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "673": { + "694": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "674": { + "695": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "675": { + "696": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "676": { + "697": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "name" }, - "677": { + "698": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "678": { + "699": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "679": { + "700": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "680": { + "701": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult1" }, - "681": { + "702": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult2" }, - "682": { + "703": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onfulfilled" }, - "683": { + "704": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "684": { + "705": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "685": { + "706": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "686": { + "707": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onrejected" }, - "687": { + "708": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "688": { + "709": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "689": { + "710": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "reason" }, - "690": { + "711": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "691": { + "712": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "692": { + "713": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "693": { + "714": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "Options" }, - "694": { + "715": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "695": { + "716": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "696": { + "717": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "697": { + "718": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "698": { + "719": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "699": { + "720": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Schema" }, - "700": { + "721": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Row" }, - "701": { + "722": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Result" }, - "702": { + "723": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.RelationName" }, - "703": { + "724": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Relationships" }, - "704": { + "725": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Method" }, - "705": { + "726": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default" }, - "706": { + "727": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.__constructor" }, - "707": { + "728": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default" }, - "708": { + "729": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "709": { + "730": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.Result" }, - "710": { + "731": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ThrowOnError" }, - "711": { + "732": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "builder" }, - "712": { + "733": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "713": { + "734": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.method" }, - "714": { + "735": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.url" }, - "715": { + "736": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.headers" }, - "716": { + "737": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.schema" }, - "717": { + "738": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.body" }, - "718": { + "739": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.shouldThrowOnError" }, - "719": { + "740": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.signal" }, - "720": { + "741": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.fetch" }, - "721": { + "742": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "722": { + "743": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "723": { + "744": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "724": { + "745": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "725": { + "746": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "726": { + "747": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "727": { + "748": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "728": { + "749": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.isMaybeSingle" }, - "729": { + "750": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.method" }, - "730": { + "751": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.url" }, - "731": { + "752": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.headers" }, - "732": { + "753": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.schema" }, - "733": { + "754": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.body" }, - "734": { + "755": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.shouldThrowOnError" }, - "735": { + "756": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.signal" }, - "736": { + "757": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.fetch" }, - "737": { + "758": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "738": { + "759": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "739": { + "760": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "740": { + "761": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "741": { + "762": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "742": { + "763": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "743": { + "764": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "744": { + "765": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.isMaybeSingle" }, - "745": { + "766": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "746": { + "767": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "747": { + "768": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "748": { + "769": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "749": { + "770": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "name" }, - "750": { + "771": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "751": { + "772": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "752": { + "773": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "753": { + "774": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult1" }, - "754": { + "775": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult2" }, - "755": { + "776": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onfulfilled" }, - "756": { + "777": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "757": { + "778": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "758": { + "779": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "759": { + "780": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onrejected" }, - "760": { + "781": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "761": { + "782": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "762": { + "783": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "reason" }, - "763": { + "784": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.returns" }, - "764": { + "785": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.returns" }, - "765": { + "786": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "766": { + "787": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "767": { + "788": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "768": { + "789": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "769": { + "790": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "Options" }, - "770": { + "791": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "771": { + "792": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "772": { + "793": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "773": { + "794": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "774": { + "795": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "775": { + "796": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.Result" }, - "776": { + "797": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ThrowOnError" }, - "777": { + "798": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default" }, - "778": { + "799": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.__constructor" }, - "779": { + "800": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default" }, - "780": { + "801": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "context" }, - "781": { + "802": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type" }, - "782": { + "803": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.message" }, - "783": { + "804": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.details" }, - "784": { + "805": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.hint" }, - "785": { + "806": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.code" }, - "786": { + "807": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.details" }, - "787": { + "808": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.hint" }, - "788": { + "809": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.code" }, - "789": { + "810": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponse" }, - "790": { + "811": { "sourceFileName": "src/types/types.ts", "qualifiedName": "T" }, - "791": { + "812": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure" }, - "792": { + "813": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure.error" }, - "793": { + "814": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure.data" }, - "794": { + "815": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure.count" }, - "795": { + "816": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.status" }, - "796": { + "817": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.statusText" }, - "797": { + "818": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess" }, - "798": { + "819": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.error" }, - "799": { + "820": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.data" }, - "800": { + "821": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.count" }, - "801": { + "822": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.status" }, - "802": { + "823": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.statusText" }, - "803": { + "824": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.T" }, - "804": { + "825": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestSingleResponse" }, - "805": { + "826": { "sourceFileName": "src/types/types.ts", "qualifiedName": "T" }, - "806": { + "827": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestMaybeSingleResponse" }, - "807": { + "828": { "sourceFileName": "src/types/types.ts", "qualifiedName": "T" }, - "808": { + "829": { "sourceFileName": "src/types/common/common.ts", "qualifiedName": "ClientServerOptions" }, - "809": { + "830": { "sourceFileName": "src/types/common/common.ts", "qualifiedName": "__type" }, - "810": { + "831": { "sourceFileName": "src/types/common/common.ts", "qualifiedName": "__type.PostgrestVersion" }, - "811": { + "832": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "GetResult" }, - "812": { + "833": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Schema" }, - "813": { + "834": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Row" }, - "814": { + "835": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "RelationName" }, - "815": { + "836": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Relationships" }, - "816": { + "837": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Query" }, - "817": { + "838": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "ClientOptions" } @@ -129742,7 +130478,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L135" } ], "type": { @@ -129761,7 +130497,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L137" } ], "type": { @@ -129780,7 +130516,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 136, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L136" } ], "type": { @@ -129799,7 +130535,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L138" } ], "type": { @@ -129819,7 +130555,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 134, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L134" } ] }, @@ -129841,7 +130577,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L128" } ], "type": { @@ -129860,7 +130596,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 131, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L131" } ], "type": { @@ -129879,7 +130615,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 129, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L129" } ], "type": { @@ -129898,7 +130634,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L130" } ], "type": { @@ -129918,7 +130654,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 127, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L127" } ] }, @@ -129940,7 +130676,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 33, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L33" } ], "type": { @@ -129959,7 +130695,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L34" } ], "type": { @@ -129978,7 +130714,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L32" } ], "type": { @@ -129998,7 +130734,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L31" } ] }, @@ -130020,7 +130756,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L145" } ], "type": { @@ -130039,7 +130775,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 144, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L144" } ], "type": { @@ -130058,7 +130794,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L142" } ], "type": { @@ -130077,7 +130813,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L143" } ], "type": { @@ -130097,7 +130833,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 141, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L141" } ] }, @@ -130127,7 +130863,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L200" } ], "signatures": [ @@ -130161,7 +130897,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L200" } ], "parameters": [ @@ -130234,7 +130970,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 165, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L165" } ], "type": { @@ -130250,7 +130986,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 165, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L165" } ], "indexSignatures": [ @@ -130265,7 +131001,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 166, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L166" } ], "parameters": [ @@ -130303,7 +131039,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 169, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L169" } ], "type": { @@ -130327,7 +131063,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L168" } ], "type": { @@ -130343,7 +131079,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 168, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L168" } ], "indexSignatures": [ @@ -130358,7 +131094,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 168, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L168" } ], "parameters": [ @@ -130396,7 +131132,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 170, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L170" } ], "type": { @@ -130415,7 +131151,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 167, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L167" } ], "type": { @@ -130435,7 +131171,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 166, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L166" } ] } @@ -130458,7 +131194,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L180" } ], "type": { @@ -130477,7 +131213,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 175, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L175" } ], "type": { @@ -130497,7 +131233,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L176" } ], "type": { @@ -130524,7 +131260,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 203, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L203" } ], "type": { @@ -130546,7 +131282,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L179" } ], "type": { @@ -130568,7 +131304,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L182" } ], "type": { @@ -130587,7 +131323,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L178" } ], "type": { @@ -130616,7 +131352,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L177" } ], "type": { @@ -130643,7 +131379,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 204, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L204" } ], "type": { @@ -130665,7 +131401,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 174, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L174" } ], "type": { @@ -130690,7 +131426,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L181" } ], "type": { @@ -130709,7 +131445,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 173, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L173" } ], "type": { @@ -130738,7 +131474,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 202, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L202" } ], "type": { @@ -130757,7 +131493,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 549, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L549" } ], "signatures": [ @@ -130791,7 +131527,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 549, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L549" } ], "parameters": [ @@ -130869,7 +131605,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 552, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L552" } ], "type": { @@ -130889,7 +131625,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 552, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L552" } ] } @@ -130927,7 +131663,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 553, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L553" } ], "type": { @@ -130947,7 +131683,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 553, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L553" } ] } @@ -130972,7 +131708,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 553, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L553" } ], "type": { @@ -130991,7 +131727,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 553, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L553" } ], "type": { @@ -131010,7 +131746,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 553, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L553" } ], "type": { @@ -131030,7 +131766,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 553, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L553" } ] } @@ -131055,91 +131791,91 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 416, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L524" } ], "signatures": [ @@ -131162,7 +131898,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 416, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L416" } ], "parameters": [ @@ -131203,7 +131939,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 418, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L418" } ], "type": { @@ -131223,7 +131959,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 418, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L418" } ] } @@ -131248,7 +131984,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 419, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L419" } ], "signatures": [ @@ -131263,7 +131999,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 419, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L419" } ], "type": { @@ -131303,7 +132039,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 421, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L421" } ], "typeParameters": [ @@ -131326,7 +132062,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 421, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L421" } ], "indexSignatures": [ @@ -131341,7 +132077,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 421, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L421" } ], "parameters": [ @@ -131405,7 +132141,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 423, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L423" } ], "type": { @@ -131425,7 +132161,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 423, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L423" } ] } @@ -131450,7 +132186,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 424, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L424" } ], "signatures": [ @@ -131465,7 +132201,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 424, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L424" } ], "parameters": [ @@ -131529,7 +132265,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L426" } ], "typeParameters": [ @@ -131552,7 +132288,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 426, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L426" } ], "indexSignatures": [ @@ -131567,7 +132303,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 426, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L426" } ], "parameters": [ @@ -131631,7 +132367,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 428, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L428" } ], "type": { @@ -131651,7 +132387,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 428, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L428" } ] } @@ -131676,7 +132412,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 429, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L429" } ], "signatures": [ @@ -131691,7 +132427,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 429, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L429" } ], "parameters": [ @@ -131755,7 +132491,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 431, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L431" } ], "typeParameters": [ @@ -131778,7 +132514,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 431, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L431" } ], "indexSignatures": [ @@ -131793,7 +132529,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 431, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L431" } ], "parameters": [ @@ -131869,7 +132605,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 434, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L434" } ], "signatures": [ @@ -131884,7 +132620,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 434, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L434" } ], "parameters": [ @@ -131948,7 +132684,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 436, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L436" } ], "typeParameters": [ @@ -131971,7 +132707,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 436, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L436" } ], "indexSignatures": [ @@ -131986,7 +132722,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 436, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L436" } ], "parameters": [ @@ -132062,7 +132798,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 439, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L439" } ], "signatures": [ @@ -132077,7 +132813,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 439, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L439" } ], "parameters": [ @@ -132141,7 +132877,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 441, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L441" } ], "typeParameters": [ @@ -132164,7 +132900,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 441, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L441" } ], "indexSignatures": [ @@ -132179,7 +132915,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 441, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L441" } ], "parameters": [ @@ -132255,7 +132991,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 444, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L444" } ], "signatures": [ @@ -132270,7 +133006,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 444, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L444" } ], "parameters": [ @@ -132334,7 +133070,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 446, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L446" } ], "typeParameters": [ @@ -132357,7 +133093,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 446, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L446" } ], "indexSignatures": [ @@ -132372,7 +133108,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 446, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L446" } ], "parameters": [ @@ -132448,7 +133184,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 449, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L449" } ], "signatures": [ @@ -132463,7 +133199,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 449, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L449" } ], "parameters": [ @@ -132527,7 +133263,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L457" } ], "parameters": [ @@ -132584,7 +133320,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 459, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L459" } ], "type": { @@ -132604,7 +133340,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 459, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L459" } ] } @@ -132637,7 +133373,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 460, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L460" } ], "signatures": [ @@ -132652,7 +133388,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 460, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L460" } ], "parameters": [ @@ -132682,7 +133418,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 462, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L462" } ], "type": { @@ -132703,7 +133439,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 463, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ], "type": { @@ -132726,7 +133462,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 465, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L465" } ], "type": { @@ -132747,7 +133483,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 464, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L464" } ], "type": { @@ -132767,7 +133503,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 463, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L463" } ] } @@ -132784,7 +133520,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 461, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L461" } ], "type": { @@ -132804,7 +133540,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 460, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L460" } ], "indexSignatures": [ @@ -132819,7 +133555,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 467, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L467" } ], "parameters": [ @@ -132882,7 +133618,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 470, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L470" } ], "typeParameters": [ @@ -132905,7 +133641,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 470, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L470" } ], "indexSignatures": [ @@ -132920,7 +133656,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 470, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L470" } ], "parameters": [ @@ -132984,7 +133720,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 472, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L472" } ], "type": { @@ -133004,7 +133740,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 472, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L472" } ] } @@ -133029,7 +133765,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 473, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "signatures": [ @@ -133044,7 +133780,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 473, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ], "parameters": [ @@ -133074,7 +133810,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 475, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L475" } ], "type": { @@ -133095,7 +133831,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 476, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ], "type": { @@ -133118,7 +133854,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 478, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L478" } ], "type": { @@ -133139,7 +133875,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 477, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L477" } ], "type": { @@ -133159,7 +133895,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 476, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L476" } ] } @@ -133176,7 +133912,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 480, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L480" } ], "type": { @@ -133198,7 +133934,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 474, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L474" } ], "type": { @@ -133218,7 +133954,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 473, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L473" } ] } @@ -133262,7 +133998,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 483, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L483" } ], "typeParameters": [ @@ -133331,7 +134067,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 485, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L485" } ], "type": { @@ -133354,7 +134090,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 485, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L485" } ] } @@ -133379,7 +134115,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 486, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L486" } ], "signatures": [ @@ -133394,7 +134130,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 486, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L486" } ], "parameters": [ @@ -133424,7 +134160,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 488, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L488" } ], "type": { @@ -133446,7 +134182,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 489, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L489" } ], "type": { @@ -133479,7 +134215,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 487, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L487" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L487" } ], "type": { @@ -133499,7 +134235,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 486, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L486" } ] } @@ -133543,7 +134279,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 492, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "typeParameters": [ @@ -133566,7 +134302,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 492, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "indexSignatures": [ @@ -133581,7 +134317,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 492, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L492" } ], "parameters": [ @@ -133645,7 +134381,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 494, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L494" } ], "type": { @@ -133668,7 +134404,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 494, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L494" } ] } @@ -133693,7 +134429,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 495, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L495" } ], "signatures": [ @@ -133708,7 +134444,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 495, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L495" } ], "parameters": [ @@ -133738,7 +134474,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 497, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L497" } ], "type": { @@ -133760,7 +134496,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 498, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L498" } ], "type": { @@ -133793,7 +134529,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 496, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L496" } ], "type": { @@ -133813,7 +134549,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 495, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L495" } ] } @@ -133857,7 +134593,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 501, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L501" } ], "typeParameters": [ @@ -133880,7 +134616,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 501, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L501" } ], "indexSignatures": [ @@ -133895,7 +134631,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 501, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L501" } ], "parameters": [ @@ -133959,7 +134695,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 503, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L503" } ], "type": { @@ -133982,7 +134718,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 503, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L503" } ] } @@ -134007,7 +134743,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 504, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ], "signatures": [ @@ -134022,7 +134758,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 504, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ], "parameters": [ @@ -134052,7 +134788,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 506, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L506" } ], "type": { @@ -134074,7 +134810,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 507, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L507" } ], "type": { @@ -134107,7 +134843,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 505, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L505" } ], "type": { @@ -134127,7 +134863,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 504, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L504" } ] } @@ -134171,7 +134907,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ], "typeParameters": [ @@ -134194,7 +134930,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 510, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ], "indexSignatures": [ @@ -134209,7 +134945,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 510, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L510" } ], "parameters": [ @@ -134273,7 +135009,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 512, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L512" } ], "type": { @@ -134296,7 +135032,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 512, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L512" } ] } @@ -134321,7 +135057,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 513, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L513" } ], "signatures": [ @@ -134336,7 +135072,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 513, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L513" } ], "parameters": [ @@ -134366,7 +135102,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 515, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L515" } ], "type": { @@ -134388,7 +135124,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 516, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L516" } ], "type": { @@ -134421,7 +135157,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 514, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L514" } ], "type": { @@ -134441,7 +135177,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 513, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L513" } ] } @@ -134485,7 +135221,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 519, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ], "typeParameters": [ @@ -134508,7 +135244,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 519, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ], "indexSignatures": [ @@ -134523,7 +135259,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 519, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L519" } ], "parameters": [ @@ -134597,7 +135333,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 522, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L522" } ], "signatures": [ @@ -134612,7 +135348,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 522, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L522" } ], "parameters": [ @@ -134659,7 +135395,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L378" } ], "signatures": [ @@ -134682,7 +135418,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L378" } ], "typeParameters": [ @@ -134705,7 +135441,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 378, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L378" } ], "indexSignatures": [ @@ -134720,7 +135456,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 378, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L378" } ], "parameters": [ @@ -134785,7 +135521,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 609, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L609" } ], "signatures": [ @@ -134808,7 +135544,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 609, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L609" } ], "parameters": [ @@ -134854,7 +135590,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 612, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L612" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L612" } ], "type": { @@ -134883,7 +135619,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 613, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L613" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L613" } ], "type": { @@ -134910,7 +135646,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 611, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L611" } ], "type": { @@ -134943,7 +135679,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 610, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L610" } ], "indexSignatures": [ @@ -134958,7 +135694,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 614, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L614" } ], "parameters": [ @@ -135010,7 +135746,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 616, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L616" } ], "indexSignatures": [ @@ -135025,7 +135761,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 616, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L616" } ], "parameters": [ @@ -135083,7 +135819,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L270" } ], "signatures": [ @@ -135106,7 +135842,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 270, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L270" } ], "parameters": [ @@ -135131,7 +135867,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 271, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L271" } ], "signatures": [ @@ -135146,7 +135882,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 271, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L271" } ], "parameters": [ @@ -135225,7 +135961,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 735, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L735" } ], "signatures": [ @@ -135248,7 +135984,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 735, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L735" } ], "type": { @@ -135269,7 +136005,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L386" } ], "signatures": [ @@ -135300,7 +136036,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 386, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L386" } ], "parameters": [ @@ -135323,7 +136059,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 387, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L387" } ], "indexSignatures": [ @@ -135338,7 +136074,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 387, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L387" } ], "parameters": [ @@ -135382,7 +136118,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 388, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L388" } ], "indexSignatures": [ @@ -135397,7 +136133,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 388, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L388" } ], "parameters": [ @@ -135455,7 +136191,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 696, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L696" } ], "signatures": [ @@ -135486,7 +136222,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 696, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L696" } ], "parameters": [ @@ -135545,7 +136281,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 403, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L403" } ], "signatures": [ @@ -135568,7 +136304,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 403, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L403" } ], "parameters": [ @@ -135591,7 +136327,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 403, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L403" } ], "indexSignatures": [ @@ -135606,7 +136342,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 403, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L403" } ], "parameters": [ @@ -135664,7 +136400,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L683" } ], "signatures": [ @@ -135687,7 +136423,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 683, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L683" } ], "parameters": [ @@ -135710,7 +136446,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 683, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L683" } ], "indexSignatures": [ @@ -135725,7 +136461,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 683, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L683" } ], "parameters": [ @@ -135778,7 +136514,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 164, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L164" } ] }, @@ -135800,7 +136536,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "signatures": [ @@ -135834,7 +136570,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L176" } ], "parameters": [ @@ -135982,7 +136718,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L140" } ], "type": { @@ -136005,7 +136741,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L140" } ], "signatures": [ @@ -136020,7 +136756,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 140, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L140" } ], "type": { @@ -136066,7 +136802,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L103" } ], "type": { @@ -136095,7 +136831,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L104" } ], "type": { @@ -136124,7 +136860,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 105, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L105" } ], "type": { @@ -136150,7 +136886,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L125" } ], "type": { @@ -136181,7 +136917,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 123, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L123" } ], "type": { @@ -136205,7 +136941,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L122" } ], "type": { @@ -136229,7 +136965,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 106, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L106" } ], "type": { @@ -136249,7 +136985,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L139" } ], "type": { @@ -136492,7 +137228,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L109" } ], "type": { @@ -136508,7 +137244,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L109" } ], "indexSignatures": [ @@ -136523,7 +137259,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 109, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L109" } ], "parameters": [ @@ -136560,7 +137296,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 116, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L116" } ], "type": { @@ -136576,7 +137312,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 116, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L116" } ], "signatures": [ @@ -136591,7 +137327,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 116, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L116" } ], "parameters": [ @@ -136633,7 +137369,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L113" } ], "type": { @@ -136653,7 +137389,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L114" } ], "type": { @@ -136688,7 +137424,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 107, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L107" } ], "type": { @@ -136708,7 +137444,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L120" } ], "type": { @@ -136735,7 +137471,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L121" } ], "type": { @@ -136761,7 +137497,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L110" } ], "type": { @@ -136777,7 +137513,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 110, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L110" } ], "indexSignatures": [ @@ -136792,7 +137528,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 110, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L110" } ], "parameters": [ @@ -136829,7 +137565,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L115" } ], "type": { @@ -136858,7 +137594,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 124, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L124" } ], "type": { @@ -136882,7 +137618,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 118, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L118" } ], "type": { @@ -136917,7 +137653,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L117" } ], "type": { @@ -136937,7 +137673,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 126, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L126" } ], "type": { @@ -136965,7 +137701,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 127, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L127" } ], "type": { @@ -136991,7 +137727,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 128, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L128" } ], "type": { @@ -137014,7 +137750,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 130, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L130" } ], "type": { @@ -137041,7 +137777,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 131, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L131" } ], "type": { @@ -137068,7 +137804,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 132, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L132" } ], "type": { @@ -137095,7 +137831,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 129, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L129" } ], "type": { @@ -137123,7 +137859,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 128, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L128" } ] } @@ -137141,7 +137877,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L111" } ], "type": { @@ -137161,7 +137897,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L112" } ], "type": { @@ -137192,7 +137928,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 119, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L119" } ], "type": { @@ -137214,7 +137950,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L141" } ], "type": { @@ -137235,7 +137971,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 143, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L143" } ], "type": { @@ -137261,7 +137997,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 142, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L142" } ], "type": { @@ -137280,7 +138016,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L378" } ], "signatures": [ @@ -137321,7 +138057,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L378" } ], "parameters": [ @@ -137372,7 +138108,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L195" } ], "signatures": [ @@ -137395,7 +138131,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L195" } ], "type": { @@ -137416,7 +138152,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 337, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L337" } ], "signatures": [ @@ -137439,7 +138175,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 337, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L337" } ], "type": { @@ -137465,7 +138201,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L261" } ], "signatures": [ @@ -137488,7 +138224,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L261" } ], "parameters": [ @@ -137553,7 +138289,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L251" } ], "signatures": [ @@ -137587,7 +138323,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L251" } ], "type": { @@ -137608,7 +138344,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L491" } ], "signatures": [ @@ -137631,7 +138367,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 491, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L491" } ], "type": { @@ -137652,7 +138388,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L297" } ], "signatures": [ @@ -137675,7 +138411,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L297" } ], "type": { @@ -137702,7 +138438,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L353" } ], "signatures": [ @@ -137733,7 +138469,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 353, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L353" } ], "type": { @@ -137754,7 +138490,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L360" } ], "signatures": [ @@ -137785,7 +138521,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 360, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L360" } ], "type": { @@ -137806,7 +138542,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 367, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L367" } ], "signatures": [ @@ -137837,7 +138573,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 367, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L367" } ], "type": { @@ -137858,7 +138594,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 330, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L330" } ], "signatures": [ @@ -137889,7 +138625,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 330, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L330" } ], "parameters": [ @@ -137947,7 +138683,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 485, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L485" } ], "signatures": [ @@ -137970,7 +138706,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 485, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L485" } ], "parameters": [ @@ -137993,7 +138729,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 485, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L485" } ], "signatures": [ @@ -138008,7 +138744,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 485, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L485" } ], "parameters": [ @@ -138057,7 +138793,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L397" } ], "signatures": [ @@ -138080,7 +138816,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 397, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L397" } ], "parameters": [ @@ -138116,7 +138852,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 318, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L318" } ], "signatures": [ @@ -138139,7 +138875,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 318, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L318" } ], "type": { @@ -138176,7 +138912,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 305, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L305" } ], "signatures": [ @@ -138199,7 +138935,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 305, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L305" } ], "parameters": [ @@ -138257,7 +138993,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 432, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L432" } ], "signatures": [ @@ -138280,7 +139016,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 432, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L432" } ], "type": { @@ -138312,7 +139048,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 421, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L421" } ], "signatures": [ @@ -138343,7 +139079,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 421, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L421" } ], "parameters": [ @@ -138420,7 +139156,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 102, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L102" } ] }, @@ -138442,7 +139178,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L89" } ], "signatures": [ @@ -138476,7 +139212,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L89" } ], "parameters": [ @@ -138558,7 +139294,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 64, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L64" } ], "type": { @@ -138581,7 +139317,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 65, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L65" } ], "type": { @@ -138605,7 +139341,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 66, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L66" } ], "type": { @@ -138629,7 +139365,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 67, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L67" } ], "type": { @@ -138645,7 +139381,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 67, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L67" } ], "signatures": [ @@ -138660,7 +139396,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 67, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L67" } ], "type": { @@ -138684,7 +139420,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 64, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L64" } ] } @@ -138712,7 +139448,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 90, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L90" } ], "type": { @@ -138734,7 +139470,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L63" } ], "type": { @@ -138754,7 +139490,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L62" } ], "type": { @@ -138783,7 +139519,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L61" } ], "type": { @@ -138811,7 +139547,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 60, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L60" } ], "type": { @@ -138838,7 +139574,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 59, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L59" } ] }, @@ -138871,7 +139607,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 166, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L166" } ], "signatures": [ @@ -138905,7 +139641,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 166, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L166" } ], "parameters": [ @@ -138983,7 +139719,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 146, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L146" } ], "signatures": [ @@ -139017,7 +139753,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 146, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L146" } ], "type": { @@ -139131,7 +139867,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 181, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L181" } ], "signatures": [ @@ -139165,7 +139901,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 181, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L181" } ], "type": { @@ -139187,7 +139923,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 50, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L50" } ] }, @@ -139211,7 +139947,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" } ], "type": { @@ -139232,7 +139968,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" } ], "type": { @@ -139253,7 +139989,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 5, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" } ], "type": { @@ -139274,7 +140010,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 4, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" } ], "type": { @@ -139295,7 +140031,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 2, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" } ], "type": { @@ -139316,7 +140052,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "type": { @@ -139332,7 +140068,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "signatures": [ @@ -139347,7 +140083,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 37, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" } ], "parameters": [ @@ -139390,7 +140126,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" } ], "type": { @@ -139409,7 +140145,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "type": { @@ -139432,7 +140168,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "signatures": [ @@ -139447,7 +140183,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" } ], "parameters": [ @@ -139501,7 +140237,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "type": { @@ -139524,7 +140260,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "signatures": [ @@ -139539,7 +140275,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" } ], "parameters": [ @@ -139593,7 +140329,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "type": { @@ -139616,7 +140352,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "signatures": [ @@ -139631,7 +140367,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 20, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" } ], "parameters": [ @@ -139685,7 +140421,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "type": { @@ -139708,7 +140444,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "signatures": [ @@ -139723,7 +140459,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 19, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" } ], "parameters": [ @@ -139779,7 +140515,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 3, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" } ], "type": { @@ -139800,7 +140536,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 8, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" } ], "type": { @@ -139821,7 +140557,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" } ], "type": { @@ -139842,7 +140578,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 7, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" } ], "type": { @@ -139861,7 +140597,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "signatures": [ @@ -139884,7 +140620,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" } ], "parameters": [ @@ -139934,7 +140670,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "signatures": [ @@ -139957,7 +140693,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" } ], "parameters": [ @@ -140006,7 +140742,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "signatures": [ @@ -140029,7 +140765,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" } ], "parameters": [ @@ -140079,7 +140815,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "signatures": [ @@ -140102,7 +140838,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" } ], "parameters": [ @@ -140186,7 +140922,7 @@ "fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts", "line": 1, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" } ] }, @@ -140224,7 +140960,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 62, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L62" } ], "signatures": [ @@ -140239,7 +140975,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L63" } ], "parameters": [ @@ -140315,7 +141051,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 62, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L62" } ], "indexSignatures": [ @@ -140330,7 +141066,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L65" } ], "parameters": [ @@ -140364,7 +141100,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 19, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L19" } ], "type": { @@ -140387,7 +141123,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L20" } ], "type": { @@ -140420,7 +141156,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 26, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L26" } ], "type": { @@ -140445,7 +141181,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 26, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L26" } ], "type": { @@ -140466,7 +141202,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 26, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L26" } ], "type": { @@ -140492,7 +141228,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L26" } ], "type": { @@ -140512,7 +141248,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 26, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L26" } ] } @@ -140539,7 +141275,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 30, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L30" } ], "type": { @@ -140564,7 +141300,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 30, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L30" } ], "type": { @@ -140585,7 +141321,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 30, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L30" } ], "type": { @@ -140605,7 +141341,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 30, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L30" } ] } @@ -140632,7 +141368,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 34, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L34" } ], "type": { @@ -140652,7 +141388,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 20, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L20" } ] } @@ -140670,7 +141406,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 19, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L19" } ] } @@ -140687,7 +141423,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 125, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L125" } ], "type": { @@ -140719,7 +141455,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ], "type": { @@ -140744,7 +141480,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L92" } ], "type": { @@ -140760,7 +141496,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 92, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L92" } ], "signatures": [ @@ -140812,7 +141548,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L82" } ], "type": { @@ -140838,7 +141574,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 81, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L81" } ], "type": { @@ -140864,7 +141600,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L89" } ], "type": { @@ -140890,7 +141626,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L84" } ], "type": { @@ -140906,7 +141642,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 84, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L84" } ], "indexSignatures": [ @@ -140921,7 +141657,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 84, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L84" } ], "parameters": [ @@ -140959,7 +141695,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L78" } ], "type": { @@ -140975,7 +141711,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 78, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L78" } ], "signatures": [ @@ -141025,7 +141761,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L77" } ], "type": { @@ -141046,7 +141782,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 87, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L87" } ], "type": { @@ -141072,7 +141808,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L80" } ], "type": { @@ -141098,7 +141834,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L88" } ], "type": { @@ -141124,7 +141860,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L85" } ], "type": { @@ -141140,7 +141876,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 85, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L85" } ], "indexSignatures": [ @@ -141155,7 +141891,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 85, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L85" } ], "parameters": [ @@ -141193,7 +141929,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 83, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L83" } ], "type": { @@ -141219,7 +141955,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 76, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L76" } ], "type": { @@ -141240,7 +141976,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L75" } ], "type": { @@ -141263,7 +141999,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L79" } ], "type": { @@ -141284,7 +142020,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L90" } ], "type": { @@ -141305,7 +142041,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L91" } ], "type": { @@ -141328,7 +142064,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 74, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L74" } ] } @@ -141345,7 +142081,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 33, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L33" } ], "type": { @@ -141368,7 +142104,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L35" } ], "type": { @@ -141389,7 +142125,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L38" } ], "type": { @@ -141408,7 +142144,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L36" } ], "type": { @@ -141427,7 +142163,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L37" } ], "type": { @@ -141446,7 +142182,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L34" } ], "type": { @@ -141466,7 +142202,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 33, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L33" } ] } @@ -141483,7 +142219,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 106, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L106" } ], "typeParameters": [ @@ -141538,7 +142274,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L110" } ], "type": { @@ -141570,7 +142306,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L122" } ], "type": { @@ -141597,7 +142333,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L114" } ], "type": { @@ -141626,7 +142362,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 118, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L118" } ], "type": { @@ -141646,7 +142382,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 106, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L106" } ] } @@ -141663,7 +142399,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 101, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L101" } ], "typeParameters": [ @@ -141686,7 +142422,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 101, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L101" } ], "indexSignatures": [ @@ -141701,7 +142437,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 101, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L101" } ], "parameters": [ @@ -141789,7 +142525,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 94, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L94" } ], "typeParameters": [ @@ -141812,7 +142548,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 94, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L94" } ], "indexSignatures": [ @@ -141827,7 +142563,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 94, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L94" } ], "parameters": [ @@ -141885,7 +142621,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 96, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L96" } ], "type": { @@ -141915,7 +142651,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ], "type": { @@ -141931,7 +142667,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 97, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L97" } ] } @@ -141948,7 +142684,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 98, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L98" } ], "type": { @@ -141982,7 +142718,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 95, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L95" } ] } @@ -142001,7 +142737,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L80" } ], "typeParameters": [ @@ -142024,7 +142760,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 80, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L80" } ], "indexSignatures": [ @@ -142039,7 +142775,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 80, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L80" } ], "parameters": [ @@ -142097,7 +142833,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 82, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L82" } ], "type": { @@ -142127,7 +142863,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 83, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L83" } ], "type": { @@ -142149,7 +142885,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 84, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L84" } ], "type": { @@ -142165,7 +142901,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 84, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L84" } ] } @@ -142183,7 +142919,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 81, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L81" } ] } @@ -142202,7 +142938,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ], "typeParameters": [ @@ -142225,7 +142961,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 87, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ], "indexSignatures": [ @@ -142240,7 +142976,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 87, "character": 54, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L87" } ], "parameters": [ @@ -142298,7 +143034,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 89, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L89" } ], "type": { @@ -142328,7 +143064,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 90, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L90" } ], "type": { @@ -142350,7 +143086,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 91, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L91" } ], "type": { @@ -142384,7 +143120,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 88, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L88" } ] } @@ -142403,7 +143139,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "typeParameters": [ @@ -142426,7 +143162,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "indexSignatures": [ @@ -142441,7 +143177,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ], "parameters": [ @@ -142487,7 +143223,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L20" } ], "type": { @@ -142523,7 +143259,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L18" } ], "type": { @@ -142553,7 +143289,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L19" } ], "type": { @@ -142572,7 +143308,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L21" } ], "type": { @@ -142609,7 +143345,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 17, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L17" } ] } @@ -142626,7 +143362,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "typeParameters": [ @@ -142649,7 +143385,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "indexSignatures": [ @@ -142664,7 +143400,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ], "parameters": [ @@ -142710,7 +143446,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L27" } ], "type": { @@ -142746,7 +143482,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L25" } ], "type": { @@ -142776,7 +143512,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L26" } ], "type": { @@ -142795,7 +143531,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L28" } ], "type": { @@ -142832,7 +143568,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 24, "character": 77, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L24" } ] } @@ -142849,7 +143585,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "typeParameters": [ @@ -142872,7 +143608,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -142887,7 +143623,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "parameters": [ @@ -142924,7 +143660,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ] } @@ -142944,7 +143680,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 13, "character": 75, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L13" } ], "indexSignatures": [ @@ -142959,7 +143695,7 @@ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimePresence.ts#L14" } ], "parameters": [ @@ -143012,7 +143748,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeClient.ts", "line": 41, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeClient.ts#L41" } ], "type": { @@ -143046,7 +143782,7 @@ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts", "line": 148, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/realtime-js/src/RealtimeChannel.ts#L148" } ], "type": { @@ -145815,7 +146551,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 67, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L67" } ], "type": { @@ -145842,7 +146578,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L73" } ], "type": { @@ -145869,7 +146605,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 69, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L69" } ], "type": { @@ -145896,7 +146632,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L75" } ], "type": { @@ -145923,7 +146659,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L77" } ], "type": { @@ -145950,7 +146686,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L71" } ], "type": { @@ -145970,7 +146706,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 65, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L65" } ] }, @@ -145992,7 +146728,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L18" } ], "signatures": [ @@ -146007,7 +146743,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L18" } ], "parameters": [ @@ -146075,7 +146811,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L15" } ], "type": { @@ -146094,7 +146830,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L16" } ], "type": { @@ -146113,7 +146849,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L25" } ], "signatures": [ @@ -146128,7 +146864,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L25" } ], "type": { @@ -146151,7 +146887,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 28, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L28" } ], "type": { @@ -146171,7 +146907,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 27, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L27" } ], "type": { @@ -146191,7 +146927,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 29, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L29" } ], "type": { @@ -146211,7 +146947,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 30, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L30" } ], "type": { @@ -146232,7 +146968,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 26, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L26" } ] } @@ -146260,7 +146996,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 14, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -146290,7 +147026,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L26" } ], "signatures": [ @@ -146333,7 +147069,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L26" } ], "parameters": [ @@ -146367,7 +147103,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 28, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L28" } ], "indexSignatures": [ @@ -146382,7 +147118,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 28, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L28" } ], "parameters": [ @@ -146673,9 +147409,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/StorageClient.ts", - "line": 90, + "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L79" } ], "getSignature": { @@ -146709,24 +147445,16 @@ "text": "A StorageAnalyticsClient instance configured with the current storage settings." } ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = createClient(url, key)\nconst analytics = client.storage.analytics\n\n// Create an analytics bucket\nawait analytics.createBucket('my-analytics-bucket')\n\n// List all analytics buckets\nconst { data: buckets } = await analytics.listBuckets()\n\n// Delete an analytics bucket\nawait analytics.deleteBucket('old-analytics-bucket')\n```" - } - ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/StorageClient.ts", - "line": 90, + "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L79" } ], "type": { @@ -146749,7 +147477,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 61, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L61" } ], "getSignature": { @@ -146792,7 +147520,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 61, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L61" } ], "type": { @@ -146816,7 +147544,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "signatures": [ @@ -146850,7 +147578,7 @@ "content": [ { "kind": "text", - "text": "Promise with newly created bucket id or error" + "text": "Promise with response containing newly created bucket name or error" } ] }, @@ -146879,7 +147607,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "parameters": [ @@ -146938,7 +147666,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" } ], "type": { @@ -146979,7 +147707,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -147019,7 +147747,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -147060,7 +147788,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 207, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" } ], "type": { @@ -147082,7 +147810,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -147120,7 +147848,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 213, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" } ], "type": { @@ -147156,7 +147884,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" } ], "type": { @@ -147176,7 +147904,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 212, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" } ] } @@ -147201,7 +147929,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 217, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" } ], "type": { @@ -147220,7 +147948,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 218, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" } ], "type": { @@ -147242,7 +147970,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 216, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" } ] } @@ -147279,7 +148007,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "signatures": [ @@ -147350,7 +148078,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "parameters": [ @@ -147404,7 +148132,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -147427,7 +148155,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -147447,7 +148175,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ] } @@ -147464,7 +148192,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 408, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" } ], "type": { @@ -147484,7 +148212,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 406, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" } ] } @@ -147509,7 +148237,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" } ], "type": { @@ -147528,7 +148256,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 412, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" } ], "type": { @@ -147550,7 +148278,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 410, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" } ] } @@ -147587,7 +148315,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "signatures": [ @@ -147650,7 +148378,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "parameters": [ @@ -147704,7 +148432,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -147727,7 +148455,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -147747,7 +148475,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ] } @@ -147764,7 +148492,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 353, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" } ], "type": { @@ -147784,7 +148512,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 351, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" } ] } @@ -147809,7 +148537,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" } ], "type": { @@ -147828,7 +148556,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 357, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" } ], "type": { @@ -147850,7 +148578,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 355, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" } ] } @@ -147885,7 +148613,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L46" } ], "signatures": [ @@ -147917,7 +148645,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst avatars = storage.from('avatars')\n```" + "text": "```typescript\nconst avatars = supabase.storage.from('avatars')\n```" } ] } @@ -147928,7 +148656,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L46" } ], "parameters": [ @@ -147975,7 +148703,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "signatures": [ @@ -148009,7 +148737,7 @@ "content": [ { "kind": "text", - "text": "Promise with bucket details or error" + "text": "Promise with response containing bucket details or error" } ] }, @@ -148038,7 +148766,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "parameters": [ @@ -148092,7 +148820,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" } ], "type": { @@ -148113,7 +148841,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" } ], "type": { @@ -148133,7 +148861,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 140, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" } ] } @@ -148158,7 +148886,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" } ], "type": { @@ -148177,7 +148905,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 146, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" } ], "type": { @@ -148199,7 +148927,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" } ] } @@ -148236,7 +148964,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "signatures": [ @@ -148270,7 +148998,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets or error" + "text": "Promise with response containing array of buckets or error" } ] }, @@ -148301,7 +149029,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "parameters": [ @@ -148391,7 +149119,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 80, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" } ], "type": { @@ -148415,7 +149143,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 81, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" } ], "type": { @@ -148435,7 +149163,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" } ] } @@ -148460,7 +149188,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 84, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" } ], "type": { @@ -148479,7 +149207,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 85, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" } ], "type": { @@ -148501,7 +149229,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 83, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" } ] } @@ -148539,7 +149267,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "signatures": [ @@ -148575,7 +149303,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "type": { @@ -148608,7 +149336,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "signatures": [ @@ -148642,7 +149370,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -148671,7 +149399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "parameters": [ @@ -148730,7 +149458,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 288, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" } ], "type": { @@ -148771,7 +149499,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 287, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" } ], "type": { @@ -148811,7 +149539,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" } ], "type": { @@ -148831,7 +149559,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 285, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" } ] } @@ -148868,7 +149596,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -148891,7 +149619,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -148911,7 +149639,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ] } @@ -148928,7 +149656,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 293, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" } ], "type": { @@ -148948,7 +149676,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 291, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" } ] } @@ -148973,7 +149701,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 296, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" } ], "type": { @@ -148992,7 +149720,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 297, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" } ], "type": { @@ -149014,7 +149742,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 295, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" } ] } @@ -149072,7 +149800,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L11" } ], "extendedTypes": [ @@ -149102,7 +149830,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 4, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L4" } ], "signatures": [ @@ -149117,7 +149845,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 4, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L4" } ], "parameters": [ @@ -149164,7 +149892,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 1, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L1" } ], "extendedTypes": [ @@ -149209,7 +149937,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L38" } ], "signatures": [ @@ -149224,7 +149952,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L38" } ], "parameters": [ @@ -149281,7 +150009,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L36" } ], "type": { @@ -149305,7 +150033,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 35, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L35" } ], "extendedTypes": [ @@ -149343,7 +150071,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L30" } ], "signatures": [ @@ -149358,7 +150086,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L30" } ], "parameters": [ @@ -149426,7 +150154,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L27" } ], "type": { @@ -149445,7 +150173,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L28" } ], "type": { @@ -149464,7 +150192,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L37" } ], "signatures": [ @@ -149479,7 +150207,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L37" } ], "type": { @@ -149502,7 +150230,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 40, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L40" } ], "type": { @@ -149522,7 +150250,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 39, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L39" } ], "type": { @@ -149542,7 +150270,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 41, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L41" } ], "type": { @@ -149562,7 +150290,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L42" } ], "type": { @@ -149583,7 +150311,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 38, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L38" } ] } @@ -149611,7 +150339,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 26, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L26" } ], "extendedTypes": [ @@ -149633,19 +150361,11 @@ "summary": [ { "kind": "text", - "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", - "text": "```typescript\nimport { StorageClient } from '@supabase/storage-js'\n\nconst storageClient = new StorageClient(url, headers)\nconst vectors = storageClient.vectors\n\n// Use vector operations\nawait vectors.createBucket('embeddings-prod')\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({ ... })\n```" - }, - { - "kind": "text", - "text": "\n\n2. **Standalone (for vector-only applications):**\n" + "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\n" }, { "kind": "code", - "text": "```typescript\nimport { StorageVectorsClient } from '@supabase/storage-js'\n\nconst vectorsClient = new StorageVectorsClient('https://api.example.com', {\n headers: { 'Authorization': 'Bearer token' }\n})\n\n// Access bucket operations\nawait vectorsClient.createBucket('embeddings-prod')\n\n// Access index operations via buckets\nconst bucket = vectorsClient.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine'\n})\n\n// Access vector operations via index\nconst index = bucket.index('documents')\nawait index.putVectors({\n vectors: [\n { key: 'doc-1', data: { float32: [...] }, metadata: { title: 'Intro' } }\n ]\n})\n\n// Query similar vectors\nconst { data } = await index.queryVectors({\n queryVector: { float32: [...] },\n topK: 5,\n returnDistance: true\n})\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .createBucket('embeddings-prod')\n\n// Access index operations via buckets\nconst bucket = supabase.storage.vectors.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"] @@ -149660,9 +150380,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 112, + "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98" } ], "signatures": [ @@ -149704,9 +150424,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 112, + "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98" } ], "parameters": [ @@ -149782,42 +150502,38 @@ }, "overwrites": { "type": "reference", - "target": 907, - "name": "default.constructor" + "target": -1, + "name": "VectorBucketApi.constructor" } } ], "overwrites": { "type": "reference", - "target": 906, - "name": "default.constructor" + "target": -1, + "name": "VectorBucketApi.constructor" } }, { - "id": 776, + "id": 760, "name": "createBucket", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" } ], "signatures": [ { - "id": 777, + "id": 761, "name": "createBucket", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { @@ -149844,45 +150560,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if bucket already exists (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorMaxBucketsExceeded`" - }, - { - "kind": "text", - "text": " if quota exceeded (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.createBucket('embeddings-prod')\nif (error) {\n console.error('Failed to create bucket:', error.message)\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .createBucket('embeddings-prod')\n```" } ] } @@ -149891,15 +150574,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" } ], "parameters": [ { - "id": 778, + "id": 762, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -149941,49 +150624,45 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 938, - "name": "default.createBucket" + "target": -1, + "name": "VectorBucketApi.createBucket" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 937, - "name": "default.createBucket" + "target": -1, + "name": "VectorBucketApi.createBucket" } }, { - "id": 787, + "id": 771, "name": "deleteBucket", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L226" } ], "signatures": [ { - "id": 788, + "id": 772, "name": "deleteBucket", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "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." + "text": "Deletes a vector bucket (bucket must be empty)\nAll indexes must be deleted before deleting 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": [ @@ -150005,45 +150684,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorBucketNotEmpty`" - }, - { - "kind": "text", - "text": " if bucket contains indexes (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\n// Delete all indexes first, then delete bucket\nconst { error } = await client.deleteBucket('old-bucket')\nif (error?.statusCode === 'S3VectorBucketNotEmpty') {\n console.error('Must delete all indexes first')\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .deleteBucket('embeddings-old')\n```" } ] } @@ -150052,15 +150698,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L226" } ], "parameters": [ { - "id": 789, + "id": 773, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -150102,17 +150748,17 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 949, - "name": "default.deleteBucket" + "target": -1, + "name": "VectorBucketApi.deleteBucket" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 948, - "name": "default.deleteBucket" + "target": -1, + "name": "VectorBucketApi.deleteBucket" } }, { @@ -150124,9 +150770,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 145, + "line": 120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L120" } ], "signatures": [ @@ -150167,7 +150813,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\n\n// Create an index in this bucket\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine'\n})\n\n// List indexes in this bucket\nconst { data } = await bucket.listIndexes()\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\n```" } ] } @@ -150177,9 +150823,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 145, + "line": 120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L120" } ], "parameters": [ @@ -150213,35 +150859,31 @@ ] }, { - "id": 779, + "id": 763, "name": "getBucket", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ], "signatures": [ { - "id": 780, + "id": 764, "name": "getBucket", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "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." + "text": "Retrieves metadata for a specific vector bucket\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type." } ], "blockTags": [ @@ -150263,37 +150905,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getBucket('embeddings-prod')\nif (data) {\n console.log('Bucket created at:', new Date(data.vectorBucket.creationTime! * 1000))\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .getBucket('embeddings-prod')\n\nconsole.log('Bucket created:', data?.vectorBucket.creationTime)\n```" } ] } @@ -150302,15 +150919,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ], "parameters": [ { - "id": 781, + "id": 765, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -150319,7 +150936,7 @@ "summary": [ { "kind": "text", - "text": "Name of the vector bucket to retrieve" + "text": "Name of the vector bucket" } ] }, @@ -150343,24 +150960,24 @@ { "type": "reflection", "declaration": { - "id": 782, + "id": 766, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 783, + "id": 767, "name": "vectorBucket", "variant": "declaration", "kind": 1024, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ], "type": { @@ -150374,15 +150991,15 @@ "groups": [ { "title": "Properties", - "children": [783] + "children": [767] } ], "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ] } @@ -150395,49 +151012,45 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 941, - "name": "default.getBucket" + "target": -1, + "name": "VectorBucketApi.getBucket" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 940, - "name": "default.getBucket" + "target": -1, + "name": "VectorBucketApi.getBucket" } }, { - "id": 784, + "id": 768, "name": "listBuckets", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 199, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L199" } ], "signatures": [ { - "id": 785, + "id": 769, "name": "listBuckets", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "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." + "text": "Lists all vector buckets with optional filtering and pagination\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type." } ], "blockTags": [ @@ -150455,24 +151068,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets and pagination token" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" + "text": "Promise with list of buckets or error" } ] }, @@ -150481,7 +151077,7 @@ "content": [ { "kind": "code", - "text": "```typescript\n// List all buckets with prefix 'prod-'\nconst { data, error } = await client.listBuckets({ prefix: 'prod-' })\nif (data) {\n console.log('Found buckets:', data.buckets.length)\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listBuckets({ nextToken: data.nextToken })\n }\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .listBuckets({ prefix: 'embeddings-' })\n\ndata?.vectorBuckets.forEach(bucket => {\n console.log(bucket.vectorBucketName)\n})\n```" } ] } @@ -150490,15 +151086,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 199, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L199" } ], "parameters": [ { - "id": 786, + "id": 770, "name": "options", "variant": "param", "kind": 32768, @@ -150507,7 +151103,7 @@ "summary": [ { "kind": "text", - "text": "Listing options" + "text": "Optional filters (prefix, maxResults, nextToken)" } ] }, @@ -150515,27 +151111,7 @@ "type": "reference", "target": 1085, "name": "ListVectorBucketsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "prefix": [ - { - "kind": "text", - "text": "Filter buckets by name prefix" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 100)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ] - } + "package": "@supabase/storage-js" }, "defaultValue": "{}" } @@ -150565,21 +151141,21 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 946, - "name": "default.listBuckets" + "target": -1, + "name": "VectorBucketApi.listBuckets" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 945, - "name": "default.listBuckets" + "target": -1, + "name": "VectorBucketApi.listBuckets" } }, { - "id": 774, + "id": 788, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -150590,14 +151166,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, + "line": 31, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L31" } ], "signatures": [ { - "id": 775, + "id": 789, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -150608,36 +151184,7 @@ "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**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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createBucket('my-bucket') // throws on error\n```" - } - ] + "text": "Enable throwing errors instead of returning them in the response" } ], "modifierTags": ["@alpha"] @@ -150645,9 +151192,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, + "line": 31, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L31" } ], "type": { @@ -150656,15 +151203,15 @@ }, "inheritedFrom": { "type": "reference", - "target": 936, - "name": "default.throwOnError" + "target": -1, + "name": "VectorBucketApi.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 935, - "name": "default.throwOnError" + "target": -1, + "name": "VectorBucketApi.throwOnError" } } ], @@ -150675,27 +151222,31 @@ }, { "title": "Methods", - "children": [776, 787, 757, 779, 784, 774] + "children": [760, 771, 757, 763, 768, 788] } ], "categories": [ + { + "title": "Other", + "children": [788] + }, { "title": "Vector Buckets", - "children": [753, 776, 787, 757, 779, 784, 774] + "children": [753, 760, 771, 757, 763, 768] } ], "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 94, + "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L80" } ], "extendedTypes": [ { "type": "reference", - "target": 905, + "target": -1, "name": "default", "package": "@supabase/storage-js" } @@ -150727,7 +151278,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L7" } ], "signatures": [ @@ -150742,7 +151293,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L7" } ], "parameters": [ @@ -150789,7 +151340,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 4, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L4" } ], "extendedTypes": [ @@ -150842,7 +151393,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L54" } ], "signatures": [ @@ -150857,7 +151408,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L54" } ], "parameters": [ @@ -150914,7 +151465,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L52" } ], "type": { @@ -150938,7 +151489,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 51, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L51" } ], "extendedTypes": [ @@ -150951,8 +151502,8 @@ ] }, { - "id": 905, - "name": "VectorBucketApi", + "id": 790, + "name": "VectorBucketScope", "variant": "declaration", "kind": 128, "flags": {}, @@ -150960,1173 +151511,30 @@ "summary": [ { "kind": "text", - "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." + "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": [ { - "id": 906, + "id": 791, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L256" } ], "signatures": [ { - "id": 907, - "name": "VectorBucketApi", - "variant": "signature", - "kind": 16384, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "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": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" - } - ], - "parameters": [ - { - "id": 908, - "name": "url", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The base URL for the storage vectors API" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 909, - "name": "headers", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "HTTP headers to include in requests" - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 910, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, - "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" - } - ], - "indexSignatures": [ - { - "id": 911, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, - "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" - } - ], - "parameters": [ - { - "id": 912, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - } - }, - "defaultValue": "{}" - }, - { - "id": 913, - "name": "fetch", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Optional custom fetch implementation" - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 914, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - }, - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "signatures": [ - { - "id": 915, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - } - ], - "parameters": [ - { - "id": 916, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInfo" - }, - "name": "RequestInfo", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 917, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 918, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "parameters": [ - { - "id": 919, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Request" - }, - "name": "Request", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 920, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": 905, - "name": "VectorBucketApi", - "package": "@supabase/storage-js", - "qualifiedName": "default" - } - } - ] - }, - { - "id": 937, - "name": "createBucket", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" - } - ], - "signatures": [ - { - "id": 938, - "name": "createBucket", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if bucket already exists (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorMaxBucketsExceeded`" - }, - { - "kind": "text", - "text": " if quota exceeded (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.createBucket('embeddings-prod')\nif (error) {\n console.error('Failed to create bucket:', error.message)\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" - } - ], - "parameters": [ - { - "id": 939, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Unique name for the vector bucket" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 948, - "name": "deleteBucket", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" - } - ], - "signatures": [ - { - "id": 949, - "name": "deleteBucket", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorBucketNotEmpty`" - }, - { - "kind": "text", - "text": " if bucket contains indexes (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// Delete all indexes first, then delete bucket\nconst { error } = await client.deleteBucket('old-bucket')\nif (error?.statusCode === 'S3VectorBucketNotEmpty') {\n console.error('Must delete all indexes first')\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" - } - ], - "parameters": [ - { - "id": 950, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the vector bucket to delete" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 940, - "name": "getBucket", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" - } - ], - "signatures": [ - { - "id": 941, - "name": "getBucket", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\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": [ - { - "kind": "text", - "text": "Promise with bucket metadata or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getBucket('embeddings-prod')\nif (data) {\n console.log('Bucket created at:', new Date(data.vectorBucket.creationTime! * 1000))\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" - } - ], - "parameters": [ - { - "id": 942, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the vector bucket to retrieve" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 943, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 944, - "name": "vectorBucket", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" - } - ], - "type": { - "type": "reference", - "target": 1053, - "name": "VectorBucket", - "package": "@supabase/storage-js" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [944] - } - ], - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" - } - ] - } - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 945, - "name": "listBuckets", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" - } - ], - "signatures": [ - { - "id": 946, - "name": "listBuckets", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\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": [ - { - "kind": "text", - "text": "Promise with list of buckets and pagination token" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// List all buckets with prefix 'prod-'\nconst { data, error } = await client.listBuckets({ prefix: 'prod-' })\nif (data) {\n console.log('Found buckets:', data.buckets.length)\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listBuckets({ nextToken: data.nextToken })\n }\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" - } - ], - "parameters": [ - { - "id": 947, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Listing options" - } - ] - }, - "type": { - "type": "reference", - "target": 1085, - "name": "ListVectorBucketsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "prefix": [ - { - "kind": "text", - "text": "Filter buckets by name prefix" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 100)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ] - } - }, - "defaultValue": "{}" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1089, - "name": "ListVectorBucketsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 935, - "name": "throwOnError", - "variant": "declaration", - "kind": 2048, - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" - } - ], - "signatures": [ - { - "id": 936, - "name": "throwOnError", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createBucket('my-bucket') // throws on error\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" - } - ], - "type": { - "type": "intrinsic", - "name": "this" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "children": [906] - }, - { - "title": "Methods", - "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": 21, - "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L21" - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 752, - "name": "StorageVectorsClient" - } - ] - }, - { - "id": 790, - "name": "VectorBucketScope", - "variant": "declaration", - "kind": 128, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Scoped client for operations within a specific vector bucket\nProvides index management and access to vector operations\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": [ - { - "id": 791, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 175, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175" - } - ], - "signatures": [ - { - "id": 792, - "name": "VectorBucketScope", + "id": 792, + "name": "VectorBucketScope", "variant": "signature", "kind": 16384, "flags": {}, @@ -152152,2604 +151560,7 @@ "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": 175, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175" - } - ], - "parameters": [ - { - "id": 793, - "name": "url", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 794, - "name": "headers", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 795, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 177, - "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177" - } - ], - "indexSignatures": [ - { - "id": 796, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 177, - "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177" - } - ], - "parameters": [ - { - "id": 797, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - } - } - }, - { - "id": 798, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 799, - "name": "fetch", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 800, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - }, - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "signatures": [ - { - "id": 801, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - } - ], - "parameters": [ - { - "id": 802, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInfo" - }, - "name": "RequestInfo", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 803, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 804, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "parameters": [ - { - "id": 805, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Request" - }, - "name": "Request", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 806, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": 790, - "name": "VectorBucketScope", - "package": "@supabase/storage-js" - }, - "overwrites": { - "type": "reference", - "target": 953, - "name": "default.constructor" - } - } - ], - "overwrites": { - "type": "reference", - "target": 952, - "name": "default.constructor" - } - }, - { - "id": 808, - "name": "createIndex", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 212, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212" - } - ], - "signatures": [ - { - "id": 809, - "name": "createIndex", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Creates a new vector index in this bucket\nConvenience method that automatically includes the bucket name\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n metadataConfiguration: {\n nonFilterableMetadataKeys: ['raw_text']\n }\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 212, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212" - } - ], - "parameters": [ - { - "id": 810, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Index configuration (vectorBucketName is automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1046, - "name": "CreateIndexOptions", - "package": "@supabase/storage-js" - }, - { - "type": "literal", - "value": "vectorBucketName" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 984, - "name": "default.createIndex" - } - } - ], - "overwrites": { - "type": "reference", - "target": 983, - "name": "default.createIndex" - } - }, - { - "id": 819, - "name": "deleteIndex", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 288, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288" - } - ], - "signatures": [ - { - "id": 820, - "name": "deleteIndex", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletes an index from this bucket\nConvenience method that automatically includes the bucket name\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nawait bucket.deleteIndex('old-index')\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 288, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288" - } - ], - "parameters": [ - { - "id": 821, - "name": "indexName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the index to delete" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 996, - "name": "default.deleteIndex" - } - } - ], - "overwrites": { - "type": "reference", - "target": 995, - "name": "default.deleteIndex" - } - }, - { - "id": 814, - "name": "getIndex", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 265, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265" - } - ], - "signatures": [ - { - "id": 815, - "name": "getIndex", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Retrieves metadata for a specific index in this bucket\nConvenience method that automatically includes the bucket name\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": [ - { - "kind": "text", - "text": "Promise with index metadata or error" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nconst { data } = await bucket.getIndex('documents-openai')\nconsole.log('Dimension:', data?.index.dimension)\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 265, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265" - } - ], - "parameters": [ - { - "id": 816, - "name": "indexName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the index to retrieve" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 817, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 818, - "name": "index", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, - "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" - } - ], - "type": { - "type": "reference", - "target": 1057, - "name": "VectorIndex", - "package": "@supabase/storage-js" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [818] - } - ], - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, - "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" - } - ] - } - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 987, - "name": "default.getIndex" - } - } - ], - "overwrites": { - "type": "reference", - "target": 986, - "name": "default.getIndex" - } - }, - { - "id": 822, - "name": "index", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 323, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323" - } - ], - "signatures": [ - { - "id": 823, - "name": "index", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Access operations for a specific index within this bucket\nReturns a scoped client for vector data operations\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": [ - { - "kind": "text", - "text": "Index-scoped client with vector data operations" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\n\n// Insert vectors\nawait index.putVectors({\n vectors: [\n { key: 'doc-1', data: { float32: [...] }, metadata: { title: 'Intro' } }\n ]\n})\n\n// Query similar vectors\nconst { data } = await index.queryVectors({\n queryVector: { float32: [...] },\n topK: 5\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 323, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323" - } - ], - "parameters": [ - { - "id": 824, - "name": "indexName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the index" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": 841, - "name": "VectorIndexScope", - "package": "@supabase/storage-js" - } - } - ] - }, - { - "id": 811, - "name": "listIndexes", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 238, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238" - } - ], - "signatures": [ - { - "id": 812, - "name": "listIndexes", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name\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": [ - { - "kind": "text", - "text": "Promise with list of indexes or error" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nconst { data } = await bucket.listIndexes({ prefix: 'documents-' })\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 238, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238" - } - ], - "parameters": [ - { - "id": 813, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Listing options (vectorBucketName is automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1094, - "name": "ListIndexesOptions", - "package": "@supabase/storage-js" - }, - { - "type": "literal", - "value": "vectorBucketName" - } - ], - "name": "Omit", - "package": "typescript" - }, - "defaultValue": "{}" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1099, - "name": "ListIndexesResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 993, - "name": "default.listIndexes" - } - } - ], - "overwrites": { - "type": "reference", - "target": 992, - "name": "default.listIndexes" - } - }, - { - "id": 839, - "name": "throwOnError", - "variant": "declaration", - "kind": 2048, - "flags": { - "isPublic": true, - "isInherited": true - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" - } - ], - "signatures": [ - { - "id": 840, - "name": "throwOnError", - "variant": "signature", - "kind": 4096, - "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createIndex(options) // throws on error\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "this" - }, - "inheritedFrom": { - "type": "reference", - "target": 982, - "name": "default.throwOnError" - } - } - ], - "inheritedFrom": { - "type": "reference", - "target": 981, - "name": "default.throwOnError" - } - } - ], - "groups": [ - { - "title": "Constructors", - "children": [791] - }, - { - "title": "Methods", - "children": [808, 819, 814, 822, 811, 839] - } - ], - "categories": [ - { - "title": "Vector Buckets", - "children": [791, 808, 819, 814, 822, 811, 839] - } - ], - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 159, - "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L159" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 951, - "name": "default", - "package": "@supabase/storage-js" - } - ] - }, - { - "id": 999, - "name": "VectorDataApi", - "variant": "declaration", - "kind": 128, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "API class for managing Vector Data within Vector Indexes\nProvides methods for inserting, querying, listing, and deleting vector embeddings\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": [ - { - "id": 1000, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 50, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" - } - ], - "signatures": [ - { - "id": 1001, - "name": "VectorDataApi", - "variant": "signature", - "kind": 16384, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "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": 50, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" - } - ], - "parameters": [ - { - "id": 1002, - "name": "url", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Base URL for the Storage Vectors API." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1003, - "name": "headers", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Default headers (for example authentication tokens)." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1004, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 50, - "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" - } - ], - "indexSignatures": [ - { - "id": 1005, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 50, - "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" - } - ], - "parameters": [ - { - "id": 1006, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - } - }, - "defaultValue": "{}" - }, - { - "id": 1007, - "name": "fetch", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Optional custom " - }, - { - "kind": "code", - "text": "`fetch`" - }, - { - "kind": "text", - "text": " implementation for non-browser runtimes." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1008, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - }, - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "signatures": [ - { - "id": 1009, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - } - ], - "parameters": [ - { - "id": 1010, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInfo" - }, - "name": "RequestInfo", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 1011, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 1012, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "parameters": [ - { - "id": 1013, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Request" - }, - "name": "Request", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 1014, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": 999, - "name": "VectorDataApi", - "package": "@supabase/storage-js", - "qualifiedName": "default" - } - } - ] - }, - { - "id": 1043, - "name": "deleteVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 379, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379" - } - ], - "signatures": [ - { - "id": 1044, - "name": "deleteVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletes vectors by their keys in batch\nAccepts 1-500 keys per request\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { error } = await client.deleteVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\nif (!error) {\n console.log('Vectors deleted successfully')\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 379, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379" - } - ], - "parameters": [ - { - "id": 1045, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector deletion options" - } - ] - }, - "type": { - "type": "reference", - "target": 1116, - "name": "DeleteVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "keys": [ - { - "kind": "text", - "text": "Array of vector keys to delete (1-500 items)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1034, - "name": "getVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 179, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179" - } - ], - "signatures": [ - { - "id": 1035, - "name": "getVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Retrieves vectors by their keys in batch\nOptionally includes vector data and/or metadata in response\nAdditional permissions required when returning data or metadata\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": [ - { - "kind": "text", - "text": "Promise with array of vectors or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n keys: ['doc-1', 'doc-2', 'doc-3'],\n returnData: false, // Don't return embeddings\n returnMetadata: true // Return metadata only\n})\nif (data) {\n data.vectors.forEach(v => console.log(v.key, v.metadata))\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 179, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179" - } - ], - "parameters": [ - { - "id": 1036, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector retrieval options" - } - ] - }, - "type": { - "type": "reference", - "target": 1108, - "name": "GetVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "keys": [ - { - "kind": "text", - "text": "Array of vector keys to retrieve" - } - ], - "returnData": [ - { - "kind": "text", - "text": "Whether to include vector embeddings (requires permission)" - } - ], - "returnMetadata": [ - { - "kind": "text", - "text": "Whether to include metadata (requires permission)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1114, - "name": "GetVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1037, - "name": "listVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 253, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253" - } - ], - "signatures": [ - { - "id": 1038, - "name": "listVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lists/scans vectors in an index with pagination\nSupports parallel scanning via segment configuration for high-throughput scenarios\nAdditional permissions required when returning data or metadata\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": [ - { - "kind": "text", - "text": "Promise with array of vectors, pagination token, or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// Simple pagination\nlet nextToken: string | undefined\ndo {\n const { data, error } = await client.listVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n maxResults: 500,\n nextToken,\n returnMetadata: true\n })\n if (error) break\n console.log('Batch:', data.vectors.length)\n nextToken = data.nextToken\n} while (nextToken)\n\n// Parallel scanning (4 concurrent workers)\nconst workers = [0, 1, 2, 3].map(async (segmentIndex) => {\n const { data } = await client.listVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n segmentCount: 4,\n segmentIndex,\n returnMetadata: true\n })\n return data?.vectors || []\n})\nconst results = await Promise.all(workers)\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 253, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253" - } - ], - "parameters": [ - { - "id": 1039, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector listing options" - } - ] - }, - "type": { - "type": "reference", - "target": 1120, - "name": "ListVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 500, max: 1000)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ], - "returnData": [ - { - "kind": "text", - "text": "Whether to include vector embeddings (requires permission)" - } - ], - "returnMetadata": [ - { - "kind": "text", - "text": "Whether to include metadata (requires permission)" - } - ], - "segmentCount": [ - { - "kind": "text", - "text": "Total parallel segments (1-16) for distributed scanning" - } - ], - "segmentIndex": [ - { - "kind": "text", - "text": "Zero-based segment index (0 to segmentCount-1)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1129, - "name": "ListVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1031, - "name": "putVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 120, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120" - } - ], - "signatures": [ - { - "id": 1032, - "name": "putVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inserts or updates vectors in batch (upsert operation)\nAccepts 1-500 vectors per request. Larger batches should be split\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if duplicate key conflict occurs (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.putVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3, ...] }, // 1536 dimensions\n metadata: { title: 'Introduction', page: 1 }\n },\n {\n key: 'doc-2',\n data: { float32: [0.4, 0.5, 0.6, ...] },\n metadata: { title: 'Conclusion', page: 42 }\n }\n ]\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 120, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120" - } - ], - "parameters": [ - { - "id": 1033, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector insertion options" - } - ] - }, - "type": { - "type": "reference", - "target": 1104, - "name": "PutVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the target index" - } - ], - "vectors": [ - { - "kind": "text", - "text": "Array of vectors to insert/update (1-500 items)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1040, - "name": "queryVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 330, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330" - } - ], - "signatures": [ - { - "id": 1041, - "name": "queryVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Queries for similar vectors using approximate nearest neighbor (ANN) search\nReturns top-K most similar vectors based on the configured distance metric\nSupports optional metadata filtering (requires GetVectors permission)\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": [ - { - "kind": "text", - "text": "Promise with array of similar vectors ordered by distance" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// Semantic search with filtering\nconst { data, error } = await client.queryVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n queryVector: { float32: [0.1, 0.2, 0.3, ...] }, // 1536 dimensions\n topK: 5,\n filter: {\n category: 'technical',\n published: true\n },\n returnDistance: true,\n returnMetadata: true\n})\nif (data) {\n data.matches.forEach(match => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 330, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330" - } - ], - "parameters": [ - { - "id": 1042, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Query options" - } - ] - }, - "type": { - "type": "reference", - "target": 1132, - "name": "QueryVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "queryVector": [ - { - "kind": "text", - "text": "Query embedding to find similar vectors" - } - ], - "topK": [ - { - "kind": "text", - "text": "Number of nearest neighbors to return (default: 10)" - } - ], - "filter": [ - { - "kind": "text", - "text": "Optional JSON filter for metadata (requires GetVectors permission)" - } - ], - "returnDistance": [ - { - "kind": "text", - "text": "Whether to include similarity distances" - } - ], - "returnMetadata": [ - { - "kind": "text", - "text": "Whether to include metadata (requires GetVectors permission)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1140, - "name": "QueryVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1029, - "name": "throwOnError", - "variant": "declaration", - "kind": 2048, - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" - } - ], - "signatures": [ - { - "id": 1030, - "name": "throwOnError", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorDataApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.putVectors(options) // throws on error\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "this" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "children": [1000] - }, - { - "title": "Methods", - "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": 26, - "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L26" - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 841, - "name": "VectorIndexScope" - } - ] - }, - { - "id": 951, - "name": "VectorIndexApi", - "variant": "declaration", - "kind": 128, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "API class for managing Vector Indexes within Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector indexes\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": [ - { - "id": 952, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 65, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" - } - ], - "signatures": [ - { - "id": 953, - "name": "VectorIndexApi", - "variant": "signature", - "kind": 16384, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "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```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\n```" } ] } @@ -154758,80 +151569,64 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 65, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L256" } ], "parameters": [ { - "id": 954, + "id": 793, "name": "url", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Base URL for the Storage Vectors API." - } - ] - }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 955, + "id": 794, "name": "headers", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Default headers sent with each request." - } - ] - }, "type": { "type": "reflection", "declaration": { - "id": 956, + "id": 795, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 65, - "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 258, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L258" } ], "indexSignatures": [ { - "id": 957, + "id": 796, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 65, - "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 258, + "character": 15, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L258" } ], "parameters": [ { - "id": 958, + "id": 797, "name": "key", "variant": "param", "kind": 32768, @@ -154849,37 +151644,31 @@ } ] } - }, - "defaultValue": "{}" + } }, { - "id": 959, + "id": 798, + "name": "vectorBucketName", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 799, "name": "fetch", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Optional custom " - }, - { - "kind": "code", - "text": "`fetch`" - }, - { - "kind": "text", - "text": " implementation for non-browser runtimes." - } - ] - }, "type": { "type": "reflection", "declaration": { - "id": 960, + "id": 800, "name": "__type", "variant": "declaration", "kind": 65536, @@ -154898,7 +151687,7 @@ ], "signatures": [ { - "id": 961, + "id": 801, "name": "__type", "variant": "signature", "kind": 4096, @@ -154920,7 +151709,7 @@ ], "parameters": [ { - "id": 962, + "id": 802, "name": "input", "variant": "param", "kind": 32768, @@ -154950,7 +151739,7 @@ } }, { - "id": 963, + "id": 803, "name": "init", "variant": "param", "kind": 32768, @@ -154990,7 +151779,7 @@ } }, { - "id": 964, + "id": 804, "name": "__type", "variant": "signature", "kind": 4096, @@ -155012,7 +151801,7 @@ ], "parameters": [ { - "id": 965, + "id": 805, "name": "input", "variant": "param", "kind": 32768, @@ -155046,7 +151835,7 @@ } }, { - "id": 966, + "id": 806, "name": "init", "variant": "param", "kind": 32768, @@ -155092,31 +151881,40 @@ ], "type": { "type": "reference", - "target": 951, - "name": "VectorIndexApi", - "package": "@supabase/storage-js", - "qualifiedName": "default" + "target": 790, + "name": "VectorBucketScope", + "package": "@supabase/storage-js" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.constructor" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.constructor" + } }, { - "id": 983, + "id": 808, "name": "createIndex", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 133, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 293, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L293" } ], "signatures": [ { - "id": 984, + "id": 809, "name": "createIndex", "variant": "signature", "kind": 4096, @@ -155125,7 +151923,7 @@ "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**Public alpha:** This API is part of a public alpha release and may not be available to your account type." + "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": [ @@ -155147,53 +151945,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if index already exists (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorMaxIndexesExceeded`" - }, - { - "kind": "text", - "text": " if quota exceeded (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.createIndex({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n metadataConfiguration: {\n nonFilterableMetadataKeys: ['raw_text', 'internal_id']\n }\n})\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('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```" } ] } @@ -155202,15 +151959,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 133, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 293, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L293" } ], "parameters": [ { - "id": 985, + "id": 810, "name": "options", "variant": "param", "kind": 32768, @@ -155219,53 +151976,30 @@ "summary": [ { "kind": "text", - "text": "Index configuration" + "text": "Index configuration (vectorBucketName is automatically set)" } ] }, "type": { "type": "reference", - "target": 1046, - "name": "CreateIndexOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Unique name for the index within the bucket" - } - ], - "dataType": [ - { - "kind": "text", - "text": "Data type for vector components (currently only 'float32')" - } - ], - "dimension": [ - { - "kind": "text", - "text": "Dimensionality of vectors (e.g., 384, 768, 1536)" - } - ], - "distanceMetric": [ - { - "kind": "text", - "text": "Similarity metric ('cosine', 'euclidean', 'dotproduct')" - } - ], - "metadataConfiguration": [ - { - "kind": "text", - "text": "Optional config for non-filterable metadata keys" - } - ] - } + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1046, + "name": "CreateIndexOptions", + "package": "@supabase/storage-js" + }, + { + "type": "literal", + "value": "vectorBucketName" + } + ], + "name": "Omit", + "package": "typescript" } } ], @@ -155291,27 +152025,37 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.createIndex" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.createIndex" + } }, { - "id": 995, + "id": 819, "name": "deleteIndex", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 284, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 369, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L369" } ], "signatures": [ { - "id": 996, + "id": 820, "name": "deleteIndex", "variant": "signature", "kind": 4096, @@ -155320,7 +152064,7 @@ "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**Public alpha:** This API is part of a public alpha release and may not be available to your account type." + "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": [ @@ -155342,37 +152086,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if index or bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\n// Delete an index and all its vectors\nconst { error } = await client.deleteIndex('embeddings-prod', 'old-index')\nif (!error) {\n console.log('Index deleted successfully')\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\nawait bucket.deleteIndex('old-index')\n```" } ] } @@ -155381,34 +152100,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 284, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 369, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L369" } ], "parameters": [ { - "id": 997, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 998, + "id": 821, "name": "indexName", "variant": "param", "kind": 32768, @@ -155449,27 +152149,37 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.deleteIndex" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.deleteIndex" + } }, { - "id": 986, + "id": 814, "name": "getIndex", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 177, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 346, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L346" } ], "signatures": [ { - "id": 987, + "id": 815, "name": "getIndex", "variant": "signature", "kind": 4096, @@ -155478,7 +152188,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -155500,37 +152210,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if index or bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getIndex('embeddings-prod', 'documents-openai-small')\nif (data) {\n console.log('Index dimension:', data.index.dimension)\n console.log('Distance metric:', data.index.distanceMetric)\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\nconst { data } = await bucket.getIndex('documents-openai')\nconsole.log('Dimension:', data?.index.dimension)\n```" } ] } @@ -155539,34 +152224,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 177, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 346, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L346" } ], "parameters": [ { - "id": 988, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 989, + "id": 816, "name": "indexName", "variant": "param", "kind": 32768, @@ -155599,14 +152265,14 @@ { "type": "reflection", "declaration": { - "id": 990, + "id": 817, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 991, + "id": 818, "name": "index", "variant": "declaration", "kind": 1024, @@ -155614,9 +152280,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, + "line": 77, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L77" } ], "type": { @@ -155630,15 +152296,15 @@ "groups": [ { "title": "Properties", - "children": [991] + "children": [818] } ], "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, + "line": 77, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L77" } ] } @@ -155650,28 +152316,38 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.getIndex" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.getIndex" + } }, { - "id": 992, - "name": "listIndexes", + "id": 822, + "name": "index", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 240, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 404, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L404" } ], "signatures": [ { - "id": 993, - "name": "listIndexes", + "id": 823, + "name": "index", "variant": "signature", "kind": 4096, "flags": {}, @@ -155679,7 +152355,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -155697,32 +152373,104 @@ "content": [ { "kind": "text", - "text": "Promise with list of indexes and pagination token" + "text": "Index-scoped client with vector data operations" } ] }, { - "tag": "@throws", + "tag": "@example", "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, { "kind": "code", - "text": "`S3VectorNotFoundException`" - }, + "text": "```typescript\nconst index = supabase.storage.vectors.from('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```" + } + ] + } + ], + "modifierTags": ["@alpha"] + }, + "sources": [ + { + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 404, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L404" + } + ], + "parameters": [ + { + "id": 824, + "name": "indexName", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ { "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, + "text": "Name of the index" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "target": 841, + "name": "VectorIndexScope", + "package": "@supabase/storage-js" + } + } + ] + }, + { + "id": 811, + "name": "listIndexes", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 319, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L319" + } + ], + "signatures": [ + { + "id": 812, + "name": "listIndexes", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name\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": "code", - "text": "`InternalError`" - }, + "kind": "text", + "text": "Vector Buckets" + } + ] + }, + { + "tag": "@returns", + "content": [ { "kind": "text", - "text": " for server errors (HTTP 500)" + "text": "Promise with response containing indexes array and pagination token or error" } ] }, @@ -155731,7 +152479,7 @@ "content": [ { "kind": "code", - "text": "```typescript\n// List all indexes in a bucket\nconst { data, error } = await client.listIndexes({\n vectorBucketName: 'embeddings-prod',\n prefix: 'documents-'\n})\nif (data) {\n console.log('Found indexes:', data.indexes.map(i => i.indexName))\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listIndexes({\n vectorBucketName: 'embeddings-prod',\n nextToken: data.nextToken\n })\n }\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\nconst { data } = await bucket.listIndexes({ prefix: 'documents-' })\n```" } ] } @@ -155740,15 +152488,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 240, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 319, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L319" } ], "parameters": [ { - "id": 994, + "id": 813, "name": "options", "variant": "param", "kind": 32768, @@ -155757,42 +152505,32 @@ "summary": [ { "kind": "text", - "text": "Listing options" + "text": "Listing options (vectorBucketName is automatically set)" } ] }, "type": { "type": "reference", - "target": 1094, - "name": "ListIndexesOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "prefix": [ - { - "kind": "text", - "text": "Filter indexes by name prefix" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 100)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ] - } - } + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1094, + "name": "ListIndexesOptions", + "package": "@supabase/storage-js" + }, + { + "type": "literal", + "value": "vectorBucketName" + } + ], + "name": "Omit", + "package": "typescript" + }, + "defaultValue": "{}" } ], "type": { @@ -155819,67 +152557,51 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.listIndexes" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.listIndexes" + } }, { - "id": 981, + "id": 839, "name": "throwOnError", "variant": "declaration", "kind": 2048, "flags": { - "isPublic": true + "isPublic": true, + "isInherited": true }, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, + "line": 50, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50" } ], "signatures": [ { - "id": 982, + "id": 840, "name": "throwOnError", "variant": "signature", "kind": 4096, - "flags": {}, + "flags": { + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createIndex(options) // throws on error\n```" - } - ] + "text": "Enable throwing errors instead of returning them in the response" } ], "modifierTags": ["@alpha"] @@ -155887,48 +152609,63 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, + "line": 50, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50" } ], "type": { "type": "intrinsic", "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.throwOnError" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.throwOnError" + } } ], "groups": [ { "title": "Constructors", - "children": [952] + "children": [791] }, { "title": "Methods", - "children": [983, 995, 986, 992, 981] + "children": [808, 819, 814, 822, 811, 839] } ], "categories": [ + { + "title": "Other", + "children": [839] + }, { "title": "Vector Buckets", - "children": [952, 983, 995, 986, 992, 981] + "children": [791, 808, 819, 814, 822, 811] } ], "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 41, - "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L41" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 240, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L240" } ], - "extendedBy": [ + "extendedTypes": [ { "type": "reference", - "target": 790, - "name": "VectorBucketScope" + "target": -1, + "name": "default", + "package": "@supabase/storage-js" } ] }, @@ -155957,9 +152694,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 361, + "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L442" } ], "signatures": [ @@ -155991,7 +152728,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\n```" } ] } @@ -156001,9 +152738,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 361, + "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L442" } ], "parameters": [ @@ -156035,9 +152772,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 363, + "line": 444, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L444" } ], "indexSignatures": [ @@ -156050,9 +152787,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 363, + "line": 444, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L444" } ], "parameters": [ @@ -156329,15 +153066,15 @@ }, "overwrites": { "type": "reference", - "target": 1001, - "name": "default.constructor" + "target": -1, + "name": "VectorDataApi.constructor" } } ], "overwrites": { "type": "reference", - "target": 1000, - "name": "default.constructor" + "target": -1, + "name": "VectorDataApi.constructor" } }, { @@ -156349,9 +153086,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 526, + "line": 607, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L607" } ], "signatures": [ @@ -156392,7 +153129,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nawait index.deleteVectors({\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\nawait index.deleteVectors({\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\n```" } ] } @@ -156402,9 +153139,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 526, + "line": 607, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L607" } ], "parameters": [ @@ -156479,15 +153216,15 @@ }, "overwrites": { "type": "reference", - "target": 1044, - "name": "default.deleteVectors" + "target": -1, + "name": "VectorDataApi.deleteVectors" } } ], "overwrites": { "type": "reference", - "target": 1043, - "name": "default.deleteVectors" + "target": -1, + "name": "VectorDataApi.deleteVectors" } }, { @@ -156499,9 +153236,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 430, + "line": 511, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L511" } ], "signatures": [ @@ -156533,7 +153270,7 @@ "content": [ { "kind": "text", - "text": "Promise with array of vectors or error" + "text": "Promise with response containing vectors array or error" } ] }, @@ -156542,7 +153279,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.getVectors({\n keys: ['doc-1', 'doc-2'],\n returnMetadata: true\n})\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\nconst { data } = await index.getVectors({\n keys: ['doc-1', 'doc-2'],\n returnMetadata: true\n})\n```" } ] } @@ -156552,9 +153289,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 430, + "line": 511, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L511" } ], "parameters": [ @@ -156631,15 +153368,15 @@ }, "overwrites": { "type": "reference", - "target": 1035, - "name": "default.getVectors" + "target": -1, + "name": "VectorDataApi.getVectors" } } ], "overwrites": { "type": "reference", - "target": 1034, - "name": "default.getVectors" + "target": -1, + "name": "VectorDataApi.getVectors" } }, { @@ -156651,9 +153388,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 460, + "line": 541, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L541" } ], "signatures": [ @@ -156685,7 +153422,7 @@ "content": [ { "kind": "text", - "text": "Promise with array of vectors and pagination token" + "text": "Promise with response containing vectors array and pagination token or error" } ] }, @@ -156694,7 +153431,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.listVectors({\n maxResults: 500,\n returnMetadata: true\n})\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\nconst { data } = await index.listVectors({\n maxResults: 500,\n returnMetadata: true\n})\n```" } ] } @@ -156704,9 +153441,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 460, + "line": 541, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L541" } ], "parameters": [ @@ -156784,15 +153521,15 @@ }, "overwrites": { "type": "reference", - "target": 1038, - "name": "default.listVectors" + "target": -1, + "name": "VectorDataApi.listVectors" } } ], "overwrites": { "type": "reference", - "target": 1037, - "name": "default.listVectors" + "target": -1, + "name": "VectorDataApi.listVectors" } }, { @@ -156804,9 +153541,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 400, + "line": 481, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L481" } ], "signatures": [ @@ -156847,7 +153584,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, ...] },\n metadata: { title: 'Introduction', page: 1 }\n }\n ]\n})\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('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```" } ] } @@ -156857,9 +153594,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 400, + "line": 481, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L481" } ], "parameters": [ @@ -156934,15 +153671,15 @@ }, "overwrites": { "type": "reference", - "target": 1032, - "name": "default.putVectors" + "target": -1, + "name": "VectorDataApi.putVectors" } } ], "overwrites": { "type": "reference", - "target": 1031, - "name": "default.putVectors" + "target": -1, + "name": "VectorDataApi.putVectors" } }, { @@ -156954,9 +153691,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 495, + "line": 576, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L576" } ], "signatures": [ @@ -156988,7 +153725,7 @@ "content": [ { "kind": "text", - "text": "Promise with array of similar vectors ordered by distance" + "text": "Promise with response containing matches array of similar vectors ordered by distance or error" } ] }, @@ -156997,7 +153734,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.queryVectors({\n queryVector: { float32: [0.1, 0.2, ...] },\n topK: 5,\n filter: { category: 'technical' },\n returnDistance: true,\n returnMetadata: true\n})\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('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```" } ] } @@ -157007,9 +153744,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 495, + "line": 576, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L576" } ], "parameters": [ @@ -157086,15 +153823,15 @@ }, "overwrites": { "type": "reference", - "target": 1041, - "name": "default.queryVectors" + "target": -1, + "name": "VectorDataApi.queryVectors" } } ], "overwrites": { "type": "reference", - "target": 1040, - "name": "default.queryVectors" + "target": -1, + "name": "VectorDataApi.queryVectors" } }, { @@ -157109,9 +153846,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, + "line": 36, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L36" } ], "signatures": [ @@ -157127,36 +153864,7 @@ "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**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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorDataApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.putVectors(options) // throws on error\n```" - } - ] + "text": "Enable throwing errors instead of returning them in the response" } ], "modifierTags": ["@alpha"] @@ -157164,9 +153872,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, + "line": 36, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L36" } ], "type": { @@ -157175,15 +153883,15 @@ }, "inheritedFrom": { "type": "reference", - "target": 1030, - "name": "default.throwOnError" + "target": -1, + "name": "VectorDataApi.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 1029, - "name": "default.throwOnError" + "target": -1, + "name": "VectorDataApi.throwOnError" } } ], @@ -157198,23 +153906,27 @@ } ], "categories": [ + { + "title": "Other", + "children": [890] + }, { "title": "Vector Buckets", - "children": [842, 873, 864, 867, 861, 870, 890] + "children": [842, 873, 864, 867, 861, 870] } ], "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 343, + "line": 424, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L343" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L424" } ], "extendedTypes": [ { "type": "reference", - "target": 999, + "target": -1, "name": "default", "package": "@supabase/storage-js" } @@ -157254,7 +153966,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 42, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L42" } ], "type": { @@ -157281,7 +153993,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L40" } ], "type": { @@ -157308,7 +154020,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L36" } ], "type": { @@ -157335,7 +154047,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L38" } ], "type": { @@ -157362,7 +154074,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L44" } ], "type": { @@ -157382,7 +154094,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 34, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L34" } ] }, @@ -157406,7 +154118,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L16" } ], "type": { @@ -157428,7 +154140,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L17" } ], "type": { @@ -157449,7 +154161,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L15" } ], "type": { @@ -157468,7 +154180,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L11" } ], "type": { @@ -157487,7 +154199,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L13" } ], "type": { @@ -157506,7 +154218,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L14" } ], "type": { @@ -157525,7 +154237,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L19" } ], "type": { @@ -157546,7 +154258,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L12" } ], "type": { @@ -157567,7 +154279,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L18" } ], "type": { @@ -157587,7 +154299,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 10, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L10" } ] }, @@ -157620,9 +154332,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 26, + "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25" } ], "type": { @@ -157643,9 +154355,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 27, + "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26" } ], "type": { @@ -157666,9 +154378,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 28, + "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L27" } ], "type": { @@ -157691,9 +154403,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 25, + "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24" } ], "type": { @@ -157716,9 +154428,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 29, + "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L28" } ], "type": { @@ -157741,9 +154453,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 24, + "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23" } ], "type": { @@ -157761,9 +154473,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 23, + "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L22" } ] }, @@ -157801,7 +154513,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L196" } ], "type": { @@ -157828,7 +154540,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 197, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L197" } ], "type": { @@ -157858,7 +154570,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L195" } ], "type": { @@ -157878,7 +154590,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 194, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L194" } ] }, @@ -157902,7 +154614,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L112" } ], "type": { @@ -157922,7 +154634,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 111, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L111" } ] }, @@ -157962,7 +154674,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L9" } ], "type": { @@ -157991,7 +154703,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L10" } ], "type": { @@ -158011,7 +154723,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 8, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L8" } ] }, @@ -158049,7 +154761,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L291" } ], "type": { @@ -158076,7 +154788,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L292" } ], "type": { @@ -158098,7 +154810,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 290, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L290" } ] }, @@ -158138,7 +154850,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" } ], "type": { @@ -158154,7 +154866,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" } ], "indexSignatures": [ @@ -158169,7 +154881,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 14, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L14" } ], "parameters": [ @@ -158215,7 +154927,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L16" } ], "type": { @@ -158235,7 +154947,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 12, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L12" } ] }, @@ -158267,7 +154979,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 204, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L204" } ], "type": { @@ -158292,7 +155004,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 200, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L200" } ] }, @@ -158314,7 +155026,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 49, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L49" } ], "type": { @@ -158333,7 +155045,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L57" } ], "type": { @@ -158354,7 +155066,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L53" } ], "type": { @@ -158373,7 +155085,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 51, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L51" } ], "type": { @@ -158401,7 +155113,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L55" } ], "type": { @@ -158420,7 +155132,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L56" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L56" } ], "type": { @@ -158454,7 +155166,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 48, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L48" } ], "type": { @@ -158473,7 +155185,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L50" } ], "type": { @@ -158492,7 +155204,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L52" } ], "type": { @@ -158512,7 +155224,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 47, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L47" } ] }, @@ -158534,7 +155246,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 64, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L64" } ], "type": { @@ -158555,7 +155267,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L70" } ], "type": { @@ -158576,7 +155288,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L71" } ], "type": { @@ -158595,7 +155307,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L66" } ], "type": { @@ -158616,7 +155328,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L72" } ], "type": { @@ -158635,7 +155347,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L61" } ], "type": { @@ -158663,7 +155375,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L68" } ], "type": { @@ -158684,7 +155396,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L73" } ], "type": { @@ -158705,7 +155417,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L74" } ], "type": { @@ -158739,7 +155451,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L63" } ], "type": { @@ -158760,7 +155472,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 69, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L69" } ], "type": { @@ -158779,7 +155491,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L65" } ], "type": { @@ -158798,7 +155510,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L62" } ], "type": { @@ -158818,7 +155530,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 60, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L60" } ] }, @@ -158858,7 +155570,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L86" } ], "type": { @@ -158935,7 +155647,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L90" } ], "type": { @@ -158964,7 +155676,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L98" } ], "type": { @@ -158993,7 +155705,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L108" } ], "type": { @@ -159037,7 +155749,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L103" } ], "type": { @@ -159081,7 +155793,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L94" } ], "type": { @@ -159101,7 +155813,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 82, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L82" } ] }, @@ -159139,7 +155851,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L162" } ], "type": { @@ -159166,7 +155878,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L163" } ], "type": { @@ -159198,7 +155910,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L164" } ], "type": { @@ -159227,7 +155939,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 165, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L165" } ], "type": { @@ -159254,7 +155966,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 161, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L161" } ], "type": { @@ -159274,7 +155986,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 160, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L160" } ] }, @@ -159312,7 +156024,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 173, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L173" } ], "type": { @@ -159337,7 +156049,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 172, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L172" } ] }, @@ -159361,7 +156073,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L23" } ], "type": { @@ -159382,7 +156094,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L24" } ], "type": { @@ -159403,7 +156115,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L27" } ], "type": { @@ -159424,7 +156136,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L25" } ], "type": { @@ -159462,7 +156174,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L26" } ], "type": { @@ -159491,7 +156203,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L22" } ] }, @@ -159531,7 +156243,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L138" } ], "type": { @@ -159560,7 +156272,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L139" } ], "type": { @@ -159589,7 +156301,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L137" } ], "type": { @@ -159616,7 +156328,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 136, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L136" } ], "type": { @@ -159636,7 +156348,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 135, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L135" } ] }, @@ -159674,7 +156386,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L148" } ], "type": { @@ -159699,7 +156411,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 148, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L148" } ], "type": { @@ -159719,7 +156431,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 148, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L148" } ] } @@ -159747,7 +156459,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 149, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L149" } ], "type": { @@ -159767,7 +156479,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 147, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L147" } ] }, @@ -159807,7 +156519,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L114" } ], "type": { @@ -159836,7 +156548,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L115" } ], "type": { @@ -159865,7 +156577,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L113" } ], "type": { @@ -159885,7 +156597,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 112, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L112" } ] }, @@ -159925,7 +156637,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L125" } ], "type": { @@ -159952,7 +156664,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 124, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L124" } ], "type": { @@ -159977,7 +156689,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 124, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L124" } ], "type": { @@ -159997,7 +156709,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 124, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L124" } ] } @@ -160016,7 +156728,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 123, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L123" } ] }, @@ -160054,7 +156766,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 214, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L214" } ], "type": { @@ -160083,7 +156795,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L215" } ], "type": { @@ -160112,7 +156824,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L216" } ], "type": { @@ -160141,7 +156853,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L217" } ], "type": { @@ -160170,7 +156882,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L218" } ], "type": { @@ -160199,7 +156911,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 219, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L219" } ], "type": { @@ -160228,7 +156940,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 220, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L220" } ], "type": { @@ -160255,7 +156967,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L213" } ], "type": { @@ -160275,7 +156987,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 212, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L212" } ] }, @@ -160315,7 +157027,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L230" } ], "type": { @@ -160342,7 +157054,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L229" } ], "type": { @@ -160367,7 +157079,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 228, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L228" } ] }, @@ -160389,7 +157101,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 209, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L209" } ], "type": { @@ -160409,7 +157121,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 208, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L208" } ] }, @@ -160449,7 +157161,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L31" } ], "type": { @@ -160472,7 +157184,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 30, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L30" } ] }, @@ -160510,7 +157222,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L184" } ], "type": { @@ -160537,7 +157249,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 183, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L183" } ], "type": { @@ -160564,7 +157276,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 185, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L185" } ], "type": { @@ -160589,7 +157301,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 182, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L182" } ] }, @@ -160629,7 +157341,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L254" } ], "type": { @@ -160658,7 +157370,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L251" } ], "type": { @@ -160685,7 +157397,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L252" } ], "type": { @@ -160716,7 +157428,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L255" } ], "type": { @@ -160745,7 +157457,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L256" } ], "type": { @@ -160774,7 +157486,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L253" } ], "type": { @@ -160801,7 +157513,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L250" } ], "type": { @@ -160821,7 +157533,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 249, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L249" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L249" } ] }, @@ -160859,7 +157571,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L264" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L264" } ], "type": { @@ -160884,7 +157596,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 263, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L263" } ] }, @@ -160927,7 +157639,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L120" } ], "type": { @@ -160956,7 +157668,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L125" } ], "type": { @@ -160985,7 +157697,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L135" } ], "type": { @@ -161014,7 +157726,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L130" } ], "type": { @@ -161036,7 +157748,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 115, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L115" } ] }, @@ -161058,7 +157770,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 183, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L183" } ], "type": { @@ -161077,7 +157789,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L179" } ], "type": { @@ -161096,7 +157808,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L180" } ], "type": { @@ -161124,7 +157836,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L188" } ], "type": { @@ -161143,7 +157855,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L184" } ], "type": { @@ -161177,7 +157889,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L181" } ], "type": { @@ -161196,7 +157908,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L182" } ], "type": { @@ -161216,7 +157928,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 178, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L178" } ] }, @@ -161248,7 +157960,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L158" } ], "type": { @@ -161288,7 +158000,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L148" } ], "type": { @@ -161317,7 +158029,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L153" } ], "type": { @@ -161357,7 +158069,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 175, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L175" } ], "type": { @@ -161415,7 +158127,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 169, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L169" } ], "type": { @@ -161435,7 +158147,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 143, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L143" } ] }, @@ -161457,7 +158169,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L195" } ], "type": { @@ -161481,7 +158193,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 194, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L194" } ], "type": { @@ -161502,7 +158214,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 197, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L197" } ], "type": { @@ -161521,7 +158233,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L196" } ], "type": { @@ -161546,7 +158258,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 193, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L193" } ] }, @@ -161570,7 +158282,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L78" } ], "type": { @@ -161591,7 +158303,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L79" } ], "type": { @@ -161611,7 +158323,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 77, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L77" } ] }, @@ -161633,7 +158345,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L139" } ], "type": { @@ -161667,7 +158379,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L140" } ], "type": { @@ -161696,7 +158408,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 138, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L138" } ] }, @@ -161720,7 +158432,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L8" } ], "type": { @@ -161740,7 +158452,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 7, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L7" } ] }, @@ -161780,9 +158492,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 31, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L35" } ], "type": { @@ -162018,9 +158730,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 26, + "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L30" } ], "type": { @@ -162034,9 +158746,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 26, + "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L30" } ], "indexSignatures": [ @@ -162049,9 +158761,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 26, + "line": 30, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L30" } ], "parameters": [ @@ -162086,9 +158798,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 22, + "line": 26, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" } ] }, @@ -162126,7 +158838,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 281, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L281" } ], "type": { @@ -162157,7 +158869,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 282, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L282" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L282" } ], "type": { @@ -162177,7 +158889,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 280, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L280" } ], "typeParameters": [ @@ -162218,7 +158930,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L240" } ], "type": { @@ -162247,7 +158959,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 220, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L220" } ], "type": { @@ -162276,7 +158988,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L233" } ], "type": { @@ -162305,7 +159017,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L227" } ], "type": { @@ -162347,7 +159059,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L216" } ], "type": { @@ -162367,7 +159079,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 212, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L212" } ] }, @@ -162407,7 +159119,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L21" } ], "type": { @@ -162436,7 +159148,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L22" } ], "type": { @@ -162465,7 +159177,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L20" } ], "type": { @@ -162485,7 +159197,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 19, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L19" } ] }, @@ -162523,7 +159235,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L71" } ], "type": { @@ -162546,7 +159258,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 70, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L70" } ] }, @@ -162586,7 +159298,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 272, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L272" } ], "type": { @@ -162611,7 +159323,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 271, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L271" } ] }, @@ -162651,7 +159363,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L62" } ], "type": { @@ -162678,7 +159390,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L58" } ], "type": { @@ -162705,7 +159417,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L59" } ], "type": { @@ -162732,7 +159444,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 60, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L60" } ], "type": { @@ -162761,7 +159473,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L56" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L56" } ], "type": { @@ -162790,7 +159502,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L61" } ], "type": { @@ -162819,7 +159531,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L57" } ], "type": { @@ -162839,7 +159551,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 55, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L55" } ] }, @@ -162879,7 +159591,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L101" } ], "type": { @@ -162910,7 +159622,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L103" } ], "type": { @@ -162937,7 +159649,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L100" } ], "type": { @@ -162966,7 +159678,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L102" } ], "type": { @@ -162988,7 +159700,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 99, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L99" } ] }, @@ -163026,7 +159738,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L88" } ], "type": { @@ -163055,7 +159767,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 87, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L87" } ], "type": { @@ -163084,7 +159796,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L89" } ], "type": { @@ -163106,7 +159818,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 86, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L86" } ] }, @@ -163129,7 +159841,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 299, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L299" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L299" } ], "typeParameters": [ @@ -163187,7 +159899,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L8" } ], "type": { @@ -163215,7 +159927,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 247, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L247" } ], "typeParameters": [ @@ -163318,7 +160030,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 43, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L43" } ], "type": { @@ -163350,7 +160062,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 251, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L251" } ], "typeParameters": [ @@ -163385,7 +160097,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 253, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L253" } ], "type": { @@ -163407,7 +160119,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 254, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L254" } ], "type": { @@ -163427,7 +160139,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 252, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L252" } ] } @@ -163452,7 +160164,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 257, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L257" } ], "type": { @@ -163471,7 +160183,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 258, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L258" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L258" } ], "type": { @@ -163493,7 +160205,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 256, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L256" } ] } @@ -163512,7 +160224,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 5, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L5" } ], "type": { @@ -163544,7 +160256,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L22" } ], "type": { @@ -163580,7 +160292,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 191, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L191" } ], "type": { @@ -163637,7 +160349,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L38" } ], "type": { @@ -163664,7 +160376,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 237, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L237" } ], "type": { @@ -163706,7 +160418,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L78" } ], "type": { @@ -163759,7 +160471,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 35, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" } ], "signatures": [ @@ -163788,7 +160500,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 35, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" } ], "parameters": [ @@ -163830,7 +160542,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 10, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L10" } ], "signatures": [ @@ -163845,7 +160557,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 10, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L10" } ], "parameters": [ @@ -163886,7 +160598,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 18, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L18" } ], "signatures": [ @@ -163920,7 +160632,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 18, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L18" } ], "parameters": [ @@ -163977,7 +160689,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" } ], "signatures": [ @@ -164006,7 +160718,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 57, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" } ], "parameters": [ @@ -164062,7 +160774,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 10, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" } ], "signatures": [ @@ -164091,7 +160803,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 10, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" } ], "parameters": [ @@ -164559,7 +161271,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 23, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" } ], "signatures": [ @@ -164588,7 +161300,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 23, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" } ], "type": { @@ -164713,7 +161425,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 70, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" } ], "signatures": [ @@ -164728,7 +161440,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 70, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" } ], "parameters": [ @@ -164766,7 +161478,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 71, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" } ], "type": { @@ -164789,7 +161501,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 71, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" } ] } @@ -164835,7 +161547,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 3, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/index.ts#L3" } ], "target": 47 @@ -164848,7 +161560,7 @@ }, { "title": "Classes", - "children": [729, 500, 724, 745, 1158, 752, 1153, 1174, 905, 790, 999, 951, 841] + "children": [729, 500, 724, 745, 1158, 752, 1153, 1174, 790, 841] }, { "title": "Interfaces", @@ -164876,7 +161588,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/index.ts#L1" } ] }, @@ -164905,7 +161617,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "signatures": [ @@ -164920,7 +161632,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "parameters": [ @@ -164943,7 +161655,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "signatures": [ @@ -164958,7 +161670,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "type": { @@ -165021,7 +161733,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" } ], "type": { @@ -165046,7 +161758,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "signatures": [ @@ -165061,7 +161773,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "type": { @@ -165085,7 +161797,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "signatures": [ @@ -165119,7 +161831,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "typeParameters": [ @@ -165172,7 +161884,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "signatures": [ @@ -165187,7 +161899,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "parameters": [ @@ -165305,7 +162017,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -165339,7 +162051,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "parameters": [ @@ -165379,7 +162091,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -165394,7 +162106,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "type": { @@ -165461,7 +162173,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "signatures": [ @@ -165495,7 +162207,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "typeParameters": [ @@ -165572,7 +162284,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "signatures": [ @@ -165587,7 +162299,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "parameters": [ @@ -165689,7 +162401,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "signatures": [ @@ -165704,7 +162416,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "parameters": [ @@ -165821,7 +162533,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 5, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" } ], "implementedTypes": [ @@ -165867,7 +162579,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" } ] }, @@ -165902,9 +162614,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "signatures": [ @@ -165940,14 +162652,15 @@ } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "parameters": [ @@ -165995,9 +162708,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "indexSignatures": [ @@ -166010,9 +162723,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "parameters": [ @@ -166287,9 +163000,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 80, + "line": 90, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L90" } ], "signatures": [ @@ -166321,7 +163034,7 @@ "content": [ { "kind": "text", - "text": "Promise with newly created bucket name or error" + "text": "Promise with response containing newly created analytics bucket or error" } ] }, @@ -166339,18 +163052,19 @@ }, { "kind": "code", - "text": "```json\n{\n \"data\": {\n \"name\": \"analytics-data\"\n },\n \"error\": null\n}\n```" + "text": "```json\n{\n \"data\": {\n \"name\": \"analytics-data\",\n \"type\": \"ANALYTICS\",\n \"format\": \"iceberg\",\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n },\n \"error\": null\n}\n```" } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 80, + "line": 90, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L90" } ], "parameters": [ @@ -166402,9 +163116,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 82, + "line": 92, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L92" } ], "type": { @@ -166423,9 +163137,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 83, + "line": 93, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" } ], "type": { @@ -166443,9 +163157,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 81, + "line": 91, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L91" } ] } @@ -166468,9 +163182,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 86, + "line": 96, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" } ], "type": { @@ -166487,9 +163201,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 87, + "line": 97, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L97" } ], "type": { @@ -166509,9 +163223,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 85, + "line": 95, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ] } @@ -166534,9 +163248,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 221, + "line": 235, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" } ], "signatures": [ @@ -166568,7 +163282,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -166590,14 +163304,15 @@ } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 221, + "line": 235, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" } ], "parameters": [ @@ -166649,9 +163364,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 223, + "line": 237, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L237" } ], "type": { @@ -166672,9 +163387,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 223, + "line": 237, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L237" } ], "type": { @@ -166692,9 +163407,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 223, + "line": 237, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L237" } ] } @@ -166709,9 +163424,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 224, + "line": 238, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L238" } ], "type": { @@ -166729,9 +163444,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 222, + "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L236" } ] } @@ -166754,9 +163469,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 227, + "line": 241, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L241" } ], "type": { @@ -166773,9 +163488,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 228, + "line": 242, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L242" } ], "type": { @@ -166795,9 +163510,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 226, + "line": 240, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L240" } ] } @@ -166820,9 +163535,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 149, + "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "signatures": [ @@ -166854,7 +163569,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of analytics buckets or error" + "text": "Promise with response containing array of analytics buckets or error" } ] }, @@ -166872,18 +163587,19 @@ }, { "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```" + "text": "```json\n{\n \"data\": [\n {\n \"name\": \"analytics-data\",\n \"type\": \"ANALYTICS\",\n \"format\": \"iceberg\",\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```" } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 149, + "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "parameters": [ @@ -166931,9 +163647,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 150, + "line": 162, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" } ], "type": { @@ -166960,9 +163676,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 151, + "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" } ], "type": { @@ -166989,9 +163705,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 154, + "line": 166, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" } ], "type": { @@ -167011,25 +163727,21 @@ "summary": [ { "kind": "text", - "text": "Column to sort by ('id', 'name', 'created_at', 'updated_at')" + "text": "Column to sort by ('name', 'created_at', 'updated_at')" } ] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 152, + "line": 164, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L164" } ], "type": { "type": "union", "types": [ - { - "type": "literal", - "value": "id" - }, { "type": "literal", "value": "name" @@ -167064,9 +163776,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 153, + "line": 165, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" } ], "type": { @@ -167093,9 +163805,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 149, + "line": 161, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ] } @@ -167130,9 +163842,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 157, + "line": 169, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" } ], "type": { @@ -167154,9 +163866,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 158, + "line": 170, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" } ], "type": { @@ -167174,9 +163886,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 156, + "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L168" } ] } @@ -167199,9 +163911,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 161, + "line": 173, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L173" } ], "type": { @@ -167218,9 +163930,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 162, + "line": 174, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L174" } ], "type": { @@ -167240,9 +163952,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 160, + "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L172" } ] } @@ -167267,9 +163979,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 47, + "line": 51, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L51" } ], "signatures": [ @@ -167305,14 +164017,15 @@ } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 47, + "line": 51, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L51" } ], "type": { @@ -167344,7 +164057,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 11, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L11" } ] } @@ -167360,7 +164073,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" } ] }, @@ -167389,7 +164102,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" } ], "signatures": [ @@ -167404,7 +164117,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" } ], "parameters": [ @@ -167438,7 +164151,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 16, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" } ], "indexSignatures": [ @@ -167453,7 +164166,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 16, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" } ], "parameters": [ @@ -167737,7 +164450,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "signatures": [ @@ -167769,7 +164482,7 @@ "content": [ { "kind": "text", - "text": "Promise with newly created bucket id or error" + "text": "Promise with response containing newly created bucket name or error" } ] }, @@ -167798,7 +164511,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "parameters": [ @@ -167857,7 +164570,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" } ], "type": { @@ -167898,7 +164611,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -167938,7 +164651,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -167979,7 +164692,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 207, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" } ], "type": { @@ -168001,7 +164714,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -168039,7 +164752,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 213, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" } ], "type": { @@ -168075,7 +164788,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" } ], "type": { @@ -168095,7 +164808,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 212, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" } ] } @@ -168120,7 +164833,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 217, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" } ], "type": { @@ -168139,7 +164852,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 218, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" } ], "type": { @@ -168161,7 +164874,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 216, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" } ] } @@ -168186,7 +164899,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "signatures": [ @@ -168255,7 +164968,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "parameters": [ @@ -168309,7 +165022,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -168332,7 +165045,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -168352,7 +165065,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ] } @@ -168369,7 +165082,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 408, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" } ], "type": { @@ -168389,7 +165102,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 406, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" } ] } @@ -168414,7 +165127,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" } ], "type": { @@ -168433,7 +165146,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 412, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" } ], "type": { @@ -168455,7 +165168,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 410, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" } ] } @@ -168480,7 +165193,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "signatures": [ @@ -168541,7 +165254,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "parameters": [ @@ -168595,7 +165308,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -168618,7 +165331,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -168638,7 +165351,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ] } @@ -168655,7 +165368,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 353, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" } ], "type": { @@ -168675,7 +165388,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 351, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" } ] } @@ -168700,7 +165413,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" } ], "type": { @@ -168719,7 +165432,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 357, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" } ], "type": { @@ -168741,7 +165454,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 355, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" } ] } @@ -168766,7 +165479,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "signatures": [ @@ -168798,7 +165511,7 @@ "content": [ { "kind": "text", - "text": "Promise with bucket details or error" + "text": "Promise with response containing bucket details or error" } ] }, @@ -168827,7 +165540,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "parameters": [ @@ -168881,7 +165594,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" } ], "type": { @@ -168902,7 +165615,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" } ], "type": { @@ -168922,7 +165635,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 140, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" } ] } @@ -168947,7 +165660,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" } ], "type": { @@ -168966,7 +165679,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 146, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" } ], "type": { @@ -168988,7 +165701,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" } ] } @@ -169013,7 +165726,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "signatures": [ @@ -169045,7 +165758,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets or error" + "text": "Promise with response containing array of buckets or error" } ] }, @@ -169076,7 +165789,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "parameters": [ @@ -169166,7 +165879,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 80, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" } ], "type": { @@ -169190,7 +165903,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 81, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" } ], "type": { @@ -169210,7 +165923,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" } ] } @@ -169235,7 +165948,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 84, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" } ], "type": { @@ -169254,7 +165967,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 85, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" } ], "type": { @@ -169276,7 +165989,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 83, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" } ] } @@ -169303,7 +166016,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "signatures": [ @@ -169337,7 +166050,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "type": { @@ -169358,7 +166071,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "signatures": [ @@ -169390,7 +166103,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -169419,7 +166132,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "parameters": [ @@ -169478,7 +166191,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 288, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" } ], "type": { @@ -169519,7 +166232,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 287, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" } ], "type": { @@ -169559,7 +166272,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" } ], "type": { @@ -169579,7 +166292,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 285, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" } ] } @@ -169616,7 +166329,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -169639,7 +166352,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -169659,7 +166372,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ] } @@ -169676,7 +166389,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 293, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" } ], "type": { @@ -169696,7 +166409,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 291, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" } ] } @@ -169721,7 +166434,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 296, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" } ], "type": { @@ -169740,7 +166453,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 297, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" } ], "type": { @@ -169762,7 +166475,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 295, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" } ] } @@ -169802,7 +166515,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" } ], "extendedBy": [ @@ -169825,7 +166538,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" } ] }, @@ -169854,7 +166567,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "signatures": [ @@ -169869,7 +166582,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "parameters": [ @@ -169903,7 +166616,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 54, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" } ], "indexSignatures": [ @@ -169918,7 +166631,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 54, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" } ], "parameters": [ @@ -170200,7 +166913,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 556, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" } ], "signatures": [ @@ -170232,7 +166945,7 @@ "content": [ { "kind": "text", - "text": "Promise with copied file path or error" + "text": "Promise with response containing copied file path or error" } ] }, @@ -170261,7 +166974,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 556, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" } ], "parameters": [ @@ -170373,7 +167086,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 562, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" } ], "type": { @@ -170396,7 +167109,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 562, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" } ], "type": { @@ -170416,7 +167129,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 562, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" } ] } @@ -170433,7 +167146,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 563, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L563" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L563" } ], "type": { @@ -170453,7 +167166,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 561, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L561" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L561" } ] } @@ -170478,7 +167191,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 566, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L566" } ], "type": { @@ -170497,7 +167210,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 567, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L567" } ], "type": { @@ -170519,7 +167232,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 565, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L565" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L565" } ] } @@ -170544,7 +167257,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 342, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" } ], "signatures": [ @@ -170576,7 +167289,7 @@ "content": [ { "kind": "text", - "text": "Promise with signed upload URL, token, and path or error" + "text": "Promise with response containing signed upload URL, token, and path or error" } ] }, @@ -170605,7 +167318,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 342, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" } ], "parameters": [ @@ -170672,7 +167385,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 344, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" } ], "type": { @@ -170692,7 +167405,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 344, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" } ] } @@ -170729,7 +167442,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -170752,7 +167465,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -170771,7 +167484,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -170790,7 +167503,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -170810,7 +167523,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ] } @@ -170827,7 +167540,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 348, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L348" } ], "type": { @@ -170847,7 +167560,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 346, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L346" } ] } @@ -170872,7 +167585,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 351, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L351" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L351" } ], "type": { @@ -170891,7 +167604,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 352, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L352" } ], "type": { @@ -170913,7 +167626,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 350, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L350" } ] } @@ -170938,7 +167651,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 646, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" } ], "signatures": [ @@ -170970,7 +167683,7 @@ "content": [ { "kind": "text", - "text": "Promise with signed URL or error" + "text": "Promise with response containing signed URL or error" } ] }, @@ -171019,7 +167732,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 646, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" } ], "parameters": [ @@ -171115,7 +167828,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 649, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" } ], "type": { @@ -171153,7 +167866,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 649, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" } ], "type": { @@ -171175,7 +167888,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 649, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" } ] } @@ -171212,7 +167925,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 652, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" } ], "type": { @@ -171235,7 +167948,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 652, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" } ], "type": { @@ -171255,7 +167968,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 652, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" } ] } @@ -171272,7 +167985,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 653, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L653" } ], "type": { @@ -171292,7 +168005,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 651, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L651" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L651" } ] } @@ -171317,7 +168030,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 656, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L656" } ], "type": { @@ -171336,7 +168049,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 657, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L657" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L657" } ], "type": { @@ -171358,7 +168071,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 655, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L655" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L655" } ] } @@ -171383,7 +168096,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 725, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" } ], "signatures": [ @@ -171415,7 +168128,7 @@ "content": [ { "kind": "text", - "text": "Promise with array of signed URLs or error" + "text": "Promise with response containing array of objects with signedUrl, path, and error or error" } ] }, @@ -171444,7 +168157,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 725, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" } ], "parameters": [ @@ -171541,7 +168254,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 728, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" } ], "type": { @@ -171570,7 +168283,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 728, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" } ] } @@ -171607,7 +168320,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -171632,7 +168345,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -171660,7 +168373,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -171688,7 +168401,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -171708,7 +168421,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ] } @@ -171726,7 +168439,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 732, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L732" } ], "type": { @@ -171746,7 +168459,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 730, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L730" } ] } @@ -171771,7 +168484,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 735, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L735" } ], "type": { @@ -171790,7 +168503,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 736, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L736" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L736" } ], "type": { @@ -171812,7 +168525,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 734, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L734" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L734" } ] } @@ -171837,7 +168550,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ], "signatures": [ @@ -171916,7 +168629,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ], "typeParameters": [ @@ -171948,7 +168661,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ], "type": { @@ -171970,7 +168683,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ] } @@ -172043,7 +168756,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 886, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" } ], "signatures": [ @@ -172075,7 +168788,7 @@ "content": [ { "kind": "text", - "text": "Promise with boolean indicating file existence or error" + "text": "Promise with response containing boolean indicating file existence or error" } ] }, @@ -172096,7 +168809,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 886, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" } ], "parameters": [ @@ -172158,7 +168871,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 888, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L888" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L888" } ], "type": { @@ -172177,7 +168890,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 889, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "type": { @@ -172197,7 +168910,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 887, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L887" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L887" } ] } @@ -172222,7 +168935,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 892, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L892" } ], "type": { @@ -172241,7 +168954,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 893, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L893" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L893" } ], "type": { @@ -172263,7 +168976,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 891, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L891" } ] } @@ -172288,7 +169001,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" } ], "signatures": [ @@ -172369,7 +169082,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" } ], "parameters": [ @@ -172438,7 +169151,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 972, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" } ], "type": { @@ -172476,7 +169189,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 972, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" } ], "type": { @@ -172498,7 +169211,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 972, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" } ] } @@ -172525,7 +169238,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ], "type": { @@ -172548,7 +169261,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ], "type": { @@ -172568,7 +169281,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ] } @@ -172586,7 +169299,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ] } @@ -172605,7 +169318,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 841, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" } ], "signatures": [ @@ -172637,7 +169350,7 @@ "content": [ { "kind": "text", - "text": "Promise with file metadata or error" + "text": "Promise with response containing file metadata or error" } ] }, @@ -172658,7 +169371,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 841, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" } ], "parameters": [ @@ -172720,7 +169433,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 843, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L843" } ], "type": { @@ -172749,7 +169462,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 844, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L844" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L844" } ], "type": { @@ -172769,7 +169482,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 842, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L842" } ] } @@ -172794,7 +169507,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 847, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L847" } ], "type": { @@ -172813,7 +169526,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 848, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L848" } ], "type": { @@ -172835,7 +169548,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 846, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L846" } ] } @@ -172860,7 +169573,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1178, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" } ], "signatures": [ @@ -172892,7 +169605,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of files or error" + "text": "Promise with response containing array of files or error" } ] }, @@ -172931,7 +169644,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1178, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" } ], "parameters": [ @@ -173033,7 +169746,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1184, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1184" } ], "type": { @@ -173057,7 +169770,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1185" } ], "type": { @@ -173077,7 +169790,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1183, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1183" } ] } @@ -173102,7 +169815,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1188" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1188" } ], "type": { @@ -173121,7 +169834,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1189, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1189" } ], "type": { @@ -173143,7 +169856,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1187, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1187" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1187" } ] } @@ -173168,7 +169881,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1221, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" } ], "signatures": [ @@ -173203,7 +169916,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1221, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" } ], "parameters": [ @@ -173276,7 +169989,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1226" } ], "type": { @@ -173297,7 +170010,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1227, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1227" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1227" } ], "type": { @@ -173317,7 +170030,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1225" } ] } @@ -173342,7 +170055,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1230" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1230" } ], "type": { @@ -173361,7 +170074,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1231, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1231" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1231" } ], "type": { @@ -173383,7 +170096,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1229" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1229" } ] } @@ -173408,7 +170121,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 490, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" } ], "signatures": [ @@ -173440,7 +170153,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -173469,7 +170182,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 490, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" } ], "parameters": [ @@ -173581,7 +170294,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 496, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ], "type": { @@ -173604,7 +170317,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 496, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ], "type": { @@ -173624,7 +170337,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 496, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ] } @@ -173641,7 +170354,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L497" } ], "type": { @@ -173661,7 +170374,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 495, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L495" } ] } @@ -173686,7 +170399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 500, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L500" } ], "type": { @@ -173705,7 +170418,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 501, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L501" } ], "type": { @@ -173727,7 +170440,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 499, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L499" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L499" } ] } @@ -173752,7 +170465,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1026, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" } ], "signatures": [ @@ -173784,7 +170497,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of deleted files or error" + "text": "Promise with response containing array of deleted file objects or error" } ] }, @@ -173813,7 +170526,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1026, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" } ], "parameters": [ @@ -173878,7 +170591,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1028, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1028" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1028" } ], "type": { @@ -173902,7 +170615,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1029, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1029" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1029" } ], "type": { @@ -173922,7 +170635,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1027, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1027" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1027" } ] } @@ -173947,7 +170660,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1032, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1032" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1032" } ], "type": { @@ -173966,7 +170679,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1033, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1033" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1033" } ], "type": { @@ -173988,7 +170701,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1031, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1031" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1031" } ] } @@ -174015,7 +170728,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 69, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" } ], "signatures": [ @@ -174049,7 +170762,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 69, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" } ], "type": { @@ -174070,7 +170783,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" } ], "signatures": [ @@ -174085,7 +170798,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" } ], "parameters": [ @@ -174119,7 +170832,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 436, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" } ], "signatures": [ @@ -174151,7 +170864,7 @@ "content": [ { "kind": "text", - "text": "Promise with file path and id or error" + "text": "Promise with response containing file path, id, and fullPath or error" } ] }, @@ -174190,7 +170903,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 436, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" } ], "parameters": [ @@ -174426,7 +171139,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -174449,7 +171162,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -174468,7 +171181,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -174487,7 +171200,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -174507,7 +171220,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ] } @@ -174524,7 +171237,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 453, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L453" } ], "type": { @@ -174544,7 +171257,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 451, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L451" } ] } @@ -174569,7 +171282,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 456, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L456" } ], "type": { @@ -174588,7 +171301,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 457, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" } ], "type": { @@ -174610,7 +171323,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 455, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L455" } ] } @@ -174635,7 +171348,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 215, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" } ], "signatures": [ @@ -174667,7 +171380,7 @@ "content": [ { "kind": "text", - "text": "Promise with file path and id or error" + "text": "Promise with response containing file path, id, and fullPath or error" } ] }, @@ -174706,7 +171419,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 215, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" } ], "parameters": [ @@ -174815,7 +171528,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -174838,7 +171551,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -174857,7 +171570,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -174876,7 +171589,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -174896,7 +171609,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ] } @@ -174913,7 +171626,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 222, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L222" } ], "type": { @@ -174933,7 +171646,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 220, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L220" } ] } @@ -174958,7 +171671,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 225, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -174977,7 +171690,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L226" } ], "type": { @@ -174999,7 +171712,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 224, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L224" } ] } @@ -175024,7 +171737,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" } ], "signatures": [ @@ -175064,7 +171777,7 @@ "content": [ { "kind": "text", - "text": "Promise with file path and full path or error" + "text": "Promise with response containing file path and fullPath or error" } ] }, @@ -175093,7 +171806,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" } ], "parameters": [ @@ -175225,7 +171938,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ], "type": { @@ -175248,7 +171961,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ], "type": { @@ -175268,7 +171981,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ], "type": { @@ -175289,7 +172002,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ] } @@ -175307,7 +172020,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 298, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L298" } ], "type": { @@ -175328,7 +172041,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 296, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L296" } ] } @@ -175353,7 +172066,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 305, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" } ], "type": { @@ -175373,7 +172086,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 305, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" } ], "type": { @@ -175395,7 +172108,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 305, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" } ] } @@ -175440,7 +172153,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 45, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L45" } ] } @@ -175456,7 +172169,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" } ] }, @@ -175485,7 +172198,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "signatures": [ @@ -175500,7 +172213,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "parameters": [ @@ -175523,7 +172236,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "signatures": [ @@ -175538,7 +172251,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "type": { @@ -175599,7 +172312,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "signatures": [ @@ -175633,7 +172346,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "typeParameters": [ @@ -175716,7 +172429,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "signatures": [ @@ -175731,7 +172444,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "parameters": [ @@ -175839,7 +172552,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "signatures": [ @@ -175854,7 +172567,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "parameters": [ @@ -175967,7 +172680,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 4, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" } ], "implementedTypes": [ @@ -176013,7 +172726,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" } ] } @@ -176048,15 +172761,15 @@ }, { "kind": "code", - "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://.supabase.co', '')\n\n// Access storage\nconst storage = supabase.storage\n\n// Access different bucket types\nconst regularBucket = storage.from('my-bucket')\nconst vectorBucket = storage.vectors.from('embeddings-bucket')\nconst analyticsBucket = storage.analytics // Analytics API\n```" + "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Use publishable/anon key for frontend applications\nconst supabase = createClient('https://.supabase.co', '')\n\n// Access storage\nconst storage = supabase.storage\n\n// Access different bucket types\nconst regularBucket = storage.from('my-bucket')\nconst vectorBucket = storage.vectors.from('embeddings-bucket')\nconst analyticsBucket = storage.analytics // Analytics API\n```" }, { "kind": "text", - "text": "\n\n#### Option 2: Standalone StorageClient\n\nFor applications that only need storage functionality:\n\n" + "text": "\n\n#### Option 2: Standalone StorageClient\n\nFor backend applications or when you need to bypass Row Level Security:\n\n" }, { "kind": "code", - "text": "```js\nimport { StorageClient } from '@supabase/storage-js'\n\nconst STORAGE_URL = 'https://.supabase.co/storage/v1'\nconst SERVICE_KEY = '' //! service key, not anon key\n\nconst storageClient = new StorageClient(STORAGE_URL, {\n apikey: SERVICE_KEY,\n Authorization: `Bearer ${SERVICE_KEY}`,\n})\n\n// Access different bucket types\nconst regularBucket = storageClient.from('my-bucket')\nconst vectorBucket = storageClient.vectors.from('embeddings-bucket')\nconst analyticsBucket = storageClient.analytics // Analytics API\n```" + "text": "```js\nimport { StorageClient } from '@supabase/storage-js'\n\nconst STORAGE_URL = 'https://.supabase.co/storage/v1'\nconst SERVICE_KEY = '' // Use secret key for backend operations\n\nconst storageClient = new StorageClient(STORAGE_URL, {\n apikey: SERVICE_KEY,\n Authorization: `Bearer ${SERVICE_KEY}`,\n})\n\n// Access different bucket types\nconst regularBucket = storageClient.from('my-bucket')\nconst vectorBucket = storageClient.vectors.from('embeddings-bucket')\nconst analyticsBucket = storageClient.analytics // Analytics API\n```" }, { "kind": "text", @@ -176068,7 +172781,7 @@ }, { "kind": "text", - "text": " when working with other Supabase features (auth, database, etc.)\n> - Use " + "text": " when working with other Supabase features (auth, database, etc.) in frontend applications\n> - Use " }, { "kind": "code", @@ -176076,7 +172789,295 @@ }, { "kind": "text", - "text": " for storage-only applications or when you need fine-grained control\n\n### Understanding Bucket Types\n\nSupabase Storage supports three types of buckets, each optimized for different use cases:\n\n#### 1. Regular Storage Buckets (File Storage)\n\nStandard buckets for storing files, images, videos, and other assets.\n\n" + "text": " for backend applications, Edge Functions, or when you need to bypass RLS policies\n\n### Understanding API Keys\n\nSupabase provides different types of API keys for different use cases:\n\n| Key Type | Format | Privileges | Use Case |\n| ---------------------- | -------------------- | ---------- | ------------------------------------------------------------------------ |\n| **Publishable key** | " + }, + { + "kind": "code", + "text": "`sb_publishable_...`" + }, + { + "kind": "text", + "text": " | Low | Frontend applications (web pages, mobile apps) - works with RLS policies |\n| **Secret key** | " + }, + { + "kind": "code", + "text": "`sb_secret_...`" + }, + { + "kind": "text", + "text": " | Elevated | Backend applications (servers, Edge Functions) - bypasses RLS |\n| **anon** (JWT) | JWT format | Low | Legacy - use publishable key instead |\n| **service_role** (JWT) | JWT format | Elevated | Legacy - use secret key instead |\n\n**For frontend applications:**\n\n- Use **publishable keys** (" + }, + { + "kind": "code", + "text": "`sb_publishable_...`" + }, + { + "kind": "text", + "text": ") or " + }, + { + "kind": "code", + "text": "`anon`" + }, + { + "kind": "text", + "text": " JWT keys\n- These keys work with Row Level Security (RLS) policies\n- Safe to expose in client-side code\n- Access is controlled by RLS policies you define\n\n**For backend applications:**\n\n- Use **secret keys** (" + }, + { + "kind": "code", + "text": "`sb_secret_...`" + }, + { + "kind": "text", + "text": ") or " + }, + { + "kind": "code", + "text": "`service_role`" + }, + { + "kind": "text", + "text": " JWT keys\n- These keys bypass all RLS policies\n- **Never expose these keys** in client-side code\n- Use only in secure, server-side environments\n\n> **⚠️ Security Warning:** Never use secret keys or " + }, + { + "kind": "code", + "text": "`service_role`" + }, + { + "kind": "text", + "text": " keys in frontend code, mobile apps, or any publicly accessible location. They provide full access to your project's data and bypass all security policies.\n\n### Access Control and Row Level Security\n\nSupabase Storage uses Postgres [Row Level Security (RLS)](/docs/guides/database/postgres/row-level-security) to control access to buckets and files. By default, Storage blocks all operations unless you create RLS policies.\n\n#### How RLS Works with Storage\n\n- **Publishable/anon keys**: Operations are controlled by RLS policies on the " + }, + { + "kind": "code", + "text": "`storage.objects`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`storage.buckets`" + }, + { + "kind": "text", + "text": " tables\n- **Secret/service_role keys**: Operations bypass RLS entirely (use with caution)\n\n#### Required RLS Permissions\n\nDifferent operations require different RLS policy permissions:\n\n| Operation | " + }, + { + "kind": "code", + "text": "`buckets`" + }, + { + "kind": "text", + "text": " table | " + }, + { + "kind": "code", + "text": "`objects`" + }, + { + "kind": "text", + "text": " table |\n| ------------------- | ------------------ | ---------------------------- |\n| " + }, + { + "kind": "code", + "text": "`createBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`INSERT`" + }, + { + "kind": "text", + "text": " | None |\n| " + }, + { + "kind": "code", + "text": "`updateBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`UPDATE`" + }, + { + "kind": "text", + "text": " | None |\n| " + }, + { + "kind": "code", + "text": "`deleteBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`DELETE`" + }, + { + "kind": "text", + "text": " | None |\n| " + }, + { + "kind": "code", + "text": "`emptyBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`DELETE`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`upload`" + }, + { + "kind": "text", + "text": " (new file) | None | " + }, + { + "kind": "code", + "text": "`INSERT`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`upload`" + }, + { + "kind": "text", + "text": " (upsert) | None | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`INSERT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`UPDATE`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`download`" + }, + { + "kind": "text", + "text": " | None | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`list`" + }, + { + "kind": "text", + "text": " | None | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`remove`" + }, + { + "kind": "text", + "text": " | None | " + }, + { + "kind": "code", + "text": "`DELETE`" + }, + { + "kind": "text", + "text": " |\n\n> **Note:** Refer to the [Storage Access Control guide](https://supabase.com/docs/guides/storage/access-control) for detailed information on creating RLS policies.\n\n#### Example RLS Policy\n\nAllow authenticated users to upload files to a specific bucket:\n\n" + }, + { + "kind": "code", + "text": "```sql\nCREATE POLICY \"Allow authenticated uploads\"\nON storage.objects\nFOR INSERT\nTO authenticated\nWITH CHECK (\n bucket_id = 'my-bucket-id'\n);\n```" + }, + { + "kind": "text", + "text": "\n\n### Understanding Bucket Types\n\nSupabase Storage supports three types of buckets, each optimized for different use cases:\n\n#### 1. Regular Storage Buckets (File Storage)\n\nStandard buckets for storing files, images, videos, and other assets.\n\n" }, { "kind": "code", @@ -176296,7 +173297,7 @@ }, { "kind": "code", - "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-anon-key')\n\n// Access analytics operations\nconst analytics = supabase.storage.analytics\n\n// Create an analytics bucket\nconst { data, error } = await analytics.createBucket('analytics-data')\nif (error) {\n console.error('Failed to create analytics bucket:', error.message)\n} else {\n console.log('Created bucket:', data.name)\n}\n```" + "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-publishable-key')\n\n// Access analytics operations\nconst analytics = supabase.storage.analytics\n\n// Create an analytics bucket\nconst { data, error } = await analytics.createBucket('analytics-data')\nif (error) {\n console.error('Failed to create analytics bucket:', error.message)\n} else {\n console.log('Created bucket:', data.name)\n}\n```" }, { "kind": "text", @@ -176464,7 +173465,7 @@ }, { "kind": "code", - "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-anon-key')\n\n// Access vector operations through storage\nconst vectors = supabase.storage.vectors\n\n// Create a vector bucket\nawait vectors.createBucket('embeddings-prod')\n\n// Create an index\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n})\n\n// Insert vectors\nconst index = bucket.index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3 /* ...1536 dimensions */] },\n metadata: { title: 'Introduction', category: 'docs' },\n },\n ],\n})\n\n// Query similar vectors\nconst { data, error } = await index.queryVectors({\n queryVector: { float32: [0.15, 0.25, 0.35 /* ...1536 dimensions */] },\n topK: 5,\n returnDistance: true,\n returnMetadata: true,\n})\n\nif (data) {\n data.matches.forEach((match) => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```" + "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-publishable-key')\n\n// Access vector operations through storage\nconst vectors = supabase.storage.vectors\n\n// Create a vector bucket\nawait vectors.createBucket('embeddings-prod')\n\n// Create an index\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n})\n\n// Insert vectors\nconst index = bucket.index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3 /* ...1536 dimensions */] },\n metadata: { title: 'Introduction', category: 'docs' },\n },\n ],\n})\n\n// Query similar vectors\nconst { data, error } = await index.queryVectors({\n queryVector: { float32: [0.15, 0.25, 0.35 /* ...1536 dimensions */] },\n topK: 5,\n returnDistance: true,\n returnMetadata: true,\n})\n\nif (data) {\n data.matches.forEach((match) => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```" }, { "kind": "text", @@ -179741,69 +176742,69 @@ "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "vectorBucketName" }, - "774": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.throwOnError" - }, - "775": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.throwOnError" - }, - "776": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" + "760": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.createBucket" }, - "777": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" + "761": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.createBucket" }, - "778": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", + "762": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "vectorBucketName" }, - "779": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" + "763": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.getBucket" }, - "780": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" + "764": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.getBucket" }, - "781": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", + "765": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "vectorBucketName" }, - "782": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", + "766": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "__type" }, - "783": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", + "767": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "__type.vectorBucket" }, - "784": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" + "768": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.listBuckets" }, - "785": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" + "769": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.listBuckets" }, - "786": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", + "770": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "787": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" + "771": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.deleteBucket" + }, + "772": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.deleteBucket" + }, + "773": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "vectorBucketName" }, "788": { "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" + "qualifiedName": "default.throwOnError" }, "789": { "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" + "qualifiedName": "default.throwOnError" }, "790": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", @@ -180129,390 +177130,6 @@ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "905": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default" - }, - "906": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.__constructor" - }, - "907": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default" - }, - "908": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "url" - }, - "909": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "headers" - }, - "910": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type" - }, - "911": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type.__index" - }, - "913": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "fetch" - }, - "914": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "915": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "916": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" - }, - "917": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" - }, - "918": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" - }, - "919": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" - }, - "920": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" - }, - "935": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.throwOnError" - }, - "936": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.throwOnError" - }, - "937": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" - }, - "938": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" - }, - "939": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" - }, - "940": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" - }, - "941": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" - }, - "942": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" - }, - "943": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type" - }, - "944": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type.vectorBucket" - }, - "945": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" - }, - "946": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" - }, - "947": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "options" - }, - "948": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" - }, - "949": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" - }, - "950": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" - }, - "951": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default" - }, - "952": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.__constructor" - }, - "953": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default" - }, - "954": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "url" - }, - "955": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "headers" - }, - "956": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "__type" - }, - "957": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "__type.__index" - }, - "959": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "fetch" - }, - "960": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "961": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "962": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" - }, - "963": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" - }, - "964": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" - }, - "965": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" - }, - "966": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" - }, - "981": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.throwOnError" - }, - "982": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.throwOnError" - }, - "983": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.createIndex" - }, - "984": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.createIndex" - }, - "985": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "options" - }, - "986": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.getIndex" - }, - "987": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.getIndex" - }, - "988": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "vectorBucketName" - }, - "989": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "indexName" - }, - "990": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "__type" - }, - "991": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "__type.index" - }, - "992": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.listIndexes" - }, - "993": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.listIndexes" - }, - "994": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "options" - }, - "995": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.deleteIndex" - }, - "996": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.deleteIndex" - }, - "997": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "vectorBucketName" - }, - "998": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "indexName" - }, - "999": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default" - }, - "1000": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.__constructor" - }, - "1001": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default" - }, - "1002": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "url" - }, - "1003": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "headers" - }, - "1004": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "__type" - }, - "1005": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "__type.__index" - }, - "1007": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "fetch" - }, - "1008": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "1009": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "1010": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" - }, - "1011": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" - }, - "1012": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" - }, - "1013": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" - }, - "1014": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" - }, - "1029": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.throwOnError" - }, - "1030": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.throwOnError" - }, - "1031": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.putVectors" - }, - "1032": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.putVectors" - }, - "1033": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "options" - }, - "1034": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.getVectors" - }, - "1035": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.getVectors" - }, - "1036": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "options" - }, - "1037": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.listVectors" - }, - "1038": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.listVectors" - }, - "1039": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "options" - }, - "1040": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.queryVectors" - }, - "1041": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.queryVectors" - }, - "1042": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "options" - }, - "1043": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.deleteVectors" - }, - "1044": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.deleteVectors" - }, - "1045": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "options" - }, "1046": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", "qualifiedName": "CreateIndexOptions" @@ -181295,7 +177912,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L88" } ], "type": { @@ -181314,7 +177931,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L89" } ], "type": { @@ -181333,7 +177950,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L90" } ], "type": { @@ -181352,7 +177969,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L91" } ], "type": { @@ -181371,7 +177988,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L92" } ], "type": { @@ -181390,7 +178007,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L93" } ], "type": { @@ -181409,7 +178026,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L94" } ], "type": { @@ -181428,7 +178045,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 95, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L95" } ], "type": { @@ -181447,7 +178064,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L96" } ], "type": { @@ -181466,7 +178083,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 97, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L97" } ], "type": { @@ -181485,7 +178102,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L98" } ], "type": { @@ -181504,7 +178121,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 99, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L99" } ], "type": { @@ -181523,7 +178140,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L100" } ], "type": { @@ -181542,7 +178159,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L101" } ], "type": { @@ -181561,7 +178178,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L102" } ], "type": { @@ -181581,7 +178198,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 87, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L87" } ] }, @@ -181611,7 +178228,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L34" } ], "signatures": [ @@ -181645,7 +178262,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L34" } ], "parameters": [ @@ -181688,7 +178305,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L42" } ], "type": { @@ -181917,7 +178534,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 41, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L41" } ], "type": { @@ -181954,7 +178571,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 43, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L43" } ], "type": { @@ -181977,7 +178594,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 40, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L40" } ] } @@ -182007,7 +178624,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 19, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L19" } ], "type": { @@ -182236,7 +178853,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 17, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L17" } ], "type": { @@ -182272,7 +178889,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 18, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L18" } ], "type": { @@ -182295,7 +178912,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L16" } ], "type": { @@ -182314,7 +178931,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 75, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L75" } ], "signatures": [ @@ -182348,7 +178965,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 75, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L75" } ], "typeParameters": [ @@ -182447,7 +179064,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 60, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L60" } ], "signatures": [ @@ -182481,7 +179098,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 60, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L60" } ], "parameters": [ @@ -182532,7 +179149,7 @@ "fileName": "packages/core/functions-js/src/FunctionsClient.ts", "line": 15, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/FunctionsClient.ts#L15" } ] }, @@ -182573,7 +179190,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L32" } ], "signatures": [ @@ -182588,7 +179205,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L32" } ], "parameters": [ @@ -182659,7 +179276,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -182683,7 +179300,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 30, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L30" } ], "extendedTypes": [ @@ -182752,7 +179369,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L50" } ], "signatures": [ @@ -182767,7 +179384,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L50" } ], "parameters": [ @@ -182815,7 +179432,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -182844,7 +179461,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 49, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L49" } ], "extendedTypes": [ @@ -182893,7 +179510,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L82" } ], "signatures": [ @@ -182908,7 +179525,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L82" } ], "parameters": [ @@ -182956,7 +179573,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -182985,7 +179602,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 81, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L81" } ], "extendedTypes": [ @@ -183034,7 +179651,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L66" } ], "signatures": [ @@ -183049,7 +179666,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L66" } ], "parameters": [ @@ -183097,7 +179714,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L31" } ], "type": { @@ -183126,7 +179743,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 65, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L65" } ], "extendedTypes": [ @@ -183149,7 +179766,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 105, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L105" } ], "type": { @@ -183182,7 +179799,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L121" } ], "type": { @@ -183291,7 +179908,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L109" } ], "type": { @@ -183307,7 +179924,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 109, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L109" } ], "indexSignatures": [ @@ -183322,7 +179939,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 109, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L109" } ], "parameters": [ @@ -183368,7 +179985,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L113" } ], "type": { @@ -183418,7 +180035,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 117, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L117" } ], "type": { @@ -183449,7 +180066,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 132, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L132" } ], "type": { @@ -183483,7 +180100,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L137" } ], "type": { @@ -183503,7 +180120,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 105, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/functions-js/src/types.ts#L105" } ] } @@ -183520,7 +180137,7 @@ "fileName": "packages/core/functions-js/src/types.ts", "line": 16, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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 c9627a9578c10..5db6851c81541 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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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 c9627a9578c10..5db6851c81541 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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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 7ba1f0d8e725b..9f68d65290beb 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json @@ -42,7 +42,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L53" } ], "signatures": [ @@ -57,7 +57,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L53" } ], "parameters": [ @@ -153,7 +153,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L51" } ], "type": { @@ -247,7 +247,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L50" } ], "extendedTypes": [ @@ -296,7 +296,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L28" } ], "signatures": [ @@ -311,7 +311,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L28" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -562,7 +562,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "signatures": [ @@ -577,7 +577,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -929,7 +929,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L182" } ], "signatures": [ @@ -944,7 +944,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L182" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L187" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L185" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L184" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L186" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L186" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L183" } ] } @@ -1145,7 +1145,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 175, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L175" } ], "extendedTypes": [ @@ -1194,7 +1194,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L157" } ], "signatures": [ @@ -1209,7 +1209,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L157" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -1396,7 +1396,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 156, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L156" } ], "extendedTypes": [ @@ -1445,7 +1445,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L289" } ], "signatures": [ @@ -1460,7 +1460,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L289" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -1647,7 +1647,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 288, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L288" } ], "extendedTypes": [ @@ -1696,7 +1696,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L141" } ], "signatures": [ @@ -1711,7 +1711,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L141" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -1885,7 +1885,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L140" } ], "extendedTypes": [ @@ -1934,7 +1934,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "signatures": [ @@ -1949,7 +1949,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -2301,7 +2301,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L216" } ], "signatures": [ @@ -2316,7 +2316,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L216" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L221" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L219" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L218" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L220" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L217" } ] } @@ -2517,7 +2517,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 208, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L208" } ], "extendedTypes": [ @@ -2566,7 +2566,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 237, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L237" } ], "signatures": [ @@ -2581,7 +2581,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 237, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L237" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -2779,7 +2779,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 236, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L236" } ], "extendedTypes": [ @@ -2828,7 +2828,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L121" } ], "signatures": [ @@ -2843,7 +2843,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L121" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -3017,7 +3017,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 120, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L120" } ], "extendedTypes": [ @@ -3066,7 +3066,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L82" } ], "signatures": [ @@ -3081,7 +3081,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L82" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L80" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -3281,7 +3281,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 79, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L79" } ], "extendedTypes": [ @@ -3330,7 +3330,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L267" } ], "signatures": [ @@ -3345,7 +3345,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L267" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L265" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -3613,7 +3613,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L261" } ], "extendedTypes": [ @@ -3662,7 +3662,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L103" } ], "signatures": [ @@ -3677,7 +3677,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L103" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -3902,7 +3902,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 99, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L99" } ], "extendedTypes": [ @@ -3974,7 +3974,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L65" } ] } @@ -4394,7 +4394,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L34" } ], "type": { @@ -4423,7 +4423,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L40" } ], "type": { @@ -4444,7 +4444,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 192, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L192" } ], "parameters": [ @@ -4524,7 +4524,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 312, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L312" } ], "parameters": [ @@ -4638,7 +4638,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L158" } ], "parameters": [ @@ -4710,7 +4710,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L261" } ], "parameters": [ @@ -4796,7 +4796,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 125, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L127" } ] } @@ -4982,7 +4982,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L214" } ], "parameters": [ @@ -5087,7 +5087,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ], "type": { @@ -5132,7 +5132,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ], "type": { @@ -5157,7 +5157,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ] } @@ -5182,7 +5182,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" } ] } @@ -5286,7 +5286,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 218, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" } ], "type": { @@ -5308,7 +5308,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ], "type": { @@ -5490,7 +5490,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 97, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L285" } ], "parameters": [ @@ -5621,7 +5621,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 32, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L32" } ] }, @@ -5643,7 +5643,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L292" } ], "signatures": [ @@ -5677,7 +5677,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L292" } ], "parameters": [ @@ -5724,7 +5724,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 201, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L201" } ], "type": { @@ -5754,7 +5754,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 205, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L205" } ], "type": { @@ -5783,7 +5783,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L211" } ], "type": { @@ -5804,7 +5804,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 743, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L743" } ], "signatures": [ @@ -5827,7 +5827,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 743, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L743" } ], "parameters": [ @@ -5874,7 +5874,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3701, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3701" } ], "signatures": [ @@ -5923,7 +5923,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3701, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3701" } ], "parameters": [ @@ -6017,7 +6017,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3710, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3710" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3710" } ], "type": { @@ -6046,7 +6046,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3713, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3713" } ], "type": { @@ -6069,7 +6069,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3713, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3713" } ], "type": { @@ -6094,7 +6094,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3713, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3713" } ] } @@ -6127,7 +6127,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3707, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3707" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3707" } ], "type": { @@ -6152,7 +6152,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3703, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3703" } ] } @@ -6190,7 +6190,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -6213,7 +6213,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -6234,7 +6234,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -6255,7 +6255,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -6280,7 +6280,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ] } @@ -6297,7 +6297,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3718, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3718" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3718" } ], "type": { @@ -6317,7 +6317,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3716, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3716" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3716" } ] } @@ -6342,7 +6342,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3720, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3720" } ], "type": { @@ -6361,7 +6361,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3720, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3720" } ], "type": { @@ -6383,7 +6383,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3720, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3720" } ] } @@ -6408,7 +6408,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3721, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3721" } ], "type": { @@ -6427,7 +6427,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3721, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3721" } ], "type": { @@ -6447,7 +6447,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3721, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3721" } ] } @@ -6472,7 +6472,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1458, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1458" } ], "signatures": [ @@ -6504,7 +6504,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1458, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1458" } ], "type": { @@ -6537,7 +6537,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1551, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1551" } ], "type": { @@ -6560,7 +6560,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1552, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1552" } ], "type": { @@ -6582,7 +6582,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1551, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1551" } ] } @@ -6599,7 +6599,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1554, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1554" } ], "type": { @@ -6619,7 +6619,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1550, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1550" } ] } @@ -6644,7 +6644,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1557, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1557" } ], "type": { @@ -6667,7 +6667,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1558, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1558" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1558" } ], "type": { @@ -6687,7 +6687,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1557, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1557" } ] } @@ -6704,7 +6704,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1560, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1560" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1560" } ], "type": { @@ -6726,7 +6726,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1556, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ] } @@ -6751,7 +6751,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1563, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1563" } ], "type": { @@ -6774,7 +6774,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1564, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1564" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1564" } ], "type": { @@ -6794,7 +6794,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1563, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1563" } ] } @@ -6811,7 +6811,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1566, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1566" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1566" } ], "type": { @@ -6831,7 +6831,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1562, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1562" } ] } @@ -6856,7 +6856,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1700, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1700" } ], "signatures": [ @@ -6879,7 +6879,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1700, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1700" } ], "parameters": [ @@ -6936,7 +6936,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2282, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2282" } ], "signatures": [ @@ -6959,7 +6959,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2282, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2282" } ], "type": { @@ -6992,7 +6992,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2284, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2284" } ], "type": { @@ -7015,7 +7015,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2285, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2285" } ], "type": { @@ -7040,7 +7040,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2284, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2284" } ] } @@ -7057,7 +7057,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2287, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2287" } ], "type": { @@ -7077,7 +7077,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2283, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2283" } ] } @@ -7102,7 +7102,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2289, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2289" } ], "type": { @@ -7121,7 +7121,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2289, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2289" } ], "type": { @@ -7143,7 +7143,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2289, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2289" } ] } @@ -7168,7 +7168,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L440" } ], "signatures": [ @@ -7191,7 +7191,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L440" } ], "type": { @@ -7227,7 +7227,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 404, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L404" } ], "signatures": [ @@ -7250,7 +7250,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 404, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L404" } ], "type": { @@ -7271,19 +7271,19 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2307, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2307" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2312, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2312" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2314" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2314" } ], "signatures": [ @@ -7306,7 +7306,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2307, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2307" } ], "parameters": [ @@ -7361,7 +7361,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2312, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2312" } ], "parameters": [ @@ -7410,19 +7410,19 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2180" } ], "signatures": [ @@ -7445,7 +7445,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ], "parameters": [ @@ -7476,7 +7476,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ], "signatures": [ @@ -7491,7 +7491,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ], "parameters": [ @@ -7561,7 +7561,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2161, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2161" } ], "type": { @@ -7584,7 +7584,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2161, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2161" } ], "type": { @@ -7606,7 +7606,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2161, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2161" } ] } @@ -7624,7 +7624,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 90, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ] } @@ -7668,7 +7668,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ], "parameters": [ @@ -7699,7 +7699,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ], "signatures": [ @@ -7714,7 +7714,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ], "parameters": [ @@ -7795,7 +7795,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2177, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2177" } ], "type": { @@ -7818,7 +7818,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2177, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2177" } ], "type": { @@ -7840,7 +7840,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2177, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2177" } ] } @@ -7858,7 +7858,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ] } @@ -7877,7 +7877,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1371, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1371" } ], "signatures": [ @@ -7900,7 +7900,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1371, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1371" } ], "type": { @@ -7934,7 +7934,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ], "signatures": [ @@ -7957,7 +7957,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ], "parameters": [ @@ -7997,7 +7997,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ], "type": { @@ -8017,7 +8017,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ] } @@ -8055,7 +8055,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1406" } ], "signatures": [ @@ -8078,7 +8078,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1406" } ], "parameters": [ @@ -8127,7 +8127,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2236" } ], "signatures": [ @@ -8150,7 +8150,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2236" } ], "parameters": [ @@ -8209,7 +8209,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2240, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2240" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2240" } ], "type": { @@ -8238,7 +8238,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2239, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2239" } ], "type": { @@ -8258,7 +8258,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2238, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2238" } ] } @@ -8296,7 +8296,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2244, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2244" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2244" } ], "type": { @@ -8321,7 +8321,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2245, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2245" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2245" } ], "type": { @@ -8341,7 +8341,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2243, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2243" } ] } @@ -8366,7 +8366,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2247, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2247" } ], "type": { @@ -8385,7 +8385,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2247, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2247" } ], "type": { @@ -8407,7 +8407,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2247, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2247" } ] } @@ -8432,7 +8432,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1832, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1832" } ], "signatures": [ @@ -8455,7 +8455,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1832, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1832" } ], "parameters": [ @@ -8493,7 +8493,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1833, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1833" } ], "type": { @@ -8512,7 +8512,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1834, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1834" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1834" } ], "type": { @@ -8532,7 +8532,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1832, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1832" } ] } @@ -8570,7 +8570,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 547, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L547" } ], "signatures": [ @@ -8604,7 +8604,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 547, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L547" } ], "parameters": [ @@ -8655,7 +8655,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1156, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1156" } ], "signatures": [ @@ -8678,7 +8678,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1156, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1156" } ], "parameters": [ @@ -8727,7 +8727,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 731, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L731" } ], "signatures": [ @@ -8750,7 +8750,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 731, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L731" } ], "parameters": [ @@ -8799,7 +8799,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1209" } ], "signatures": [ @@ -8838,7 +8838,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1209" } ], "parameters": [ @@ -8887,7 +8887,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L667" } ], "signatures": [ @@ -8910,7 +8910,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L667" } ], "parameters": [ @@ -8959,7 +8959,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1326" } ], "signatures": [ @@ -8982,7 +8982,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1326" } ], "parameters": [ @@ -9031,7 +9031,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 758, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L758" } ], "signatures": [ @@ -9065,7 +9065,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 758, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L758" } ], "parameters": [ @@ -9113,7 +9113,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ], "type": { @@ -9136,7 +9136,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ], "type": { @@ -9157,7 +9157,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ], "type": { @@ -9179,7 +9179,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ] } @@ -9196,7 +9196,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L761" } ], "type": { @@ -9216,7 +9216,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 759, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L759" } ] } @@ -9241,7 +9241,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -9264,7 +9264,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -9283,7 +9283,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -9303,7 +9303,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ] } @@ -9320,7 +9320,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -9342,7 +9342,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ] } @@ -9367,7 +9367,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ], "signatures": [ @@ -9430,7 +9430,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ], "parameters": [ @@ -9476,7 +9476,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ], "type": { @@ -9507,7 +9507,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ] } @@ -9530,7 +9530,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 590, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L590" } ], "signatures": [ @@ -9573,7 +9573,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 590, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L590" } ], "parameters": [ @@ -9622,7 +9622,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2892, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2892" } ], "signatures": [ @@ -9660,7 +9660,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2892, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2892" } ], "type": { @@ -9692,7 +9692,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2905, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2905" } ], "signatures": [ @@ -9724,7 +9724,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2905, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2905" } ], "type": { @@ -9756,7 +9756,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2411" } ], "signatures": [ @@ -9779,7 +9779,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2411" } ], "parameters": [ @@ -9827,7 +9827,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2413, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2413" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2413" } ], "type": { @@ -9852,7 +9852,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2414, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2414" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2414" } ], "type": { @@ -9872,7 +9872,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2412, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2412" } ] } @@ -9897,7 +9897,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2416, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2416" } ], "type": { @@ -9916,7 +9916,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2416, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2416" } ], "type": { @@ -9938,7 +9938,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2416, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2416" } ] } @@ -9963,7 +9963,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1761" } ], "signatures": [ @@ -9986,7 +9986,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1761" } ], "parameters": [ @@ -10031,7 +10031,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1764, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1764" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1764" } ], "type": { @@ -10051,7 +10051,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1763, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1763" } ] } @@ -10090,7 +10090,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1265, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1265" } ], "signatures": [ @@ -10113,7 +10113,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1265, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1265" } ], "parameters": [ @@ -10174,7 +10174,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 192, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L192" } ] }, @@ -10215,7 +10215,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L37" } ], "signatures": [ @@ -10230,7 +10230,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L37" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L35" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L52" } ], "extendedTypes": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L450" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L476" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L401" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L457" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L501" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L418" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L411" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L494" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L406" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L464" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L485" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L440" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L429" } ], "extendedTypes": [ @@ -10882,7 +10882,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 286, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L286" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L292" } ], "type": { @@ -10931,7 +10931,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 284, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L284" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L284" } ] }, @@ -10961,7 +10961,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1778, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1778" } ], "signatures": [ @@ -10995,7 +10995,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1778, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1778" } ], "parameters": [ @@ -11056,7 +11056,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1780" } ], "type": { @@ -11076,7 +11076,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1780" } ] } @@ -11114,7 +11114,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1791" } ], "signatures": [ @@ -11148,7 +11148,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1791" } ], "parameters": [ @@ -11209,7 +11209,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1793, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1793" } ], "type": { @@ -11229,7 +11229,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1793, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1793" } ] } @@ -11267,7 +11267,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1768, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1768" } ], "signatures": [ @@ -11301,7 +11301,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1768, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1768" } ], "parameters": [ @@ -11356,7 +11356,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1802" } ], "signatures": [ @@ -11390,7 +11390,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1802" } ], "type": { @@ -11424,7 +11424,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ], "signatures": [ @@ -11458,7 +11458,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ], "parameters": [ @@ -11504,7 +11504,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ], "type": { @@ -11524,7 +11524,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ] } @@ -11563,7 +11563,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1755, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1755" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1755" } ] }, @@ -11611,7 +11611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 855, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L855" } ], "type": { @@ -11640,7 +11640,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 857, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L857" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L857" } ], "type": { @@ -11660,7 +11660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 849, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L849" } ] }, @@ -11696,7 +11696,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1298" } ], "signatures": [ @@ -11736,7 +11736,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1298" } ], "parameters": [ @@ -11785,7 +11785,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1288, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1288" } ], "signatures": [ @@ -11808,7 +11808,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1288, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1288" } ], "parameters": [ @@ -11858,7 +11858,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1283, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1283" } ] }, @@ -11888,7 +11888,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1637" } ], "signatures": [ @@ -11919,7 +11919,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1637" } ], "parameters": [ @@ -11968,7 +11968,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "signatures": [ @@ -11999,7 +11999,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "parameters": [ @@ -12042,7 +12042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "type": { @@ -12061,7 +12061,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "type": { @@ -12092,7 +12092,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ] } @@ -12115,7 +12115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1645" } ], "signatures": [ @@ -12146,7 +12146,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1645" } ], "parameters": [ @@ -12193,7 +12193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1629" } ], "signatures": [ @@ -12224,7 +12224,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1629" } ], "parameters": [ @@ -12275,7 +12275,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1669, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1669" } ], "signatures": [ @@ -12306,7 +12306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1669, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1669" } ], "parameters": [ @@ -12353,7 +12353,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1653" } ], "signatures": [ @@ -12384,7 +12384,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1653" } ], "parameters": [ @@ -12445,7 +12445,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1622, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1622" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1622" } ] }, @@ -12475,7 +12475,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1241" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1241" } ], "type": { @@ -12499,25 +12499,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1192" } ], "signatures": [ @@ -12540,7 +12540,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1189" } ], "parameters": [ @@ -12578,7 +12578,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -12598,7 +12598,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -12635,7 +12635,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -12654,7 +12654,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -12676,7 +12676,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -12701,7 +12701,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -12732,7 +12732,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1059" } ], "type": { @@ -12759,7 +12759,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1053" } ], "type": { @@ -12786,7 +12786,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1056" } ], "type": { @@ -12806,7 +12806,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -12823,7 +12823,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -12843,7 +12843,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -12866,7 +12866,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1190" } ], "parameters": [ @@ -12904,7 +12904,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 973, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L973" } ], "type": { @@ -12940,7 +12940,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -12960,7 +12960,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -12997,7 +12997,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -13016,7 +13016,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -13038,7 +13038,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13063,7 +13063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -13094,7 +13094,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1059" } ], "type": { @@ -13121,7 +13121,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1053" } ], "type": { @@ -13148,7 +13148,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1056" } ], "type": { @@ -13168,7 +13168,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13185,7 +13185,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -13205,7 +13205,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13228,7 +13228,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1191" } ], "parameters": [ @@ -13266,7 +13266,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -13285,7 +13285,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 982, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L982" } ], "type": { @@ -13316,7 +13316,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 984, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L984" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L984" } ], "type": { @@ -13345,7 +13345,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 986, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L986" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L986" } ], "type": { @@ -13368,7 +13368,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 982, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L982" } ] } @@ -13386,7 +13386,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13423,7 +13423,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -13442,7 +13442,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -13464,7 +13464,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13489,7 +13489,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -13520,7 +13520,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1059" } ], "type": { @@ -13547,7 +13547,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1053" } ], "type": { @@ -13574,7 +13574,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1056" } ], "type": { @@ -13593,7 +13593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1079" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1079" } ], "type": { @@ -13619,7 +13619,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1082, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1082" } ], "type": { @@ -13642,7 +13642,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1082, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1082" } ], "type": { @@ -13667,7 +13667,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1082, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1082" } ] } @@ -13684,7 +13684,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1081, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1081" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1081" } ], "type": { @@ -13704,7 +13704,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1080, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1080" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1080" } ] } @@ -13729,7 +13729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1086, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1086" } ], "type": { @@ -13752,7 +13752,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1086, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1086" } ], "type": { @@ -13777,7 +13777,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1086, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1086" } ] } @@ -13794,7 +13794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1085, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1085" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1085" } ], "type": { @@ -13814,7 +13814,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1084, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1084" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1084" } ] } @@ -13834,7 +13834,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13851,7 +13851,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -13871,7 +13871,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13894,7 +13894,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1192" } ], "parameters": [ @@ -13943,7 +13943,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1213" } ], "signatures": [ @@ -13966,7 +13966,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1213" } ], "parameters": [ @@ -14004,7 +14004,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -14031,7 +14031,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -14051,7 +14051,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -14089,25 +14089,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1183" } ], "signatures": [ @@ -14146,7 +14146,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1180" } ], "parameters": [ @@ -14184,7 +14184,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1357" } ], "type": { @@ -14213,7 +14213,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1359" } ], "type": { @@ -14242,7 +14242,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1364, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1364" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1364" } ], "type": { @@ -14262,7 +14262,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -14298,7 +14298,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1181" } ], "parameters": [ @@ -14336,7 +14336,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1357" } ], "type": { @@ -14365,7 +14365,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1359" } ], "type": { @@ -14392,7 +14392,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1371, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1371" } ], "type": { @@ -14412,7 +14412,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -14448,7 +14448,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1182" } ], "parameters": [ @@ -14486,7 +14486,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1357" } ], "type": { @@ -14515,7 +14515,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1359" } ], "type": { @@ -14535,7 +14535,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -14571,7 +14571,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1183, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1183" } ], "parameters": [ @@ -14620,7 +14620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1238" } ], "signatures": [ @@ -14667,7 +14667,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1238" } ], "type": { @@ -14701,7 +14701,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1223" } ], "signatures": [ @@ -14773,7 +14773,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1223" } ], "type": { @@ -14830,7 +14830,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1207, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1207" } ], "signatures": [ @@ -14869,7 +14869,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1207, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1207" } ], "parameters": [ @@ -14918,25 +14918,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1198, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1201" } ], "signatures": [ @@ -14959,7 +14959,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1198, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1198" } ], "parameters": [ @@ -14997,7 +14997,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -15024,7 +15024,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -15051,7 +15051,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -15071,7 +15071,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -15107,7 +15107,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1199" } ], "parameters": [ @@ -15145,7 +15145,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -15172,7 +15172,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -15199,7 +15199,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -15219,7 +15219,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -15255,7 +15255,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1200" } ], "parameters": [ @@ -15293,7 +15293,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -15320,7 +15320,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -15339,7 +15339,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L947" } ], "type": { @@ -15393,7 +15393,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -15429,7 +15429,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1201, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1201" } ], "parameters": [ @@ -15483,7 +15483,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1170, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1170" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1170" } ] }, @@ -15507,7 +15507,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1494" } ], "type": { @@ -15526,7 +15526,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1493" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1493" } ], "type": { @@ -15550,7 +15550,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1495, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1495" } ], "type": { @@ -15569,7 +15569,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1492, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1492" } ], "type": { @@ -15602,7 +15602,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1491, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1491" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1491" } ], "indexSignatures": [ @@ -15617,7 +15617,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1496, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1496" } ], "parameters": [ @@ -15679,7 +15679,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1459" } ], "type": { @@ -15707,7 +15707,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1482, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1482" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1482" } ], "type": { @@ -15733,7 +15733,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1480, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1480" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1480" } ], "type": { @@ -15756,7 +15756,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1455" } ], "type": { @@ -15794,7 +15794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1473" } ], "type": { @@ -15815,7 +15815,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1456" } ], "type": { @@ -15841,7 +15841,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1457" } ], "type": { @@ -15867,7 +15867,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1475, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1475" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1475" } ], "type": { @@ -15888,7 +15888,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1453" } ], "type": { @@ -15914,7 +15914,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1478" } ], "type": { @@ -15935,7 +15935,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1479" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1479" } ], "type": { @@ -15956,7 +15956,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1474" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1474" } ], "type": { @@ -15977,7 +15977,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1485, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1485" } ], "type": { @@ -15998,7 +15998,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1458" } ], "type": { @@ -16024,7 +16024,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1460, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1460" } ], "type": { @@ -16050,7 +16050,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1454" } ], "type": { @@ -16076,7 +16076,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1481, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1481" } ], "type": { @@ -16101,7 +16101,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1471, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1471" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1471" } ], "indexSignatures": [ @@ -16116,7 +16116,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1488" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1488" } ], "parameters": [ @@ -16173,7 +16173,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L239" } ], "type": { @@ -16202,7 +16202,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L251" } ], "type": { @@ -16229,7 +16229,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L247" } ], "type": { @@ -16258,7 +16258,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L235" } ], "type": { @@ -16296,7 +16296,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L230" } ], "type": { @@ -16332,7 +16332,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 243, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L243" } ], "type": { @@ -16351,7 +16351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L252" } ], "type": { @@ -16378,7 +16378,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L257" } ], "type": { @@ -16400,7 +16400,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 226, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L226" } ] }, @@ -16430,7 +16430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 514, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L514" } ], "type": { @@ -16446,7 +16446,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 514, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L514" } ], "signatures": [ @@ -16461,7 +16461,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 514, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L514" } ], "parameters": [ @@ -16529,7 +16529,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L510" } ], "type": { @@ -16565,7 +16565,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 518, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L518" } ], "type": { @@ -16581,7 +16581,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 518, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L518" } ], "signatures": [ @@ -16596,7 +16596,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 518, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L518" } ], "type": { @@ -16620,7 +16620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 504, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L504" } ] }, @@ -16644,7 +16644,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L380" } ], "type": { @@ -16663,7 +16663,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 371, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L371" } ], "type": { @@ -16684,7 +16684,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L373" } ], "type": { @@ -16705,7 +16705,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L374" } ], "type": { @@ -16726,7 +16726,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L384" } ], "type": { @@ -16745,7 +16745,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 383, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L383" } ], "type": { @@ -16766,7 +16766,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 394, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L394" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L394" } ], "type": { @@ -16787,7 +16787,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 381, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L381" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L381" } ], "type": { @@ -16808,7 +16808,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L376" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L376" } ], "type": { @@ -16829,7 +16829,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 385, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L385" } ], "type": { @@ -16850,7 +16850,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 393, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L393" } ], "type": { @@ -16931,7 +16931,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 370, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L370" } ], "type": { @@ -16952,7 +16952,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 390, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L390" } ], "type": { @@ -16978,7 +16978,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 379, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L379" } ], "type": { @@ -16999,7 +16999,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 391, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L391" } ], "type": { @@ -17020,7 +17020,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 392, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L392" } ], "type": { @@ -17041,7 +17041,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L387" } ], "type": { @@ -17062,7 +17062,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L377" } ], "type": { @@ -17083,7 +17083,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L378" } ], "type": { @@ -17104,7 +17104,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L382" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L382" } ], "type": { @@ -17125,7 +17125,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L386" } ], "type": { @@ -17146,7 +17146,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L375" } ], "type": { @@ -17167,7 +17167,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L388" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L388" } ], "type": { @@ -17188,7 +17188,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L389" } ], "type": { @@ -17207,7 +17207,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L372" } ], "type": { @@ -17232,7 +17232,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 369, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L369" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L369" } ] }, @@ -17264,7 +17264,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L357" } ], "type": { @@ -17293,7 +17293,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 361, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L361" } ], "type": { @@ -17316,7 +17316,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 353, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L353" } ], "indexSignatures": [ @@ -17331,7 +17331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L362" } ], "parameters": [ @@ -17398,7 +17398,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L426" } ], "type": { @@ -17427,7 +17427,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 401, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L401" } ], "type": { @@ -17456,7 +17456,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 418, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L418" } ], "type": { @@ -17485,7 +17485,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L411" } ], "type": { @@ -17514,7 +17514,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L406" } ], "type": { @@ -17534,7 +17534,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 397, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L397" } ] }, @@ -17558,7 +17558,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 303, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L303" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L303" } ], "type": { @@ -17577,7 +17577,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L296" } ], "type": { @@ -17598,7 +17598,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L298" } ], "type": { @@ -17614,7 +17614,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 298, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L298" } ], "indexSignatures": [ @@ -17629,7 +17629,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 299, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L299" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L299" } ], "parameters": [ @@ -17665,7 +17665,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L301" } ], "type": { @@ -17686,7 +17686,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 304, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L304" } ], "type": { @@ -17705,7 +17705,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L302" } ], "type": { @@ -17726,7 +17726,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 305, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L305" } ], "type": { @@ -17745,7 +17745,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L297" } ], "type": { @@ -17765,7 +17765,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 295, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L295" } ] }, @@ -17780,7 +17780,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 365, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L365" } ], "indexSignatures": [ @@ -17795,7 +17795,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L366" } ], "parameters": [ @@ -17844,7 +17844,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 733, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L733" } ], "type": { @@ -17865,7 +17865,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 738, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L738" } ], "type": { @@ -17904,7 +17904,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 746, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L746" } ], "type": { @@ -17933,7 +17933,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 740, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L740" } ], "type": { @@ -17953,7 +17953,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 738, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L738" } ] } @@ -17978,7 +17978,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 735, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L735" } ], "type": { @@ -18005,7 +18005,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 737, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L737" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L737" } ], "type": { @@ -18027,7 +18027,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 731, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L731" } ] }, @@ -18051,7 +18051,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 719, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L719" } ], "type": { @@ -18090,7 +18090,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 728, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L728" } ], "type": { @@ -18119,7 +18119,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 721, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L721" } ], "type": { @@ -18139,7 +18139,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 719, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L719" } ] } @@ -18164,7 +18164,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 714, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L714" } ], "type": { @@ -18191,7 +18191,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 716, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L716" } ], "type": { @@ -18218,7 +18218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L718" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L718" } ], "type": { @@ -18240,7 +18240,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 712, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L712" } ] }, @@ -18270,7 +18270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L752" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L752" } ], "type": { @@ -18297,7 +18297,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 755, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L755" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L755" } ], "type": { @@ -18319,7 +18319,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 750, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L750" } ] }, @@ -18334,7 +18334,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 274, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L274" } ], "type": { @@ -18380,7 +18380,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 274, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L274" } ] } @@ -18401,7 +18401,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 44, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L44" } ], "type": { @@ -18451,7 +18451,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 42, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L42" } ], "type": { @@ -18470,7 +18470,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1144" } ], "type": { @@ -18498,7 +18498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 593, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L593" } ], "type": { @@ -18535,7 +18535,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1254, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1254" } ], "type": { @@ -18566,7 +18566,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1256" } ], "type": { @@ -18593,7 +18593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1259" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1259" } ], "type": { @@ -18613,7 +18613,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1254, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1254" } ] } @@ -18639,7 +18639,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1247, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1247" } ], "type": { @@ -18674,7 +18674,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1249" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1249" } ], "type": { @@ -18694,7 +18694,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1247, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1247" } ] } @@ -18724,7 +18724,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1273, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1273" } ], "type": { @@ -18755,7 +18755,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1275" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1275" } ], "type": { @@ -18775,7 +18775,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1273, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1273" } ] } @@ -18801,7 +18801,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1265, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1265" } ], "type": { @@ -18836,7 +18836,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1267" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1267" } ], "type": { @@ -18861,7 +18861,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1265, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1265" } ] } @@ -18882,7 +18882,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1074, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1074" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1074" } ], "type": { @@ -18942,7 +18942,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1126, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1126" } ], "type": { @@ -18980,7 +18980,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1066, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1066" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1066" } ], "type": { @@ -19061,7 +19061,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1095, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1095" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1095" } ], "type": { @@ -19129,7 +19129,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1115, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1115" } ], "type": { @@ -19189,7 +19189,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1123, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1123" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1123" } ], "type": { @@ -19218,7 +19218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1429, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1429" } ], "type": { @@ -19278,7 +19278,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1041, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1041" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1041" } ], "type": { @@ -19316,7 +19316,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1420, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1420" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1420" } ], "type": { @@ -19397,7 +19397,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1442, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1442" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1442" } ], "type": { @@ -19457,7 +19457,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1146, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1146" } ], "type": { @@ -19492,7 +19492,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1163" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1163" } ], "type": { @@ -19524,7 +19524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1148" } ], "type": { @@ -19575,7 +19575,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1156" } ], "type": { @@ -19606,7 +19606,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1146, "character": 74, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1146" } ] } @@ -19635,7 +19635,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1132, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1132" } ], "typeParameters": [ @@ -19708,7 +19708,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1136, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1136" } ], "type": { @@ -19741,7 +19741,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1134, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1134" } ] } @@ -19815,7 +19815,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1046, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1046" } ], "type": { @@ -19850,7 +19850,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1048, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1048" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1048" } ], "type": { @@ -19870,7 +19870,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1046, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1046" } ] } @@ -19899,7 +19899,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1039, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1039" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1039" } ], "type": { @@ -19936,7 +19936,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1018, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1018" } ], "type": { @@ -19967,7 +19967,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1020, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1020" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1020" } ], "type": { @@ -19994,7 +19994,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1026, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1026" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1026" } ], "type": { @@ -20021,7 +20021,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1029, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1029" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1029" } ], "type": { @@ -20056,7 +20056,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1023, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1023" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1023" } ], "type": { @@ -20083,7 +20083,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1032, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1032" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1032" } ], "type": { @@ -20105,7 +20105,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1018, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1018" } ] } @@ -20130,7 +20130,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1713, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1713" } ], "type": { @@ -20167,7 +20167,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1719" } ], "type": { @@ -20202,7 +20202,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1721" } ], "type": { @@ -20222,7 +20222,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1719" } ] } @@ -20251,7 +20251,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1741" } ], "type": { @@ -20291,7 +20291,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1747" } ], "type": { @@ -20311,7 +20311,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1747" } ] } @@ -20345,7 +20345,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 178, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L178" } ], "type": { @@ -20374,7 +20374,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L181" } ], "type": { @@ -20402,7 +20402,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L180" } ], "type": { @@ -20421,7 +20421,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L179" } ], "type": { @@ -20441,7 +20441,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 178, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L178" } ] } @@ -20462,7 +20462,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 162, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L162" } ], "type": { @@ -20489,7 +20489,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L164" } ], "type": { @@ -20519,7 +20519,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L163" } ], "type": { @@ -20550,7 +20550,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 162, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L162" } ] } @@ -20571,7 +20571,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 167, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L167" } ], "type": { @@ -20598,7 +20598,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 169, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L169" } ], "type": { @@ -20628,7 +20628,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 168, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L168" } ], "type": { @@ -20660,7 +20660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 170, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L170" } ], "type": { @@ -20691,7 +20691,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 167, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L167" } ] } @@ -20712,7 +20712,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 184, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L184" } ], "type": { @@ -20739,7 +20739,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 186, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L186" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L186" } ], "type": { @@ -20760,7 +20760,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 185, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L185" } ], "type": { @@ -20782,7 +20782,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 184, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L184" } ] } @@ -20803,7 +20803,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 189, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L189" } ], "type": { @@ -20830,7 +20830,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L191" } ], "type": { @@ -20851,7 +20851,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L190" } ], "type": { @@ -20874,7 +20874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L192" } ], "type": { @@ -20896,7 +20896,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 189, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L189" } ] } @@ -20917,7 +20917,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1325, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1325" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1325" } ], "type": { @@ -20954,7 +20954,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1565, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1565" } ], "type": { @@ -20985,7 +20985,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1567, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1567" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1567" } ], "type": { @@ -21014,7 +21014,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1569" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1569" } ], "type": { @@ -21043,7 +21043,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1573, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1573" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1573" } ], "type": { @@ -21075,7 +21075,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1571" } ], "type": { @@ -21107,7 +21107,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1575, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1575" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1575" } ], "type": { @@ -21141,7 +21141,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1577, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1577" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1577" } ], "type": { @@ -21161,7 +21161,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1565, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1565" } ] } @@ -21178,7 +21178,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 759, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L759" } ], "type": { @@ -21222,7 +21222,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 670, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L670" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L670" } ], "type": { @@ -21246,7 +21246,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 672, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L672" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L672" } ], "type": { @@ -21272,7 +21272,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 674, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L674" } ], "type": { @@ -21293,7 +21293,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 682, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L682" } ], "type": { @@ -21326,7 +21326,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 687, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L687" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L687" } ], "type": { @@ -21347,7 +21347,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L689" } ], "type": { @@ -21424,7 +21424,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 684, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L684" } ], "type": { @@ -21444,7 +21444,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 682, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L682" } ] } @@ -21471,7 +21471,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 680, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L680" } ], "type": { @@ -21508,7 +21508,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 677, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L677" } ], "type": { @@ -21530,7 +21530,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 673, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L673" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L673" } ] } @@ -21555,7 +21555,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 695, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L695" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L695" } ], "type": { @@ -21606,7 +21606,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 698, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L698" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L698" } ], "type": { @@ -21627,7 +21627,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 703, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L703" } ], "type": { @@ -21660,7 +21660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 705, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L705" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L705" } ], "type": { @@ -21680,7 +21680,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 703, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L703" } ] } @@ -21705,7 +21705,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 701, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L701" } ], "type": { @@ -21730,7 +21730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 694, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L694" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L694" } ] } @@ -21805,7 +21805,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 329, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L329" } ], "typeParameters": [ @@ -21885,7 +21885,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L349" } ], "type": { @@ -21928,7 +21928,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L342" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L342" } ], "type": { @@ -21960,7 +21960,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 337, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L337" } ], "type": { @@ -21987,7 +21987,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 334, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L334" } ], "type": { @@ -22042,7 +22042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 347, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L347" } ], "type": { @@ -22064,7 +22064,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L350" } ], "type": { @@ -22084,7 +22084,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 332, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L332" } ] } @@ -22125,7 +22125,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 313, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L313" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L313" } ], "type": { @@ -22160,7 +22160,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 838, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L838" } ], "type": { @@ -22191,7 +22191,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L841" } ], "type": { @@ -22218,7 +22218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 845, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L845" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L845" } ], "type": { @@ -22239,7 +22239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 846, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L846" } ], "type": { @@ -22275,7 +22275,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 839, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L839" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L839" } ], "type": { @@ -22304,7 +22304,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 838, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L838" } ] } @@ -22321,7 +22321,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 824, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L824" } ], "type": { @@ -22352,7 +22352,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 827, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L827" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L827" } ], "type": { @@ -22373,7 +22373,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L828" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L828" } ], "type": { @@ -22418,7 +22418,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 825, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L825" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L825" } ], "type": { @@ -22447,7 +22447,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 824, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L824" } ] } @@ -22464,7 +22464,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 860, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L860" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L860" } ], "type": { @@ -22516,7 +22516,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 872, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L872" } ], "type": { @@ -22547,7 +22547,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 877, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L877" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L877" } ], "type": { @@ -22574,7 +22574,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 882, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L882" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L882" } ], "type": { @@ -22601,7 +22601,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L886" } ], "type": { @@ -22628,7 +22628,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 888, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L888" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L888" } ], "type": { @@ -22655,7 +22655,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 890, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L890" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L890" } ], "type": { @@ -22677,7 +22677,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 872, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L872" } ] } @@ -22694,7 +22694,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 866, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L866" } ], "type": { @@ -22721,7 +22721,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 867, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L867" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L867" } ], "type": { @@ -22742,7 +22742,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 868, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L868" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L868" } ], "type": { @@ -22764,7 +22764,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 866, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L866" } ] } @@ -22785,7 +22785,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 893, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L893" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L893" } ], "type": { @@ -22829,7 +22829,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 831, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L831" } ], "type": { @@ -22860,7 +22860,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 834, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L834" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L834" } ], "type": { @@ -22881,7 +22881,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L835" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L835" } ], "type": { @@ -22917,7 +22917,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 832, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L832" } ], "type": { @@ -22937,7 +22937,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 831, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L831" } ] } @@ -22954,7 +22954,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 817, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L817" } ], "type": { @@ -22977,7 +22977,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 819, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L819" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L819" } ], "type": { @@ -22998,7 +22998,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L821" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L821" } ], "type": { @@ -23043,7 +23043,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 820, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L820" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L820" } ], "type": { @@ -23062,7 +23062,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 818, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L818" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L818" } ], "type": { @@ -23082,7 +23082,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 817, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L817" } ] } @@ -23099,7 +23099,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 70, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L70" } ], "type": { @@ -23124,7 +23124,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L80" } ], "type": { @@ -23145,7 +23145,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L98" } ], "type": { @@ -23168,7 +23168,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 98, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L98" } ], "signatures": [ @@ -23231,7 +23231,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L78" } ], "type": { @@ -23252,7 +23252,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L94" } ], "type": { @@ -23278,7 +23278,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L96" } ], "type": { @@ -23310,7 +23310,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L109" } ], "type": { @@ -23331,7 +23331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L74" } ], "type": { @@ -23347,7 +23347,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L74" } ], "indexSignatures": [ @@ -23362,7 +23362,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 74, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L74" } ], "parameters": [ @@ -23409,7 +23409,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L104" } ], "type": { @@ -23432,7 +23432,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L82" } ], "type": { @@ -23453,7 +23453,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L84" } ], "type": { @@ -23476,7 +23476,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 76, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L76" } ], "type": { @@ -23505,7 +23505,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L114" } ], "type": { @@ -23526,7 +23526,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L72" } ], "type": { @@ -23596,7 +23596,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L92" } ], "type": { @@ -23618,7 +23618,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 70, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L70" } ] } @@ -23635,7 +23635,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1323, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1323" } ], "type": { @@ -23658,7 +23658,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1323, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1323" } ], "type": { @@ -23689,7 +23689,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1323, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1323" } ] } @@ -23706,7 +23706,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1446, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1446" } ], "type": { @@ -23729,7 +23729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1447" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1447" } ], "type": { @@ -23761,7 +23761,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1448" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1448" } ], "type": { @@ -23780,7 +23780,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1449" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1449" } ], "type": { @@ -23800,7 +23800,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1446, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1446" } ] } @@ -23834,7 +23834,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 68, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L68" } ], "type": { @@ -23850,7 +23850,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 68, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L68" } ], "signatures": [ @@ -23943,7 +23943,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 68, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L68" } ], "signatures": [ @@ -24011,7 +24011,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1012, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1012" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1012" } ], "type": { @@ -24035,7 +24035,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 999, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L999" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L999" } ], "type": { @@ -24073,7 +24073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 976, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L976" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L976" } ], "type": { @@ -24119,7 +24119,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 969, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L969" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L969" } ], "type": { @@ -24172,7 +24172,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 995, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L995" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L995" } ], "type": { @@ -24218,7 +24218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 901, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L901" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L901" } ], "type": { @@ -24256,7 +24256,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1373, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1373" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1373" } ], "type": { @@ -24308,7 +24308,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1367, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1367" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1367" } ], "type": { @@ -24381,7 +24381,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1386, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1386" } ], "type": { @@ -24433,7 +24433,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 967, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L967" } ], "type": { @@ -24468,7 +24468,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 903, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L903" } ], "type": { @@ -24499,7 +24499,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L905" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L905" } ], "type": { @@ -24519,7 +24519,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 903, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L903" } ] } @@ -24536,7 +24536,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 959, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L959" } ], "type": { @@ -24574,7 +24574,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 924, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L924" } ], "type": { @@ -24620,7 +24620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 920, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L920" } ], "type": { @@ -24674,7 +24674,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 946, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L946" } ], "typeParameters": [ @@ -24740,7 +24740,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L947" } ], "type": { @@ -24788,7 +24788,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 946, "character": 98, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L946" } ] } @@ -24826,7 +24826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 956, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L956" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L956" } ], "typeParameters": [ @@ -24921,7 +24921,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 758, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L758" } ], "type": { @@ -24957,7 +24957,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1676, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1676" } ], "type": { @@ -24988,7 +24988,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1678, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1678" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1678" } ], "type": { @@ -25015,7 +25015,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1684, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1684" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1684" } ], "type": { @@ -25042,7 +25042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1680, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1680" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1680" } ], "type": { @@ -25069,7 +25069,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1682" } ], "type": { @@ -25089,7 +25089,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1676, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1676" } ] } @@ -25114,7 +25114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1691, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1691" } ], "type": { @@ -25145,7 +25145,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1693, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1693" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1693" } ], "type": { @@ -25172,7 +25172,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1697, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1697" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1697" } ], "type": { @@ -25203,7 +25203,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1695, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1695" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1695" } ], "type": { @@ -25230,7 +25230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1706, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1706" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1706" } ], "type": { @@ -25257,7 +25257,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1699, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1699" } ], "type": { @@ -25288,7 +25288,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1703, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1703" } ], "type": { @@ -25315,7 +25315,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1701, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1701" } ], "type": { @@ -25335,7 +25335,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1699, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1699" } ] } @@ -25353,7 +25353,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1691, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1691" } ] } @@ -25378,7 +25378,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1530, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1530" } ], "type": { @@ -25409,7 +25409,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1532, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1532" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1532" } ], "type": { @@ -25436,7 +25436,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1534, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1534" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1534" } ], "type": { @@ -25465,7 +25465,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1536" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1536" } ], "type": { @@ -25492,7 +25492,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1538" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1538" } ], "type": { @@ -25523,7 +25523,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1544, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1544" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1544" } ], "type": { @@ -25550,7 +25550,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1556, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1556" } ], "type": { @@ -25577,7 +25577,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1550" } ], "type": { @@ -25611,7 +25611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1546, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1546" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1546" } ], "type": { @@ -25638,7 +25638,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1548" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1548" } ], "type": { @@ -25668,7 +25668,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1542" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1542" } ], "type": { @@ -25697,7 +25697,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1552, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1552" } ], "type": { @@ -25731,7 +25731,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1554, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1554" } ], "type": { @@ -25758,7 +25758,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1540, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1540" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1540" } ], "type": { @@ -25785,7 +25785,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1558, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1558" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1558" } ], "type": { @@ -25807,7 +25807,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1530, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1530" } ] } @@ -25832,7 +25832,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1506, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1506" } ], "type": { @@ -25868,7 +25868,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1608, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1608" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1608" } ], "type": { @@ -25894,7 +25894,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ], "type": { @@ -25920,7 +25920,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ], "type": { @@ -25939,7 +25939,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ], "type": { @@ -25964,7 +25964,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ] } @@ -25989,7 +25989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1611, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1611" } ], "type": { @@ -26009,7 +26009,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1609, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1609" } ] } @@ -26034,7 +26034,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1614, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1614" } ], "type": { @@ -26057,7 +26057,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1614, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1614" } ], "type": { @@ -26076,7 +26076,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1614, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1614" } ] } @@ -26093,7 +26093,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1615, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1615" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1615" } ], "type": { @@ -26115,7 +26115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1613, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1613" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1613" } ] } @@ -26142,7 +26142,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1524, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1524" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1524" } ], "type": { @@ -26178,7 +26178,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1602, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1602" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1602" } ], "type": { @@ -26215,7 +26215,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1512, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1512" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1512" } ], "type": { @@ -26242,7 +26242,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1518, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1518" } ], "type": { @@ -26278,7 +26278,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1728" } ], "type": { @@ -26309,7 +26309,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1730" } ], "type": { @@ -26338,7 +26338,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1734" } ], "type": { @@ -26365,7 +26365,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1732" } ], "type": { @@ -26388,7 +26388,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1728" } ] } @@ -26405,7 +26405,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 195, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L195" } ], "type": { @@ -26431,7 +26431,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L197" } ], "type": { @@ -26454,7 +26454,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 198, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L198" } ], "type": { @@ -26475,7 +26475,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 199, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L199" } ], "type": { @@ -26495,7 +26495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 197, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L197" } ] } @@ -26512,7 +26512,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L201" } ], "type": { @@ -26532,7 +26532,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 196, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L196" } ] } @@ -26557,7 +26557,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 204, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L204" } ], "type": { @@ -26580,7 +26580,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 205, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L205" } ], "type": { @@ -26601,7 +26601,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 206, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L206" } ], "type": { @@ -26621,7 +26621,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 204, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L204" } ] } @@ -26638,7 +26638,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 208, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L208" } ], "type": { @@ -26660,7 +26660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 203, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L203" } ] } @@ -26679,7 +26679,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1334, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1334" } ], "type": { @@ -26712,7 +26712,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1336" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1336" } ], "type": { @@ -26741,7 +26741,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1338, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1338" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1338" } ], "type": { @@ -26761,7 +26761,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1334, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1334" } ] } @@ -26778,7 +26778,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1327, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1327" } ], "type": { @@ -26801,7 +26801,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1330, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1330" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1330" } ], "type": { @@ -26820,7 +26820,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1329, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1329" } ], "type": { @@ -26848,7 +26848,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1331, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1331" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1331" } ], "type": { @@ -26868,7 +26868,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1327, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1327" } ], "indexSignatures": [ @@ -26883,7 +26883,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1328, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1328" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1328" } ], "parameters": [ @@ -26927,7 +26927,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ], "typeParameters": [ @@ -27020,7 +27020,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 18, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L18" } ], "type": { @@ -27136,7 +27136,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 141, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L141" } ], "typeParameters": [ @@ -27193,7 +27193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -27215,7 +27215,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -27235,7 +27235,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 142, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L142" } ] } @@ -27260,7 +27260,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -27279,7 +27279,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -27326,7 +27326,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 146, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L146" } ] } @@ -27358,7 +27358,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 155, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L155" } ], "typeParameters": [ @@ -27393,7 +27393,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 156, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L156" } ], "type": { @@ -27415,7 +27415,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 156, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L156" } ], "type": { @@ -27435,7 +27435,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 156, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L156" } ] } @@ -27460,7 +27460,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 158, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L158" } ], "type": { @@ -27512,7 +27512,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 159, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L159" } ], "type": { @@ -27534,7 +27534,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 157, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L157" } ] } @@ -27553,7 +27553,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1452, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1452" } ], "type": { @@ -27576,7 +27576,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1459" } ], "type": { @@ -27597,7 +27597,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1455" } ], "type": { @@ -27628,7 +27628,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1456" } ], "type": { @@ -27647,7 +27647,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1457" } ], "type": { @@ -27666,7 +27666,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1453" } ], "type": { @@ -27685,7 +27685,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1458" } ], "type": { @@ -27704,7 +27704,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1460, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1460" } ], "type": { @@ -27723,7 +27723,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1454" } ], "type": { @@ -27743,7 +27743,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1452, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1452" } ] } @@ -27767,7 +27767,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 761, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L761" } ], "type": { @@ -27793,7 +27793,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 764, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L764" } ], "type": { @@ -27814,7 +27814,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 765, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L765" } ], "type": { @@ -27847,7 +27847,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 769, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L769" } ], "type": { @@ -27876,7 +27876,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 767, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L767" } ], "type": { @@ -27896,7 +27896,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 765, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L765" } ] } @@ -27913,7 +27913,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 763, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L763" } ], "type": { @@ -27959,7 +27959,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 762, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L762" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L762" } ] } @@ -27986,7 +27986,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 775, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L775" } ], "type": { @@ -28019,7 +28019,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 777, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L777" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L777" } ], "type": { @@ -28039,7 +28039,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 775, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L775" } ] } @@ -28056,7 +28056,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 774, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L774" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L774" } ], "type": { @@ -28075,7 +28075,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 773, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L773" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L773" } ], "type": { @@ -28121,7 +28121,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 772, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L772" } ] } @@ -28140,7 +28140,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 521, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L521" } ], "type": { @@ -28165,7 +28165,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 522, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L522" } ], "type": { @@ -28198,7 +28198,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 530, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L530" } ], "type": { @@ -28243,7 +28243,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 528, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L528" } ], "type": { @@ -28263,7 +28263,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 522, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L522" } ] } @@ -28281,7 +28281,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 521, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L521" } ] } @@ -28298,7 +28298,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 609, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L609" } ], "type": { @@ -28339,7 +28339,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 615, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L615" } ], "type": { @@ -28376,7 +28376,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 617, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L617" } ], "type": { @@ -28397,7 +28397,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L618" } ], "type": { @@ -28430,7 +28430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 620, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L620" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L620" } ], "type": { @@ -28450,7 +28450,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 618, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L618" } ] } @@ -28531,7 +28531,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 611, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L611" } ], "type": { @@ -28577,7 +28577,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 611, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L611" } ] } @@ -28638,7 +28638,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 613, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L613" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L613" } ], "type": { @@ -28658,7 +28658,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 609, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L609" } ] } @@ -28675,7 +28675,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 594, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L594" } ], "type": { @@ -28700,7 +28700,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 597, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L597" } ], "type": { @@ -28733,7 +28733,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 603, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L603" } ], "type": { @@ -28749,7 +28749,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 603, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L603" } ], "indexSignatures": [ @@ -28764,7 +28764,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 603, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L603" } ], "parameters": [ @@ -28810,7 +28810,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 599, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L599" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L599" } ], "type": { @@ -28839,7 +28839,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 601, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L601" } ], "type": { @@ -28868,7 +28868,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 605, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L605" } ], "type": { @@ -28888,7 +28888,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 597, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L597" } ] } @@ -28913,7 +28913,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 596, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L596" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L596" } ], "type": { @@ -28935,7 +28935,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 594, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L594" } ] } @@ -28952,7 +28952,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 549, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L549" } ], "type": { @@ -28989,7 +28989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L550" } ], "type": { @@ -29014,7 +29014,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 551, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L551" } ], "type": { @@ -29034,7 +29034,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 550, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L550" } ] } @@ -29052,7 +29052,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 549, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L549" } ] } @@ -29071,7 +29071,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 555, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L555" } ], "type": { @@ -29105,7 +29105,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 558, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L558" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L558" } ], "type": { @@ -29126,7 +29126,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 559, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L559" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L559" } ], "type": { @@ -29159,7 +29159,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 571, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L571" } ], "type": { @@ -29204,7 +29204,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 569, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L569" } ], "type": { @@ -29233,7 +29233,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L561" } ], "type": { @@ -29262,7 +29262,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L563" } ], "type": { @@ -29282,7 +29282,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L559" } ] } @@ -29300,7 +29300,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L556" } ] } @@ -29327,7 +29327,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L577" } ], "type": { @@ -29360,7 +29360,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L587" } ], "type": { @@ -29389,7 +29389,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L589" } ], "type": { @@ -29443,7 +29443,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L585" } ], "type": { @@ -29472,7 +29472,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 579, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L579" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L579" } ], "type": { @@ -29492,7 +29492,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 577, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L577" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L577" } ] } @@ -29517,7 +29517,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 576, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L576" } ], "type": { @@ -29537,7 +29537,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 574, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L574" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L574" } ] } @@ -29556,7 +29556,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 781, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L781" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L781" } ], "type": { @@ -29584,7 +29584,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 786, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L786" } ], "type": { @@ -29617,7 +29617,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 790, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L790" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L790" } ], "type": { @@ -29646,7 +29646,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 788, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L788" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L788" } ], "type": { @@ -29675,7 +29675,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 796, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L796" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L796" } ], "type": { @@ -29695,7 +29695,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 786, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L786" } ] } @@ -29720,7 +29720,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 784, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L784" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L784" } ], "type": { @@ -29740,7 +29740,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 782, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L782" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L782" } ] } @@ -29773,7 +29773,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 801, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L801" } ], "type": { @@ -29794,7 +29794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 803, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L803" } ], "type": { @@ -29827,7 +29827,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 807, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L807" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L807" } ], "type": { @@ -29856,7 +29856,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 805, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L805" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L805" } ], "type": { @@ -29885,7 +29885,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 813, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L813" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L813" } ], "type": { @@ -29905,7 +29905,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 803, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L803" } ] } @@ -29923,7 +29923,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 799, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L799" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L799" } ] } @@ -29942,7 +29942,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1341, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1341" } ], "type": { @@ -29975,7 +29975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1352" } ], "type": { @@ -30008,7 +30008,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1341, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1341" } ] } @@ -30025,7 +30025,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1500, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1500" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1500" } ], "type": { @@ -30056,7 +30056,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 534, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L534" } ], "type": { @@ -30097,7 +30097,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 536, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L536" } ], "type": { @@ -30122,7 +30122,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 539, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L539" } ], "type": { @@ -30143,7 +30143,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 540, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L540" } ], "type": { @@ -30173,7 +30173,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 538, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L538" } ], "type": { @@ -30194,7 +30194,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 537, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L537" } ], "type": { @@ -30214,7 +30214,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 536, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L536" } ] } @@ -30232,7 +30232,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 535, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L535" } ] } @@ -30255,7 +30255,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 624, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L624" } ], "type": { @@ -30280,7 +30280,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L626" } ], "type": { @@ -30306,7 +30306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L627" } ], "type": { @@ -30322,7 +30322,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L627" } ], "signatures": [ @@ -30353,7 +30353,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L626" } ] } @@ -30378,7 +30378,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L625" } ], "type": { @@ -30394,7 +30394,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 625, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L625" } ], "signatures": [ @@ -30482,7 +30482,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 630, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L630" } ], "type": { @@ -30498,7 +30498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 630, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L630" } ], "signatures": [ @@ -30594,7 +30594,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 624, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L624" } ] } @@ -30611,7 +30611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 633, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L633" } ], "type": { @@ -30637,7 +30637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 635, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L635" } ], "type": { @@ -30658,7 +30658,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 643, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L643" } ], "type": { @@ -30691,7 +30691,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 648, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L648" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L648" } ], "type": { @@ -30712,7 +30712,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 650, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L650" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L650" } ], "type": { @@ -30793,7 +30793,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 645, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L645" } ], "type": { @@ -30813,7 +30813,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 643, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L643" } ] } @@ -30840,7 +30840,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 641, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L641" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L641" } ], "type": { @@ -30877,7 +30877,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 638, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L638" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L638" } ], "type": { @@ -30899,7 +30899,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 634, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L634" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L634" } ] } @@ -30924,7 +30924,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 656, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L656" } ], "type": { @@ -30975,7 +30975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 659, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L659" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L659" } ], "type": { @@ -30996,7 +30996,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 664, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L664" } ], "type": { @@ -31029,7 +31029,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 666, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L666" } ], "type": { @@ -31049,7 +31049,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 664, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L664" } ] } @@ -31074,7 +31074,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 662, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L662" } ], "type": { @@ -31099,7 +31099,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 655, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L655" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L655" } ] } @@ -31118,7 +31118,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 211, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L211" } ], "type": { @@ -31161,7 +31161,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 219, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L219" } ], "type": { @@ -31181,7 +31181,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 211, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L211" } ] } @@ -31210,7 +31210,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 136, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L136" } ], "typeParameters": [ @@ -31277,7 +31277,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1310, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1310" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1310" } ], "type": { @@ -31369,7 +31369,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1320" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1320" } ], "type": { @@ -31389,7 +31389,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1312, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1312" } ] } @@ -31416,7 +31416,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1585, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1585" } ], "type": { @@ -31449,7 +31449,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1587, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1587" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1587" } ], "type": { @@ -31478,7 +31478,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1589, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1589" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1589" } ], "type": { @@ -31507,7 +31507,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1595, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1595" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1595" } ], "type": { @@ -31541,7 +31541,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1591, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1591" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1591" } ], "type": { @@ -31570,7 +31570,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1593" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1593" } ], "type": { @@ -31593,7 +31593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1585, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1585" } ] } @@ -31610,7 +31610,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 222, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -31637,7 +31637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L223" } ], "type": { @@ -31659,7 +31659,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 222, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L222" } ] } @@ -31680,7 +31680,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 711, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L711" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L711" } ], "type": { @@ -31718,7 +31718,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 120, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L120" } ], "type": { @@ -31741,7 +31741,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L122" } ], "type": { @@ -31760,7 +31760,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L121" } ], "type": { @@ -31785,7 +31785,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 120, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L120" } ] } @@ -31802,7 +31802,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 119, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L119" } ], "type": { @@ -31837,7 +31837,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 709, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L709" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L709" } ], "type": { @@ -31871,7 +31871,7 @@ "fileName": "packages/core/auth-js/src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/AuthAdminApi.ts#L3" } ], "type": { @@ -31898,7 +31898,7 @@ "fileName": "packages/core/auth-js/src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/AuthClient.ts#L3" } ], "type": { @@ -31929,7 +31929,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L6" } ], "type": { @@ -31956,7 +31956,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L10" } ], "type": { @@ -31977,7 +31977,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L6" } ] } @@ -31997,7 +31997,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1499, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1499" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1499" } ], "type": { @@ -32034,7 +32034,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 61, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L61" } ], "signatures": [ @@ -32049,7 +32049,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 61, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L61" } ], "parameters": [ @@ -32090,7 +32090,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L36" } ], "signatures": [ @@ -32105,7 +32105,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L36" } ], "parameters": [ @@ -32146,7 +32146,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 192, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L192" } ], "signatures": [ @@ -32161,7 +32161,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 192, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L192" } ], "parameters": [ @@ -32202,7 +32202,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 242, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L242" } ], "signatures": [ @@ -32217,7 +32217,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 242, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L242" } ], "parameters": [ @@ -32258,7 +32258,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 126, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L126" } ], "signatures": [ @@ -32273,7 +32273,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 126, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L126" } ], "parameters": [ @@ -32314,7 +32314,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L274" } ], "signatures": [ @@ -32329,7 +32329,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L274" } ], "parameters": [ @@ -32370,7 +32370,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L96" } ], "signatures": [ @@ -32446,7 +32446,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L96" } ], "typeParameters": [ @@ -32532,7 +32532,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L99" } ], "signatures": [ @@ -32547,7 +32547,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L99" } ], "type": { @@ -32606,7 +32606,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 214, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L214" } ], "signatures": [ @@ -32649,7 +32649,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 214, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L214" } ], "typeParameters": [ @@ -32735,7 +32735,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 217, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L217" } ], "signatures": [ @@ -32750,7 +32750,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 217, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L217" } ], "type": { diff --git a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json index 7ba1f0d8e725b..9f68d65290beb 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json @@ -42,7 +42,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L53" } ], "signatures": [ @@ -57,7 +57,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L53" } ], "parameters": [ @@ -153,7 +153,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L51" } ], "type": { @@ -247,7 +247,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 50, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L50" } ], "extendedTypes": [ @@ -296,7 +296,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L28" } ], "signatures": [ @@ -311,7 +311,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L28" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -562,7 +562,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "signatures": [ @@ -577,7 +577,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L177" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -929,7 +929,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L182" } ], "signatures": [ @@ -944,7 +944,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L182" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L187" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L176" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L185" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L184" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L186" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L186" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L183" } ] } @@ -1145,7 +1145,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 175, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L175" } ], "extendedTypes": [ @@ -1194,7 +1194,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L157" } ], "signatures": [ @@ -1209,7 +1209,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 157, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L157" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -1396,7 +1396,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 156, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L156" } ], "extendedTypes": [ @@ -1445,7 +1445,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L289" } ], "signatures": [ @@ -1460,7 +1460,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 289, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L289" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -1647,7 +1647,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 288, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L288" } ], "extendedTypes": [ @@ -1696,7 +1696,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L141" } ], "signatures": [ @@ -1711,7 +1711,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 141, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L141" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -1885,7 +1885,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 140, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L140" } ], "extendedTypes": [ @@ -1934,7 +1934,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "signatures": [ @@ -1949,7 +1949,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L211" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -2301,7 +2301,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L216" } ], "signatures": [ @@ -2316,7 +2316,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L216" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L221" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L209" } ] } @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L219" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L218" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L220" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L217" } ] } @@ -2517,7 +2517,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 208, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L208" } ], "extendedTypes": [ @@ -2566,7 +2566,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 237, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L237" } ], "signatures": [ @@ -2581,7 +2581,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 237, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L237" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -2779,7 +2779,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 236, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L236" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L236" } ], "extendedTypes": [ @@ -2828,7 +2828,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L121" } ], "signatures": [ @@ -2843,7 +2843,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L121" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -3017,7 +3017,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 120, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L120" } ], "extendedTypes": [ @@ -3066,7 +3066,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L82" } ], "signatures": [ @@ -3081,7 +3081,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L82" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L80" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L24" } ], "type": { @@ -3281,7 +3281,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 79, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L79" } ], "extendedTypes": [ @@ -3330,7 +3330,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L267" } ], "signatures": [ @@ -3345,7 +3345,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L267" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L265" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -3613,7 +3613,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 261, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L261" } ], "extendedTypes": [ @@ -3662,7 +3662,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L103" } ], "signatures": [ @@ -3677,7 +3677,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L103" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L21" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L100" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L101" } ], "type": { @@ -3902,7 +3902,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 99, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L99" } ], "extendedTypes": [ @@ -3974,7 +3974,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L65" } ] } @@ -4394,7 +4394,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L34" } ], "type": { @@ -4423,7 +4423,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L40" } ], "type": { @@ -4444,7 +4444,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 192, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L192" } ], "parameters": [ @@ -4524,7 +4524,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 312, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L312" } ], "parameters": [ @@ -4638,7 +4638,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 158, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L158" } ], "parameters": [ @@ -4710,7 +4710,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L261" } ], "parameters": [ @@ -4796,7 +4796,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 125, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L127" } ] } @@ -4982,7 +4982,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L214" } ], "parameters": [ @@ -5087,7 +5087,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ], "type": { @@ -5132,7 +5132,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ], "type": { @@ -5157,7 +5157,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" } ] } @@ -5182,7 +5182,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 217, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" } ] } @@ -5286,7 +5286,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 218, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" } ], "type": { @@ -5308,7 +5308,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 218, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" } ], "type": { @@ -5490,7 +5490,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 97, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L285" } ], "parameters": [ @@ -5621,7 +5621,7 @@ "fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts", "line": 32, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueAdminApi.ts#L32" } ] }, @@ -5643,7 +5643,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L292" } ], "signatures": [ @@ -5677,7 +5677,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L292" } ], "parameters": [ @@ -5724,7 +5724,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 201, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L201" } ], "type": { @@ -5754,7 +5754,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 205, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L205" } ], "type": { @@ -5783,7 +5783,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L211" } ], "type": { @@ -5804,7 +5804,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 743, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L743" } ], "signatures": [ @@ -5827,7 +5827,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 743, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L743" } ], "parameters": [ @@ -5874,7 +5874,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3701, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3701" } ], "signatures": [ @@ -5923,7 +5923,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3701, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3701" } ], "parameters": [ @@ -6017,7 +6017,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3710, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3710" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3710" } ], "type": { @@ -6046,7 +6046,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3713, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3713" } ], "type": { @@ -6069,7 +6069,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3713, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3713" } ], "type": { @@ -6094,7 +6094,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3713, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3713" } ] } @@ -6127,7 +6127,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3707, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3707" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3707" } ], "type": { @@ -6152,7 +6152,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3703, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3703" } ] } @@ -6190,7 +6190,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -6213,7 +6213,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -6234,7 +6234,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -6255,7 +6255,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 55, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ], "type": { @@ -6280,7 +6280,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3717, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3717" } ] } @@ -6297,7 +6297,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3718, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3718" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3718" } ], "type": { @@ -6317,7 +6317,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3716, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3716" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3716" } ] } @@ -6342,7 +6342,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3720, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3720" } ], "type": { @@ -6361,7 +6361,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3720, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3720" } ], "type": { @@ -6383,7 +6383,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3720, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3720" } ] } @@ -6408,7 +6408,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3721, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3721" } ], "type": { @@ -6427,7 +6427,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3721, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3721" } ], "type": { @@ -6447,7 +6447,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 3721, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L3721" } ] } @@ -6472,7 +6472,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1458, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1458" } ], "signatures": [ @@ -6504,7 +6504,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1458, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1458" } ], "type": { @@ -6537,7 +6537,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1551, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1551" } ], "type": { @@ -6560,7 +6560,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1552, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1552" } ], "type": { @@ -6582,7 +6582,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1551, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1551" } ] } @@ -6599,7 +6599,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1554, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1554" } ], "type": { @@ -6619,7 +6619,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1550, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1550" } ] } @@ -6644,7 +6644,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1557, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1557" } ], "type": { @@ -6667,7 +6667,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1558, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1558" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1558" } ], "type": { @@ -6687,7 +6687,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1557, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1557" } ] } @@ -6704,7 +6704,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1560, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1560" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1560" } ], "type": { @@ -6726,7 +6726,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1556, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1556" } ] } @@ -6751,7 +6751,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1563, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1563" } ], "type": { @@ -6774,7 +6774,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1564, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1564" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1564" } ], "type": { @@ -6794,7 +6794,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1563, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1563" } ] } @@ -6811,7 +6811,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1566, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1566" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1566" } ], "type": { @@ -6831,7 +6831,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1562, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1562" } ] } @@ -6856,7 +6856,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1700, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1700" } ], "signatures": [ @@ -6879,7 +6879,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1700, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1700" } ], "parameters": [ @@ -6936,7 +6936,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2282, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2282" } ], "signatures": [ @@ -6959,7 +6959,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2282, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2282" } ], "type": { @@ -6992,7 +6992,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2284, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2284" } ], "type": { @@ -7015,7 +7015,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2285, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2285" } ], "type": { @@ -7040,7 +7040,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2284, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2284" } ] } @@ -7057,7 +7057,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2287, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2287" } ], "type": { @@ -7077,7 +7077,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2283, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2283" } ] } @@ -7102,7 +7102,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2289, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2289" } ], "type": { @@ -7121,7 +7121,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2289, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2289" } ], "type": { @@ -7143,7 +7143,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2289, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2289" } ] } @@ -7168,7 +7168,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L440" } ], "signatures": [ @@ -7191,7 +7191,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 440, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L440" } ], "type": { @@ -7227,7 +7227,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 404, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L404" } ], "signatures": [ @@ -7250,7 +7250,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 404, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L404" } ], "type": { @@ -7271,19 +7271,19 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2307, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2307" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2312, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2312" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2314, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2314" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2314" } ], "signatures": [ @@ -7306,7 +7306,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2307, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2307" } ], "parameters": [ @@ -7361,7 +7361,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2312, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2312" } ], "parameters": [ @@ -7410,19 +7410,19 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" }, { "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2180" } ], "signatures": [ @@ -7445,7 +7445,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ], "parameters": [ @@ -7476,7 +7476,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ], "signatures": [ @@ -7491,7 +7491,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ], "parameters": [ @@ -7561,7 +7561,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2161, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2161" } ], "type": { @@ -7584,7 +7584,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2161, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2161" } ], "type": { @@ -7606,7 +7606,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2161, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2161" } ] } @@ -7624,7 +7624,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2160, "character": 90, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2160" } ] } @@ -7668,7 +7668,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ], "parameters": [ @@ -7699,7 +7699,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ], "signatures": [ @@ -7714,7 +7714,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ], "parameters": [ @@ -7795,7 +7795,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2177, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2177" } ], "type": { @@ -7818,7 +7818,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2177, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2177" } ], "type": { @@ -7840,7 +7840,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2177, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2177" } ] } @@ -7858,7 +7858,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2176, "character": 99, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2176" } ] } @@ -7877,7 +7877,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1371, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1371" } ], "signatures": [ @@ -7900,7 +7900,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1371, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1371" } ], "type": { @@ -7934,7 +7934,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ], "signatures": [ @@ -7957,7 +7957,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ], "parameters": [ @@ -7997,7 +7997,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ], "type": { @@ -8017,7 +8017,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1907, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1907" } ] } @@ -8055,7 +8055,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1406" } ], "signatures": [ @@ -8078,7 +8078,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1406, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1406" } ], "parameters": [ @@ -8127,7 +8127,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2236" } ], "signatures": [ @@ -8150,7 +8150,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2236, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2236" } ], "parameters": [ @@ -8209,7 +8209,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2240, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2240" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2240" } ], "type": { @@ -8238,7 +8238,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2239, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2239" } ], "type": { @@ -8258,7 +8258,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2238, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2238" } ] } @@ -8296,7 +8296,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2244, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2244" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2244" } ], "type": { @@ -8321,7 +8321,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2245, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2245" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2245" } ], "type": { @@ -8341,7 +8341,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2243, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2243" } ] } @@ -8366,7 +8366,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2247, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2247" } ], "type": { @@ -8385,7 +8385,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2247, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2247" } ], "type": { @@ -8407,7 +8407,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2247, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2247" } ] } @@ -8432,7 +8432,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1832, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1832" } ], "signatures": [ @@ -8455,7 +8455,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1832, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1832" } ], "parameters": [ @@ -8493,7 +8493,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1833, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1833" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1833" } ], "type": { @@ -8512,7 +8512,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1834, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1834" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1834" } ], "type": { @@ -8532,7 +8532,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1832, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1832" } ] } @@ -8570,7 +8570,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 547, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L547" } ], "signatures": [ @@ -8604,7 +8604,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 547, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L547" } ], "parameters": [ @@ -8655,7 +8655,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1156, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1156" } ], "signatures": [ @@ -8678,7 +8678,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1156, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1156" } ], "parameters": [ @@ -8727,7 +8727,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 731, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L731" } ], "signatures": [ @@ -8750,7 +8750,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 731, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L731" } ], "parameters": [ @@ -8799,7 +8799,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1209" } ], "signatures": [ @@ -8838,7 +8838,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1209, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1209" } ], "parameters": [ @@ -8887,7 +8887,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L667" } ], "signatures": [ @@ -8910,7 +8910,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 667, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L667" } ], "parameters": [ @@ -8959,7 +8959,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1326" } ], "signatures": [ @@ -8982,7 +8982,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1326, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1326" } ], "parameters": [ @@ -9031,7 +9031,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 758, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L758" } ], "signatures": [ @@ -9065,7 +9065,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 758, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L758" } ], "parameters": [ @@ -9113,7 +9113,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ], "type": { @@ -9136,7 +9136,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ], "type": { @@ -9157,7 +9157,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ], "type": { @@ -9179,7 +9179,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 760, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L760" } ] } @@ -9196,7 +9196,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L761" } ], "type": { @@ -9216,7 +9216,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 759, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L759" } ] } @@ -9241,7 +9241,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -9264,7 +9264,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -9283,7 +9283,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -9303,7 +9303,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ] } @@ -9320,7 +9320,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ], "type": { @@ -9342,7 +9342,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 763, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L763" } ] } @@ -9367,7 +9367,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ], "signatures": [ @@ -9430,7 +9430,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ], "parameters": [ @@ -9476,7 +9476,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ], "type": { @@ -9507,7 +9507,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2114, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2114" } ] } @@ -9530,7 +9530,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 590, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L590" } ], "signatures": [ @@ -9573,7 +9573,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 590, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L590" } ], "parameters": [ @@ -9622,7 +9622,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2892, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2892" } ], "signatures": [ @@ -9660,7 +9660,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2892, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2892" } ], "type": { @@ -9692,7 +9692,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2905, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2905" } ], "signatures": [ @@ -9724,7 +9724,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2905, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2905" } ], "type": { @@ -9756,7 +9756,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2411" } ], "signatures": [ @@ -9779,7 +9779,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2411" } ], "parameters": [ @@ -9827,7 +9827,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2413, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2413" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2413" } ], "type": { @@ -9852,7 +9852,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2414, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2414" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2414" } ], "type": { @@ -9872,7 +9872,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2412, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2412" } ] } @@ -9897,7 +9897,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2416, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2416" } ], "type": { @@ -9916,7 +9916,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2416, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2416" } ], "type": { @@ -9938,7 +9938,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 2416, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L2416" } ] } @@ -9963,7 +9963,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1761" } ], "signatures": [ @@ -9986,7 +9986,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1761, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1761" } ], "parameters": [ @@ -10031,7 +10031,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1764, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1764" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1764" } ], "type": { @@ -10051,7 +10051,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1763, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1763" } ] } @@ -10090,7 +10090,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1265, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1265" } ], "signatures": [ @@ -10113,7 +10113,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 1265, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L1265" } ], "parameters": [ @@ -10174,7 +10174,7 @@ "fileName": "packages/core/auth-js/src/GoTrueClient.ts", "line": 192, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/GoTrueClient.ts#L192" } ] }, @@ -10215,7 +10215,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L37" } ], "signatures": [ @@ -10230,7 +10230,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L37" } ], "parameters": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L35" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L52" } ], "extendedTypes": [ @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L450" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L476" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L401" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L457" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L501" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L418" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L411" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L494" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L406" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L464" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L485" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L440" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L429" } ], "extendedTypes": [ @@ -10882,7 +10882,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 286, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L286" } ], "type": { @@ -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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L292" } ], "type": { @@ -10931,7 +10931,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 284, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L284" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L284" } ] }, @@ -10961,7 +10961,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1778, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1778" } ], "signatures": [ @@ -10995,7 +10995,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1778, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1778" } ], "parameters": [ @@ -11056,7 +11056,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1780" } ], "type": { @@ -11076,7 +11076,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1780" } ] } @@ -11114,7 +11114,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1791" } ], "signatures": [ @@ -11148,7 +11148,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1791" } ], "parameters": [ @@ -11209,7 +11209,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1793, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1793" } ], "type": { @@ -11229,7 +11229,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1793, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1793" } ] } @@ -11267,7 +11267,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1768, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1768" } ], "signatures": [ @@ -11301,7 +11301,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1768, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1768" } ], "parameters": [ @@ -11356,7 +11356,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1802" } ], "signatures": [ @@ -11390,7 +11390,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1802" } ], "type": { @@ -11424,7 +11424,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ], "signatures": [ @@ -11458,7 +11458,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ], "parameters": [ @@ -11504,7 +11504,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ], "type": { @@ -11524,7 +11524,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1815" } ] } @@ -11563,7 +11563,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1755, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1755" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1755" } ] }, @@ -11611,7 +11611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 855, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L855" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L855" } ], "type": { @@ -11640,7 +11640,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 857, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L857" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L857" } ], "type": { @@ -11660,7 +11660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 849, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L849" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L849" } ] }, @@ -11696,7 +11696,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1298" } ], "signatures": [ @@ -11736,7 +11736,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1298" } ], "parameters": [ @@ -11785,7 +11785,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1288, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1288" } ], "signatures": [ @@ -11808,7 +11808,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1288, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1288" } ], "parameters": [ @@ -11858,7 +11858,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1283, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1283" } ] }, @@ -11888,7 +11888,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1637" } ], "signatures": [ @@ -11919,7 +11919,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1637, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1637" } ], "parameters": [ @@ -11968,7 +11968,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "signatures": [ @@ -11999,7 +11999,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "parameters": [ @@ -12042,7 +12042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "type": { @@ -12061,7 +12061,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ], "type": { @@ -12092,7 +12092,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1661, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1661" } ] } @@ -12115,7 +12115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1645" } ], "signatures": [ @@ -12146,7 +12146,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1645, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1645" } ], "parameters": [ @@ -12193,7 +12193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1629" } ], "signatures": [ @@ -12224,7 +12224,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1629, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1629" } ], "parameters": [ @@ -12275,7 +12275,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1669, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1669" } ], "signatures": [ @@ -12306,7 +12306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1669, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1669" } ], "parameters": [ @@ -12353,7 +12353,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1653" } ], "signatures": [ @@ -12384,7 +12384,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1653, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1653" } ], "parameters": [ @@ -12445,7 +12445,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1622, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1622" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1622" } ] }, @@ -12475,7 +12475,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1241, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1241" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1241" } ], "type": { @@ -12499,25 +12499,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1192" } ], "signatures": [ @@ -12540,7 +12540,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1189, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1189" } ], "parameters": [ @@ -12578,7 +12578,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -12598,7 +12598,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -12635,7 +12635,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -12654,7 +12654,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -12676,7 +12676,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -12701,7 +12701,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -12732,7 +12732,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1059" } ], "type": { @@ -12759,7 +12759,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1053" } ], "type": { @@ -12786,7 +12786,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1056" } ], "type": { @@ -12806,7 +12806,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -12823,7 +12823,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -12843,7 +12843,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -12866,7 +12866,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1190" } ], "parameters": [ @@ -12904,7 +12904,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 973, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L973" } ], "type": { @@ -12940,7 +12940,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -12960,7 +12960,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -12997,7 +12997,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -13016,7 +13016,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -13038,7 +13038,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13063,7 +13063,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -13094,7 +13094,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1059" } ], "type": { @@ -13121,7 +13121,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1053" } ], "type": { @@ -13148,7 +13148,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1056" } ], "type": { @@ -13168,7 +13168,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13185,7 +13185,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -13205,7 +13205,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13228,7 +13228,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1191" } ], "parameters": [ @@ -13266,7 +13266,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 963, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L963" } ], "type": { @@ -13285,7 +13285,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 982, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L982" } ], "type": { @@ -13316,7 +13316,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 984, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L984" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L984" } ], "type": { @@ -13345,7 +13345,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 986, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L986" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L986" } ], "type": { @@ -13368,7 +13368,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 982, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L982" } ] } @@ -13386,7 +13386,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13423,7 +13423,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -13442,7 +13442,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -13464,7 +13464,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13489,7 +13489,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -13520,7 +13520,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1059, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1059" } ], "type": { @@ -13547,7 +13547,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1053, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1053" } ], "type": { @@ -13574,7 +13574,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1056, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1056" } ], "type": { @@ -13593,7 +13593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1079, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1079" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1079" } ], "type": { @@ -13619,7 +13619,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1082, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1082" } ], "type": { @@ -13642,7 +13642,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1082, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1082" } ], "type": { @@ -13667,7 +13667,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1082, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1082" } ] } @@ -13684,7 +13684,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1081, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1081" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1081" } ], "type": { @@ -13704,7 +13704,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1080, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1080" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1080" } ] } @@ -13729,7 +13729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1086, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1086" } ], "type": { @@ -13752,7 +13752,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1086, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1086" } ], "type": { @@ -13777,7 +13777,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1086, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1086" } ] } @@ -13794,7 +13794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1085, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1085" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1085" } ], "type": { @@ -13814,7 +13814,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1084, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1084" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1084" } ] } @@ -13834,7 +13834,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13851,7 +13851,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -13871,7 +13871,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -13894,7 +13894,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1192" } ], "parameters": [ @@ -13943,7 +13943,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1213" } ], "signatures": [ @@ -13966,7 +13966,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1213" } ], "parameters": [ @@ -14004,7 +14004,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -14031,7 +14031,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -14051,7 +14051,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -14089,25 +14089,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1183" } ], "signatures": [ @@ -14146,7 +14146,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1180" } ], "parameters": [ @@ -14184,7 +14184,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1357" } ], "type": { @@ -14213,7 +14213,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1359" } ], "type": { @@ -14242,7 +14242,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1364, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1364" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1364" } ], "type": { @@ -14262,7 +14262,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -14298,7 +14298,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1181" } ], "parameters": [ @@ -14336,7 +14336,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1357" } ], "type": { @@ -14365,7 +14365,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1359" } ], "type": { @@ -14392,7 +14392,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1371, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1371" } ], "type": { @@ -14412,7 +14412,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -14448,7 +14448,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1182" } ], "parameters": [ @@ -14486,7 +14486,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1357" } ], "type": { @@ -14515,7 +14515,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1359" } ], "type": { @@ -14535,7 +14535,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -14571,7 +14571,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1183, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1183" } ], "parameters": [ @@ -14620,7 +14620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1238" } ], "signatures": [ @@ -14667,7 +14667,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1238, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1238" } ], "type": { @@ -14701,7 +14701,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1223" } ], "signatures": [ @@ -14773,7 +14773,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1223" } ], "type": { @@ -14830,7 +14830,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1207, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1207" } ], "signatures": [ @@ -14869,7 +14869,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1207, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1207" } ], "parameters": [ @@ -14918,25 +14918,25 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1198, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1201" } ], "signatures": [ @@ -14959,7 +14959,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1198, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1198" } ], "parameters": [ @@ -14997,7 +14997,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -15024,7 +15024,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -15051,7 +15051,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -15071,7 +15071,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -15107,7 +15107,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1199, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1199" } ], "parameters": [ @@ -15145,7 +15145,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -15172,7 +15172,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 917, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L917" } ], "type": { @@ -15199,7 +15199,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -15219,7 +15219,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -15255,7 +15255,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1200" } ], "parameters": [ @@ -15293,7 +15293,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 912, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L912" } ], "type": { @@ -15320,7 +15320,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 910, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L910" } ], "type": { @@ -15339,7 +15339,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L947" } ], "type": { @@ -15393,7 +15393,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ] } @@ -15429,7 +15429,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1201, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1201" } ], "parameters": [ @@ -15483,7 +15483,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1170, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1170" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1170" } ] }, @@ -15507,7 +15507,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1494" } ], "type": { @@ -15526,7 +15526,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1493" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1493" } ], "type": { @@ -15550,7 +15550,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1495, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1495" } ], "type": { @@ -15569,7 +15569,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1492, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1492" } ], "type": { @@ -15602,7 +15602,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1491, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1491" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1491" } ], "indexSignatures": [ @@ -15617,7 +15617,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1496, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1496" } ], "parameters": [ @@ -15679,7 +15679,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1459" } ], "type": { @@ -15707,7 +15707,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1482, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1482" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1482" } ], "type": { @@ -15733,7 +15733,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1480, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1480" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1480" } ], "type": { @@ -15756,7 +15756,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1455" } ], "type": { @@ -15794,7 +15794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1473" } ], "type": { @@ -15815,7 +15815,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1456" } ], "type": { @@ -15841,7 +15841,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1457" } ], "type": { @@ -15867,7 +15867,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1475, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1475" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1475" } ], "type": { @@ -15888,7 +15888,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1453" } ], "type": { @@ -15914,7 +15914,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1478" } ], "type": { @@ -15935,7 +15935,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1479" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1479" } ], "type": { @@ -15956,7 +15956,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1474, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1474" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1474" } ], "type": { @@ -15977,7 +15977,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1485, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1485" } ], "type": { @@ -15998,7 +15998,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1458" } ], "type": { @@ -16024,7 +16024,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1460, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1460" } ], "type": { @@ -16050,7 +16050,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1454" } ], "type": { @@ -16076,7 +16076,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1481, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1481" } ], "type": { @@ -16101,7 +16101,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1471, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1471" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1471" } ], "indexSignatures": [ @@ -16116,7 +16116,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1488" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1488" } ], "parameters": [ @@ -16173,7 +16173,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 239, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L239" } ], "type": { @@ -16202,7 +16202,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L251" } ], "type": { @@ -16229,7 +16229,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L247" } ], "type": { @@ -16258,7 +16258,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L235" } ], "type": { @@ -16296,7 +16296,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L230" } ], "type": { @@ -16332,7 +16332,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 243, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L243" } ], "type": { @@ -16351,7 +16351,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L252" } ], "type": { @@ -16378,7 +16378,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 257, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L257" } ], "type": { @@ -16400,7 +16400,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 226, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L226" } ] }, @@ -16430,7 +16430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 514, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L514" } ], "type": { @@ -16446,7 +16446,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 514, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L514" } ], "signatures": [ @@ -16461,7 +16461,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 514, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L514" } ], "parameters": [ @@ -16529,7 +16529,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 510, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L510" } ], "type": { @@ -16565,7 +16565,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 518, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L518" } ], "type": { @@ -16581,7 +16581,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 518, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L518" } ], "signatures": [ @@ -16596,7 +16596,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 518, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L518" } ], "type": { @@ -16620,7 +16620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 504, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L504" } ] }, @@ -16644,7 +16644,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 380, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L380" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L380" } ], "type": { @@ -16663,7 +16663,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 371, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L371" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L371" } ], "type": { @@ -16684,7 +16684,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 373, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L373" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L373" } ], "type": { @@ -16705,7 +16705,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 374, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L374" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L374" } ], "type": { @@ -16726,7 +16726,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 384, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L384" } ], "type": { @@ -16745,7 +16745,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 383, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L383" } ], "type": { @@ -16766,7 +16766,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 394, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L394" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L394" } ], "type": { @@ -16787,7 +16787,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 381, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L381" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L381" } ], "type": { @@ -16808,7 +16808,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 376, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L376" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L376" } ], "type": { @@ -16829,7 +16829,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 385, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L385" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L385" } ], "type": { @@ -16850,7 +16850,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 393, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L393" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L393" } ], "type": { @@ -16931,7 +16931,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 370, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L370" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L370" } ], "type": { @@ -16952,7 +16952,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 390, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L390" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L390" } ], "type": { @@ -16978,7 +16978,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 379, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L379" } ], "type": { @@ -16999,7 +16999,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 391, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L391" } ], "type": { @@ -17020,7 +17020,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 392, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L392" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L392" } ], "type": { @@ -17041,7 +17041,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 387, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L387" } ], "type": { @@ -17062,7 +17062,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 377, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L377" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L377" } ], "type": { @@ -17083,7 +17083,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 378, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L378" } ], "type": { @@ -17104,7 +17104,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L382" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L382" } ], "type": { @@ -17125,7 +17125,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L386" } ], "type": { @@ -17146,7 +17146,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 375, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L375" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L375" } ], "type": { @@ -17167,7 +17167,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 388, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L388" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L388" } ], "type": { @@ -17188,7 +17188,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 389, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L389" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L389" } ], "type": { @@ -17207,7 +17207,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 372, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L372" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L372" } ], "type": { @@ -17232,7 +17232,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 369, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L369" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L369" } ] }, @@ -17264,7 +17264,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L357" } ], "type": { @@ -17293,7 +17293,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 361, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L361" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L361" } ], "type": { @@ -17316,7 +17316,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 353, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L353" } ], "indexSignatures": [ @@ -17331,7 +17331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 362, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L362" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L362" } ], "parameters": [ @@ -17398,7 +17398,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 426, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L426" } ], "type": { @@ -17427,7 +17427,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 401, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L401" } ], "type": { @@ -17456,7 +17456,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 418, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L418" } ], "type": { @@ -17485,7 +17485,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 411, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L411" } ], "type": { @@ -17514,7 +17514,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 406, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L406" } ], "type": { @@ -17534,7 +17534,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 397, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L397" } ] }, @@ -17558,7 +17558,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 303, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L303" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L303" } ], "type": { @@ -17577,7 +17577,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 296, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L296" } ], "type": { @@ -17598,7 +17598,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 298, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L298" } ], "type": { @@ -17614,7 +17614,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 298, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L298" } ], "indexSignatures": [ @@ -17629,7 +17629,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 299, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L299" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L299" } ], "parameters": [ @@ -17665,7 +17665,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 301, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L301" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L301" } ], "type": { @@ -17686,7 +17686,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 304, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L304" } ], "type": { @@ -17705,7 +17705,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L302" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L302" } ], "type": { @@ -17726,7 +17726,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 305, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L305" } ], "type": { @@ -17745,7 +17745,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 297, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L297" } ], "type": { @@ -17765,7 +17765,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 295, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L295" } ] }, @@ -17780,7 +17780,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 365, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L365" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L365" } ], "indexSignatures": [ @@ -17795,7 +17795,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 366, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L366" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L366" } ], "parameters": [ @@ -17844,7 +17844,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 733, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L733" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L733" } ], "type": { @@ -17865,7 +17865,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 738, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L738" } ], "type": { @@ -17904,7 +17904,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 746, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L746" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L746" } ], "type": { @@ -17933,7 +17933,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 740, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L740" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L740" } ], "type": { @@ -17953,7 +17953,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 738, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L738" } ] } @@ -17978,7 +17978,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 735, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L735" } ], "type": { @@ -18005,7 +18005,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 737, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L737" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L737" } ], "type": { @@ -18027,7 +18027,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 731, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L731" } ] }, @@ -18051,7 +18051,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 719, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L719" } ], "type": { @@ -18090,7 +18090,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 728, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L728" } ], "type": { @@ -18119,7 +18119,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 721, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L721" } ], "type": { @@ -18139,7 +18139,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 719, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L719" } ] } @@ -18164,7 +18164,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 714, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L714" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L714" } ], "type": { @@ -18191,7 +18191,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 716, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L716" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L716" } ], "type": { @@ -18218,7 +18218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 718, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L718" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L718" } ], "type": { @@ -18240,7 +18240,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 712, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L712" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L712" } ] }, @@ -18270,7 +18270,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 752, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L752" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L752" } ], "type": { @@ -18297,7 +18297,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 755, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L755" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L755" } ], "type": { @@ -18319,7 +18319,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 750, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L750" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L750" } ] }, @@ -18334,7 +18334,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 274, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L274" } ], "type": { @@ -18380,7 +18380,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 274, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L274" } ] } @@ -18401,7 +18401,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 44, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L44" } ], "type": { @@ -18451,7 +18451,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 42, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L42" } ], "type": { @@ -18470,7 +18470,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1144, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1144" } ], "type": { @@ -18498,7 +18498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 593, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L593" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L593" } ], "type": { @@ -18535,7 +18535,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1254, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1254" } ], "type": { @@ -18566,7 +18566,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1256" } ], "type": { @@ -18593,7 +18593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1259, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1259" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1259" } ], "type": { @@ -18613,7 +18613,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1254, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1254" } ] } @@ -18639,7 +18639,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1247, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1247" } ], "type": { @@ -18674,7 +18674,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1249, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1249" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1249" } ], "type": { @@ -18694,7 +18694,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1247, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1247" } ] } @@ -18724,7 +18724,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1273, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1273" } ], "type": { @@ -18755,7 +18755,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1275, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1275" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1275" } ], "type": { @@ -18775,7 +18775,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1273, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1273" } ] } @@ -18801,7 +18801,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1265, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1265" } ], "type": { @@ -18836,7 +18836,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1267" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1267" } ], "type": { @@ -18861,7 +18861,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1265, "character": 60, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1265" } ] } @@ -18882,7 +18882,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1074, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1074" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1074" } ], "type": { @@ -18942,7 +18942,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1126, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1126" } ], "type": { @@ -18980,7 +18980,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1066, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1066" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1066" } ], "type": { @@ -19061,7 +19061,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1095, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1095" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1095" } ], "type": { @@ -19129,7 +19129,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1115, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1115" } ], "type": { @@ -19189,7 +19189,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1123, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1123" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1123" } ], "type": { @@ -19218,7 +19218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1429, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1429" } ], "type": { @@ -19278,7 +19278,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1041, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1041" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1041" } ], "type": { @@ -19316,7 +19316,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1420, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1420" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1420" } ], "type": { @@ -19397,7 +19397,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1442, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1442" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1442" } ], "type": { @@ -19457,7 +19457,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1146, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1146" } ], "type": { @@ -19492,7 +19492,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1163" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1163" } ], "type": { @@ -19524,7 +19524,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1148" } ], "type": { @@ -19575,7 +19575,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1156, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1156" } ], "type": { @@ -19606,7 +19606,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1146, "character": 74, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1146" } ] } @@ -19635,7 +19635,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1132, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1132" } ], "typeParameters": [ @@ -19708,7 +19708,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1136, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1136" } ], "type": { @@ -19741,7 +19741,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1134, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1134" } ] } @@ -19815,7 +19815,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1046, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1046" } ], "type": { @@ -19850,7 +19850,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1048, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1048" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1048" } ], "type": { @@ -19870,7 +19870,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1046, "character": 52, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1046" } ] } @@ -19899,7 +19899,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1039, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1039" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1039" } ], "type": { @@ -19936,7 +19936,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1018, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1018" } ], "type": { @@ -19967,7 +19967,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1020, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1020" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1020" } ], "type": { @@ -19994,7 +19994,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1026, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1026" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1026" } ], "type": { @@ -20021,7 +20021,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1029, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1029" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1029" } ], "type": { @@ -20056,7 +20056,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1023, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1023" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1023" } ], "type": { @@ -20083,7 +20083,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1032, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1032" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1032" } ], "type": { @@ -20105,7 +20105,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1018, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1018" } ] } @@ -20130,7 +20130,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1713, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1713" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1713" } ], "type": { @@ -20167,7 +20167,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1719" } ], "type": { @@ -20202,7 +20202,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1721, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1721" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1721" } ], "type": { @@ -20222,7 +20222,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1719, "character": 53, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1719" } ] } @@ -20251,7 +20251,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1741" } ], "type": { @@ -20291,7 +20291,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1747" } ], "type": { @@ -20311,7 +20311,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1747" } ] } @@ -20345,7 +20345,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 178, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L178" } ], "type": { @@ -20374,7 +20374,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L181" } ], "type": { @@ -20402,7 +20402,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L180" } ], "type": { @@ -20421,7 +20421,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L179" } ], "type": { @@ -20441,7 +20441,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 178, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L178" } ] } @@ -20462,7 +20462,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 162, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L162" } ], "type": { @@ -20489,7 +20489,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L164" } ], "type": { @@ -20519,7 +20519,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L163" } ], "type": { @@ -20550,7 +20550,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 162, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L162" } ] } @@ -20571,7 +20571,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 167, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L167" } ], "type": { @@ -20598,7 +20598,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 169, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L169" } ], "type": { @@ -20628,7 +20628,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 168, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L168" } ], "type": { @@ -20660,7 +20660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 170, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L170" } ], "type": { @@ -20691,7 +20691,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 167, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L167" } ] } @@ -20712,7 +20712,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 184, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L184" } ], "type": { @@ -20739,7 +20739,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 186, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L186" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L186" } ], "type": { @@ -20760,7 +20760,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 185, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L185" } ], "type": { @@ -20782,7 +20782,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 184, "character": 61, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L184" } ] } @@ -20803,7 +20803,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 189, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L189" } ], "type": { @@ -20830,7 +20830,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 191, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L191" } ], "type": { @@ -20851,7 +20851,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L190" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L190" } ], "type": { @@ -20874,7 +20874,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 192, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L192" } ], "type": { @@ -20896,7 +20896,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 189, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L189" } ] } @@ -20917,7 +20917,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1325, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1325" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1325" } ], "type": { @@ -20954,7 +20954,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1565, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1565" } ], "type": { @@ -20985,7 +20985,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1567, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1567" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1567" } ], "type": { @@ -21014,7 +21014,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1569" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1569" } ], "type": { @@ -21043,7 +21043,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1573, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1573" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1573" } ], "type": { @@ -21075,7 +21075,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1571, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1571" } ], "type": { @@ -21107,7 +21107,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1575, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1575" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1575" } ], "type": { @@ -21141,7 +21141,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1577, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1577" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1577" } ], "type": { @@ -21161,7 +21161,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1565, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1565" } ] } @@ -21178,7 +21178,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 759, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L759" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L759" } ], "type": { @@ -21222,7 +21222,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 670, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L670" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L670" } ], "type": { @@ -21246,7 +21246,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 672, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L672" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L672" } ], "type": { @@ -21272,7 +21272,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 674, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L674" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L674" } ], "type": { @@ -21293,7 +21293,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 682, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L682" } ], "type": { @@ -21326,7 +21326,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 687, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L687" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L687" } ], "type": { @@ -21347,7 +21347,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 689, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L689" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L689" } ], "type": { @@ -21424,7 +21424,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 684, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L684" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L684" } ], "type": { @@ -21444,7 +21444,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 682, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L682" } ] } @@ -21471,7 +21471,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 680, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L680" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L680" } ], "type": { @@ -21508,7 +21508,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 677, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L677" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L677" } ], "type": { @@ -21530,7 +21530,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 673, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L673" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L673" } ] } @@ -21555,7 +21555,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 695, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L695" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L695" } ], "type": { @@ -21606,7 +21606,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 698, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L698" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L698" } ], "type": { @@ -21627,7 +21627,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 703, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L703" } ], "type": { @@ -21660,7 +21660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 705, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L705" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L705" } ], "type": { @@ -21680,7 +21680,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 703, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L703" } ] } @@ -21705,7 +21705,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 701, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L701" } ], "type": { @@ -21730,7 +21730,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 694, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L694" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L694" } ] } @@ -21805,7 +21805,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 329, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L329" } ], "typeParameters": [ @@ -21885,7 +21885,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 349, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L349" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L349" } ], "type": { @@ -21928,7 +21928,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 342, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L342" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L342" } ], "type": { @@ -21960,7 +21960,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 337, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L337" } ], "type": { @@ -21987,7 +21987,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 334, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L334" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L334" } ], "type": { @@ -22042,7 +22042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 347, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L347" } ], "type": { @@ -22064,7 +22064,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 350, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L350" } ], "type": { @@ -22084,7 +22084,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 332, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L332" } ] } @@ -22125,7 +22125,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 313, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L313" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L313" } ], "type": { @@ -22160,7 +22160,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 838, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L838" } ], "type": { @@ -22191,7 +22191,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 841, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L841" } ], "type": { @@ -22218,7 +22218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 845, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L845" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L845" } ], "type": { @@ -22239,7 +22239,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 846, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L846" } ], "type": { @@ -22275,7 +22275,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 839, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L839" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L839" } ], "type": { @@ -22304,7 +22304,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 838, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L838" } ] } @@ -22321,7 +22321,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 824, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L824" } ], "type": { @@ -22352,7 +22352,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 827, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L827" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L827" } ], "type": { @@ -22373,7 +22373,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 828, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L828" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L828" } ], "type": { @@ -22418,7 +22418,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 825, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L825" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L825" } ], "type": { @@ -22447,7 +22447,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 824, "character": 46, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L824" } ] } @@ -22464,7 +22464,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 860, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L860" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L860" } ], "type": { @@ -22516,7 +22516,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 872, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L872" } ], "type": { @@ -22547,7 +22547,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 877, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L877" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L877" } ], "type": { @@ -22574,7 +22574,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 882, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L882" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L882" } ], "type": { @@ -22601,7 +22601,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 886, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L886" } ], "type": { @@ -22628,7 +22628,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 888, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L888" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L888" } ], "type": { @@ -22655,7 +22655,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 890, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L890" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L890" } ], "type": { @@ -22677,7 +22677,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 872, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L872" } ] } @@ -22694,7 +22694,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 866, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L866" } ], "type": { @@ -22721,7 +22721,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 867, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L867" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L867" } ], "type": { @@ -22742,7 +22742,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 868, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L868" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L868" } ], "type": { @@ -22764,7 +22764,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 866, "character": 64, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L866" } ] } @@ -22785,7 +22785,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 893, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L893" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L893" } ], "type": { @@ -22829,7 +22829,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 831, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L831" } ], "type": { @@ -22860,7 +22860,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 834, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L834" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L834" } ], "type": { @@ -22881,7 +22881,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 835, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L835" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L835" } ], "type": { @@ -22917,7 +22917,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 832, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L832" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L832" } ], "type": { @@ -22937,7 +22937,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 831, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L831" } ] } @@ -22954,7 +22954,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 817, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L817" } ], "type": { @@ -22977,7 +22977,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 819, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L819" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L819" } ], "type": { @@ -22998,7 +22998,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 821, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L821" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L821" } ], "type": { @@ -23043,7 +23043,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 820, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L820" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L820" } ], "type": { @@ -23062,7 +23062,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 818, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L818" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L818" } ], "type": { @@ -23082,7 +23082,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 817, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L817" } ] } @@ -23099,7 +23099,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 70, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L70" } ], "type": { @@ -23124,7 +23124,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 80, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L80" } ], "type": { @@ -23145,7 +23145,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L98" } ], "type": { @@ -23168,7 +23168,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 98, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L98" } ], "signatures": [ @@ -23231,7 +23231,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L78" } ], "type": { @@ -23252,7 +23252,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L94" } ], "type": { @@ -23278,7 +23278,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 96, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L96" } ], "type": { @@ -23310,7 +23310,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 109, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L109" } ], "type": { @@ -23331,7 +23331,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L74" } ], "type": { @@ -23347,7 +23347,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 74, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L74" } ], "indexSignatures": [ @@ -23362,7 +23362,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 74, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L74" } ], "parameters": [ @@ -23409,7 +23409,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L104" } ], "type": { @@ -23432,7 +23432,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 82, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L82" } ], "type": { @@ -23453,7 +23453,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 84, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L84" } ], "type": { @@ -23476,7 +23476,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 76, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L76" } ], "type": { @@ -23505,7 +23505,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L114" } ], "type": { @@ -23526,7 +23526,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L72" } ], "type": { @@ -23596,7 +23596,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 92, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L92" } ], "type": { @@ -23618,7 +23618,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 70, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L70" } ] } @@ -23635,7 +23635,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1323, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1323" } ], "type": { @@ -23658,7 +23658,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1323, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1323" } ], "type": { @@ -23689,7 +23689,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1323, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1323" } ] } @@ -23706,7 +23706,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1446, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1446" } ], "type": { @@ -23729,7 +23729,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1447, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1447" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1447" } ], "type": { @@ -23761,7 +23761,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1448, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1448" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1448" } ], "type": { @@ -23780,7 +23780,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1449" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1449" } ], "type": { @@ -23800,7 +23800,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1446, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1446" } ] } @@ -23834,7 +23834,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 68, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L68" } ], "type": { @@ -23850,7 +23850,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 68, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L68" } ], "signatures": [ @@ -23943,7 +23943,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 68, "character": 69, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L68" } ], "signatures": [ @@ -24011,7 +24011,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1012, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1012" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1012" } ], "type": { @@ -24035,7 +24035,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 999, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L999" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L999" } ], "type": { @@ -24073,7 +24073,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 976, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L976" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L976" } ], "type": { @@ -24119,7 +24119,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 969, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L969" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L969" } ], "type": { @@ -24172,7 +24172,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 995, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L995" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L995" } ], "type": { @@ -24218,7 +24218,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 901, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L901" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L901" } ], "type": { @@ -24256,7 +24256,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1373, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1373" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1373" } ], "type": { @@ -24308,7 +24308,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1367, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1367" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1367" } ], "type": { @@ -24381,7 +24381,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1386, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1386" } ], "type": { @@ -24433,7 +24433,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 967, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L967" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L967" } ], "type": { @@ -24468,7 +24468,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 903, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L903" } ], "type": { @@ -24499,7 +24499,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 905, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L905" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L905" } ], "type": { @@ -24519,7 +24519,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 903, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L903" } ] } @@ -24536,7 +24536,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 959, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L959" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L959" } ], "type": { @@ -24574,7 +24574,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 924, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L924" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L924" } ], "type": { @@ -24620,7 +24620,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 920, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L920" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L920" } ], "type": { @@ -24674,7 +24674,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 946, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L946" } ], "typeParameters": [ @@ -24740,7 +24740,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 947, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L947" } ], "type": { @@ -24788,7 +24788,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 946, "character": 98, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L946" } ] } @@ -24826,7 +24826,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 956, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L956" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L956" } ], "typeParameters": [ @@ -24921,7 +24921,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 758, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L758" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L758" } ], "type": { @@ -24957,7 +24957,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1676, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1676" } ], "type": { @@ -24988,7 +24988,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1678, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1678" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1678" } ], "type": { @@ -25015,7 +25015,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1684, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1684" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1684" } ], "type": { @@ -25042,7 +25042,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1680, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1680" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1680" } ], "type": { @@ -25069,7 +25069,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1682, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1682" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1682" } ], "type": { @@ -25089,7 +25089,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1676, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1676" } ] } @@ -25114,7 +25114,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1691, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1691" } ], "type": { @@ -25145,7 +25145,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1693, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1693" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1693" } ], "type": { @@ -25172,7 +25172,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1697, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1697" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1697" } ], "type": { @@ -25203,7 +25203,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1695, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1695" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1695" } ], "type": { @@ -25230,7 +25230,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1706, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1706" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1706" } ], "type": { @@ -25257,7 +25257,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1699, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1699" } ], "type": { @@ -25288,7 +25288,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1703, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1703" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1703" } ], "type": { @@ -25315,7 +25315,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1701, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1701" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1701" } ], "type": { @@ -25335,7 +25335,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1699, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1699" } ] } @@ -25353,7 +25353,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1691, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1691" } ] } @@ -25378,7 +25378,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1530, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1530" } ], "type": { @@ -25409,7 +25409,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1532, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1532" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1532" } ], "type": { @@ -25436,7 +25436,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1534, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1534" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1534" } ], "type": { @@ -25465,7 +25465,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1536" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1536" } ], "type": { @@ -25492,7 +25492,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1538, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1538" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1538" } ], "type": { @@ -25523,7 +25523,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1544, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1544" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1544" } ], "type": { @@ -25550,7 +25550,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1556, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1556" } ], "type": { @@ -25577,7 +25577,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1550" } ], "type": { @@ -25611,7 +25611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1546, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1546" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1546" } ], "type": { @@ -25638,7 +25638,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1548, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1548" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1548" } ], "type": { @@ -25668,7 +25668,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1542, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1542" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1542" } ], "type": { @@ -25697,7 +25697,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1552, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1552" } ], "type": { @@ -25731,7 +25731,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1554, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1554" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1554" } ], "type": { @@ -25758,7 +25758,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1540, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1540" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1540" } ], "type": { @@ -25785,7 +25785,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1558, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1558" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1558" } ], "type": { @@ -25807,7 +25807,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1530, "character": 26, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1530" } ] } @@ -25832,7 +25832,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1506, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1506" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1506" } ], "type": { @@ -25868,7 +25868,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1608, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1608" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1608" } ], "type": { @@ -25894,7 +25894,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ], "type": { @@ -25920,7 +25920,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ], "type": { @@ -25939,7 +25939,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ], "type": { @@ -25964,7 +25964,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1610, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1610" } ] } @@ -25989,7 +25989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1611, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1611" } ], "type": { @@ -26009,7 +26009,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1609, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1609" } ] } @@ -26034,7 +26034,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1614, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1614" } ], "type": { @@ -26057,7 +26057,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1614, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1614" } ], "type": { @@ -26076,7 +26076,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1614, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1614" } ] } @@ -26093,7 +26093,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1615, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1615" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1615" } ], "type": { @@ -26115,7 +26115,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1613, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1613" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1613" } ] } @@ -26142,7 +26142,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1524, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1524" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1524" } ], "type": { @@ -26178,7 +26178,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1602, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1602" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1602" } ], "type": { @@ -26215,7 +26215,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1512, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1512" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1512" } ], "type": { @@ -26242,7 +26242,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1518, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1518" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1518" } ], "type": { @@ -26278,7 +26278,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1728" } ], "type": { @@ -26309,7 +26309,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1730" } ], "type": { @@ -26338,7 +26338,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1734" } ], "type": { @@ -26365,7 +26365,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1732" } ], "type": { @@ -26388,7 +26388,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1728" } ] } @@ -26405,7 +26405,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 195, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L195" } ], "type": { @@ -26431,7 +26431,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 197, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L197" } ], "type": { @@ -26454,7 +26454,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 198, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L198" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L198" } ], "type": { @@ -26475,7 +26475,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 199, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L199" } ], "type": { @@ -26495,7 +26495,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 197, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L197" } ] } @@ -26512,7 +26512,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 201, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L201" } ], "type": { @@ -26532,7 +26532,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 196, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L196" } ] } @@ -26557,7 +26557,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 204, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L204" } ], "type": { @@ -26580,7 +26580,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 205, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L205" } ], "type": { @@ -26601,7 +26601,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 206, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L206" } ], "type": { @@ -26621,7 +26621,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 204, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L204" } ] } @@ -26638,7 +26638,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 208, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L208" } ], "type": { @@ -26660,7 +26660,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 203, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L203" } ] } @@ -26679,7 +26679,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1334, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1334" } ], "type": { @@ -26712,7 +26712,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1336, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1336" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1336" } ], "type": { @@ -26741,7 +26741,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1338, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1338" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1338" } ], "type": { @@ -26761,7 +26761,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1334, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1334" } ] } @@ -26778,7 +26778,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1327, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1327" } ], "type": { @@ -26801,7 +26801,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1330, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1330" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1330" } ], "type": { @@ -26820,7 +26820,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1329, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1329" } ], "type": { @@ -26848,7 +26848,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1331, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1331" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1331" } ], "type": { @@ -26868,7 +26868,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1327, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1327" } ], "indexSignatures": [ @@ -26883,7 +26883,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1328, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1328" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1328" } ], "parameters": [ @@ -26927,7 +26927,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 129, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L129" } ], "typeParameters": [ @@ -27020,7 +27020,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 18, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L18" } ], "type": { @@ -27136,7 +27136,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 141, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L141" } ], "typeParameters": [ @@ -27193,7 +27193,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 143, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L143" } ], "type": { @@ -27215,7 +27215,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L144" } ], "type": { @@ -27235,7 +27235,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 142, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L142" } ] } @@ -27260,7 +27260,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 147, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L147" } ], "type": { @@ -27279,7 +27279,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 148, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L148" } ], "type": { @@ -27326,7 +27326,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 146, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L146" } ] } @@ -27358,7 +27358,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 155, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L155" } ], "typeParameters": [ @@ -27393,7 +27393,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 156, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L156" } ], "type": { @@ -27415,7 +27415,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 156, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L156" } ], "type": { @@ -27435,7 +27435,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 156, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L156" } ] } @@ -27460,7 +27460,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 158, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L158" } ], "type": { @@ -27512,7 +27512,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 159, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L159" } ], "type": { @@ -27534,7 +27534,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 157, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L157" } ] } @@ -27553,7 +27553,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1452, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1452" } ], "type": { @@ -27576,7 +27576,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1459" } ], "type": { @@ -27597,7 +27597,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1455, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1455" } ], "type": { @@ -27628,7 +27628,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1456, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1456" } ], "type": { @@ -27647,7 +27647,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1457, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1457" } ], "type": { @@ -27666,7 +27666,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1453, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1453" } ], "type": { @@ -27685,7 +27685,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1458, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1458" } ], "type": { @@ -27704,7 +27704,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1460, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1460" } ], "type": { @@ -27723,7 +27723,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1454, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1454" } ], "type": { @@ -27743,7 +27743,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1452, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1452" } ] } @@ -27767,7 +27767,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 761, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L761" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L761" } ], "type": { @@ -27793,7 +27793,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 764, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L764" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L764" } ], "type": { @@ -27814,7 +27814,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 765, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L765" } ], "type": { @@ -27847,7 +27847,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 769, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L769" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L769" } ], "type": { @@ -27876,7 +27876,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 767, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L767" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L767" } ], "type": { @@ -27896,7 +27896,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 765, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L765" } ] } @@ -27913,7 +27913,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 763, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L763" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L763" } ], "type": { @@ -27959,7 +27959,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 762, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L762" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L762" } ] } @@ -27986,7 +27986,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 775, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L775" } ], "type": { @@ -28019,7 +28019,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 777, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L777" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L777" } ], "type": { @@ -28039,7 +28039,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 775, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L775" } ] } @@ -28056,7 +28056,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 774, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L774" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L774" } ], "type": { @@ -28075,7 +28075,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 773, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L773" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L773" } ], "type": { @@ -28121,7 +28121,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 772, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L772" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L772" } ] } @@ -28140,7 +28140,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 521, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L521" } ], "type": { @@ -28165,7 +28165,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 522, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L522" } ], "type": { @@ -28198,7 +28198,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 530, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L530" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L530" } ], "type": { @@ -28243,7 +28243,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 528, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L528" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L528" } ], "type": { @@ -28263,7 +28263,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 522, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L522" } ] } @@ -28281,7 +28281,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 521, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L521" } ] } @@ -28298,7 +28298,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 609, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L609" } ], "type": { @@ -28339,7 +28339,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 615, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L615" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L615" } ], "type": { @@ -28376,7 +28376,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 617, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L617" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L617" } ], "type": { @@ -28397,7 +28397,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 618, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L618" } ], "type": { @@ -28430,7 +28430,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 620, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L620" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L620" } ], "type": { @@ -28450,7 +28450,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 618, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L618" } ] } @@ -28531,7 +28531,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 611, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L611" } ], "type": { @@ -28577,7 +28577,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 611, "character": 76, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L611" } ] } @@ -28638,7 +28638,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 613, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L613" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L613" } ], "type": { @@ -28658,7 +28658,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 609, "character": 43, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L609" } ] } @@ -28675,7 +28675,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 594, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L594" } ], "type": { @@ -28700,7 +28700,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 597, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L597" } ], "type": { @@ -28733,7 +28733,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 603, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L603" } ], "type": { @@ -28749,7 +28749,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 603, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L603" } ], "indexSignatures": [ @@ -28764,7 +28764,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 603, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L603" } ], "parameters": [ @@ -28810,7 +28810,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 599, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L599" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L599" } ], "type": { @@ -28839,7 +28839,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 601, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L601" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L601" } ], "type": { @@ -28868,7 +28868,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 605, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L605" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L605" } ], "type": { @@ -28888,7 +28888,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 597, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L597" } ] } @@ -28913,7 +28913,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 596, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L596" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L596" } ], "type": { @@ -28935,7 +28935,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 594, "character": 41, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L594" } ] } @@ -28952,7 +28952,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 549, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L549" } ], "type": { @@ -28989,7 +28989,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 550, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L550" } ], "type": { @@ -29014,7 +29014,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 551, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L551" } ], "type": { @@ -29034,7 +29034,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 550, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L550" } ] } @@ -29052,7 +29052,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 549, "character": 70, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L549" } ] } @@ -29071,7 +29071,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 555, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L555" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L555" } ], "type": { @@ -29105,7 +29105,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 558, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L558" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L558" } ], "type": { @@ -29126,7 +29126,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 559, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L559" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L559" } ], "type": { @@ -29159,7 +29159,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 571, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L571" } ], "type": { @@ -29204,7 +29204,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 569, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L569" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L569" } ], "type": { @@ -29233,7 +29233,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L561" } ], "type": { @@ -29262,7 +29262,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L563" } ], "type": { @@ -29282,7 +29282,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L559" } ] } @@ -29300,7 +29300,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L556" } ] } @@ -29327,7 +29327,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L577" } ], "type": { @@ -29360,7 +29360,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L587" } ], "type": { @@ -29389,7 +29389,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L589" } ], "type": { @@ -29443,7 +29443,7 @@ "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" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L585" } ], "type": { @@ -29472,7 +29472,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 579, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L579" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L579" } ], "type": { @@ -29492,7 +29492,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 577, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L577" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L577" } ] } @@ -29517,7 +29517,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 576, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L576" } ], "type": { @@ -29537,7 +29537,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 574, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L574" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L574" } ] } @@ -29556,7 +29556,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 781, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L781" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L781" } ], "type": { @@ -29584,7 +29584,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 786, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L786" } ], "type": { @@ -29617,7 +29617,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 790, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L790" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L790" } ], "type": { @@ -29646,7 +29646,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 788, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L788" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L788" } ], "type": { @@ -29675,7 +29675,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 796, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L796" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L796" } ], "type": { @@ -29695,7 +29695,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 786, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L786" } ] } @@ -29720,7 +29720,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 784, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L784" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L784" } ], "type": { @@ -29740,7 +29740,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 782, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L782" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L782" } ] } @@ -29773,7 +29773,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 801, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L801" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L801" } ], "type": { @@ -29794,7 +29794,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 803, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L803" } ], "type": { @@ -29827,7 +29827,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 807, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L807" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L807" } ], "type": { @@ -29856,7 +29856,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 805, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L805" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L805" } ], "type": { @@ -29885,7 +29885,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 813, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L813" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L813" } ], "type": { @@ -29905,7 +29905,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 803, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L803" } ] } @@ -29923,7 +29923,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 799, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L799" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L799" } ] } @@ -29942,7 +29942,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1341, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1341" } ], "type": { @@ -29975,7 +29975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1352, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1352" } ], "type": { @@ -30008,7 +30008,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1341, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1341" } ] } @@ -30025,7 +30025,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1500, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1500" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1500" } ], "type": { @@ -30056,7 +30056,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 534, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L534" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L534" } ], "type": { @@ -30097,7 +30097,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 536, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L536" } ], "type": { @@ -30122,7 +30122,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 539, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L539" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L539" } ], "type": { @@ -30143,7 +30143,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 540, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L540" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L540" } ], "type": { @@ -30173,7 +30173,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 538, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L538" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L538" } ], "type": { @@ -30194,7 +30194,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 537, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L537" } ], "type": { @@ -30214,7 +30214,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 536, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L536" } ] } @@ -30232,7 +30232,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 535, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L535" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L535" } ] } @@ -30255,7 +30255,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 624, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L624" } ], "type": { @@ -30280,7 +30280,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L626" } ], "type": { @@ -30306,7 +30306,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L627" } ], "type": { @@ -30322,7 +30322,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 627, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L627" } ], "signatures": [ @@ -30353,7 +30353,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 626, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L626" } ] } @@ -30378,7 +30378,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 625, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L625" } ], "type": { @@ -30394,7 +30394,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 625, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L625" } ], "signatures": [ @@ -30482,7 +30482,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 630, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L630" } ], "type": { @@ -30498,7 +30498,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 630, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L630" } ], "signatures": [ @@ -30594,7 +30594,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 624, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L624" } ] } @@ -30611,7 +30611,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 633, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L633" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L633" } ], "type": { @@ -30637,7 +30637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 635, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L635" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L635" } ], "type": { @@ -30658,7 +30658,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 643, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L643" } ], "type": { @@ -30691,7 +30691,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 648, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L648" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L648" } ], "type": { @@ -30712,7 +30712,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 650, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L650" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L650" } ], "type": { @@ -30793,7 +30793,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 645, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L645" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L645" } ], "type": { @@ -30813,7 +30813,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 643, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L643" } ] } @@ -30840,7 +30840,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 641, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L641" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L641" } ], "type": { @@ -30877,7 +30877,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 638, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L638" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L638" } ], "type": { @@ -30899,7 +30899,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 634, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L634" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L634" } ] } @@ -30924,7 +30924,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 656, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L656" } ], "type": { @@ -30975,7 +30975,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 659, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L659" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L659" } ], "type": { @@ -30996,7 +30996,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 664, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L664" } ], "type": { @@ -31029,7 +31029,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 666, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L666" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L666" } ], "type": { @@ -31049,7 +31049,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 664, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L664" } ] } @@ -31074,7 +31074,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 662, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L662" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L662" } ], "type": { @@ -31099,7 +31099,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 655, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L655" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L655" } ] } @@ -31118,7 +31118,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 211, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L211" } ], "type": { @@ -31161,7 +31161,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 219, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L219" } ], "type": { @@ -31181,7 +31181,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 211, "character": 40, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L211" } ] } @@ -31210,7 +31210,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 136, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L136" } ], "typeParameters": [ @@ -31277,7 +31277,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1310, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1310" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1310" } ], "type": { @@ -31369,7 +31369,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1320, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1320" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1320" } ], "type": { @@ -31389,7 +31389,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1312, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1312" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1312" } ] } @@ -31416,7 +31416,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1585, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1585" } ], "type": { @@ -31449,7 +31449,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1587, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1587" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1587" } ], "type": { @@ -31478,7 +31478,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1589, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1589" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1589" } ], "type": { @@ -31507,7 +31507,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1595, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1595" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1595" } ], "type": { @@ -31541,7 +31541,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1591, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1591" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1591" } ], "type": { @@ -31570,7 +31570,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1593, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1593" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1593" } ], "type": { @@ -31593,7 +31593,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1585, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1585" } ] } @@ -31610,7 +31610,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 222, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L222" } ], "type": { @@ -31637,7 +31637,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 223, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L223" } ], "type": { @@ -31659,7 +31659,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 222, "character": 56, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L222" } ] } @@ -31680,7 +31680,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 711, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L711" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L711" } ], "type": { @@ -31718,7 +31718,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 120, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L120" } ], "type": { @@ -31741,7 +31741,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 122, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L122" } ], "type": { @@ -31760,7 +31760,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 121, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L121" } ], "type": { @@ -31785,7 +31785,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 120, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L120" } ] } @@ -31802,7 +31802,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 119, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L119" } ], "type": { @@ -31837,7 +31837,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 709, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L709" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L709" } ], "type": { @@ -31871,7 +31871,7 @@ "fileName": "packages/core/auth-js/src/AuthAdminApi.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthAdminApi.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/AuthAdminApi.ts#L3" } ], "type": { @@ -31898,7 +31898,7 @@ "fileName": "packages/core/auth-js/src/AuthClient.ts", "line": 3, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthClient.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/AuthClient.ts#L3" } ], "type": { @@ -31929,7 +31929,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L6" } ], "type": { @@ -31956,7 +31956,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L10" } ], "type": { @@ -31977,7 +31977,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 6, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L6" } ] } @@ -31997,7 +31997,7 @@ "fileName": "packages/core/auth-js/src/lib/types.ts", "line": 1499, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1499" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/types.ts#L1499" } ], "type": { @@ -32034,7 +32034,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 61, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L61" } ], "signatures": [ @@ -32049,7 +32049,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 61, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L61" } ], "parameters": [ @@ -32090,7 +32090,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L36" } ], "signatures": [ @@ -32105,7 +32105,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 36, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L36" } ], "parameters": [ @@ -32146,7 +32146,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 192, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L192" } ], "signatures": [ @@ -32161,7 +32161,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 192, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L192" } ], "parameters": [ @@ -32202,7 +32202,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 242, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L242" } ], "signatures": [ @@ -32217,7 +32217,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 242, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L242" } ], "parameters": [ @@ -32258,7 +32258,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 126, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L126" } ], "signatures": [ @@ -32273,7 +32273,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 126, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L126" } ], "parameters": [ @@ -32314,7 +32314,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L274" } ], "signatures": [ @@ -32329,7 +32329,7 @@ "fileName": "packages/core/auth-js/src/lib/errors.ts", "line": 274, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/errors.ts#L274" } ], "parameters": [ @@ -32370,7 +32370,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L96" } ], "signatures": [ @@ -32446,7 +32446,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 96, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L96" } ], "typeParameters": [ @@ -32532,7 +32532,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L99" } ], "signatures": [ @@ -32547,7 +32547,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 99, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L99" } ], "type": { @@ -32606,7 +32606,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 214, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L214" } ], "signatures": [ @@ -32649,7 +32649,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 214, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L214" } ], "typeParameters": [ @@ -32735,7 +32735,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 217, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L217" } ], "signatures": [ @@ -32750,7 +32750,7 @@ "fileName": "packages/core/auth-js/src/lib/locks.ts", "line": 217, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/auth-js/src/lib/locks.ts#L217" } ], "type": { diff --git a/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json b/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json index 0a7495207a00a..f0774d4b04df9 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json @@ -6,7 +6,7 @@ "flags": {}, "children": [ { - "id": 705, + "id": 726, "name": "PostgrestBuilder", "variant": "declaration", "kind": 128, @@ -15,7 +15,7 @@ }, "children": [ { - "id": 706, + "id": 727, "name": "constructor", "variant": "declaration", "kind": 512, @@ -25,12 +25,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "signatures": [ { - "id": 707, + "id": 728, "name": "PostgrestBuilder", "variant": "signature", "kind": 16384, @@ -59,32 +59,32 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "typeParameters": [ { - "id": 708, + "id": 729, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 709, + "id": 730, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 710, + "id": 731, "name": "ThrowOnError", "variant": "typeParam", "kind": 131072, @@ -101,7 +101,7 @@ ], "parameters": [ { - "id": 711, + "id": 732, "name": "builder", "variant": "param", "kind": 32768, @@ -109,14 +109,14 @@ "type": { "type": "reflection", "declaration": { - "id": 712, + "id": 733, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 717, + "id": 738, "name": "body", "variant": "declaration", "kind": 1024, @@ -128,7 +128,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 49, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" } ], "type": { @@ -137,7 +137,7 @@ } }, { - "id": 720, + "id": 741, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -149,13 +149,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 52, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" } ], "type": { "type": "reflection", "declaration": { - "id": 721, + "id": 742, "name": "__type", "variant": "declaration", "kind": 65536, @@ -174,7 +174,7 @@ ], "signatures": [ { - "id": 722, + "id": 743, "name": "__type", "variant": "signature", "kind": 4096, @@ -196,7 +196,7 @@ ], "parameters": [ { - "id": 723, + "id": 744, "name": "input", "variant": "param", "kind": 32768, @@ -226,7 +226,7 @@ } }, { - "id": 724, + "id": 745, "name": "init", "variant": "param", "kind": 32768, @@ -266,7 +266,7 @@ } }, { - "id": 725, + "id": 746, "name": "__type", "variant": "signature", "kind": 4096, @@ -288,7 +288,7 @@ ], "parameters": [ { - "id": 726, + "id": 747, "name": "input", "variant": "param", "kind": 32768, @@ -322,7 +322,7 @@ } }, { - "id": 727, + "id": 748, "name": "init", "variant": "param", "kind": 32768, @@ -366,7 +366,7 @@ } }, { - "id": 715, + "id": 736, "name": "headers", "variant": "declaration", "kind": 1024, @@ -376,7 +376,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 47, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" } ], "type": { @@ -390,7 +390,7 @@ } }, { - "id": 728, + "id": 749, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -402,7 +402,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 53, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" } ], "type": { @@ -411,7 +411,7 @@ } }, { - "id": 713, + "id": 734, "name": "method", "variant": "declaration", "kind": 1024, @@ -421,7 +421,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 45, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" } ], "type": { @@ -451,7 +451,7 @@ } }, { - "id": 716, + "id": 737, "name": "schema", "variant": "declaration", "kind": 1024, @@ -463,7 +463,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 48, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" } ], "type": { @@ -472,7 +472,7 @@ } }, { - "id": 718, + "id": 739, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -484,7 +484,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 50, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" } ], "type": { @@ -493,7 +493,7 @@ } }, { - "id": 719, + "id": 740, "name": "signal", "variant": "declaration", "kind": 1024, @@ -505,7 +505,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 51, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" } ], "type": { @@ -519,7 +519,7 @@ } }, { - "id": 714, + "id": 735, "name": "url", "variant": "declaration", "kind": 1024, @@ -529,7 +529,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" } ], "type": { @@ -546,7 +546,7 @@ "groups": [ { "title": "Properties", - "children": [717, 720, 715, 728, 713, 716, 718, 719, 714] + "children": [738, 741, 736, 749, 734, 737, 739, 740, 735] } ], "sources": [ @@ -554,7 +554,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ] } @@ -563,11 +563,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -575,7 +575,7 @@ }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -583,7 +583,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -598,7 +598,7 @@ ] }, { - "id": 733, + "id": 754, "name": "body", "variant": "declaration", "kind": 1024, @@ -611,7 +611,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 25, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" } ], "type": { @@ -620,7 +620,7 @@ } }, { - "id": 736, + "id": 757, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -632,13 +632,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" } ], "type": { "type": "reflection", "declaration": { - "id": 737, + "id": 758, "name": "__type", "variant": "declaration", "kind": 65536, @@ -657,7 +657,7 @@ ], "signatures": [ { - "id": 738, + "id": 759, "name": "__type", "variant": "signature", "kind": 4096, @@ -679,7 +679,7 @@ ], "parameters": [ { - "id": 739, + "id": 760, "name": "input", "variant": "param", "kind": 32768, @@ -709,7 +709,7 @@ } }, { - "id": 740, + "id": 761, "name": "init", "variant": "param", "kind": 32768, @@ -749,7 +749,7 @@ } }, { - "id": 741, + "id": 762, "name": "__type", "variant": "signature", "kind": 4096, @@ -771,7 +771,7 @@ ], "parameters": [ { - "id": 742, + "id": 763, "name": "input", "variant": "param", "kind": 32768, @@ -805,7 +805,7 @@ } }, { - "id": 743, + "id": 764, "name": "init", "variant": "param", "kind": 32768, @@ -849,7 +849,7 @@ } }, { - "id": 731, + "id": 752, "name": "headers", "variant": "declaration", "kind": 1024, @@ -861,7 +861,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 23, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" } ], "type": { @@ -875,7 +875,7 @@ } }, { - "id": 744, + "id": 765, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -887,7 +887,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" } ], "type": { @@ -896,7 +896,7 @@ } }, { - "id": 729, + "id": 750, "name": "method", "variant": "declaration", "kind": 1024, @@ -908,7 +908,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" } ], "type": { @@ -938,7 +938,7 @@ } }, { - "id": 732, + "id": 753, "name": "schema", "variant": "declaration", "kind": 1024, @@ -951,7 +951,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" } ], "type": { @@ -960,7 +960,7 @@ } }, { - "id": 734, + "id": 755, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -972,7 +972,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 26, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" } ], "type": { @@ -982,7 +982,7 @@ "defaultValue": "false" }, { - "id": 735, + "id": 756, "name": "signal", "variant": "declaration", "kind": 1024, @@ -995,7 +995,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 27, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" } ], "type": { @@ -1009,7 +1009,7 @@ } }, { - "id": 730, + "id": 751, "name": "url", "variant": "declaration", "kind": 1024, @@ -1021,7 +1021,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" } ], "type": { @@ -1035,7 +1035,7 @@ } }, { - "id": 766, + "id": 787, "name": "overrideTypes", "variant": "declaration", "kind": 2048, @@ -1045,12 +1045,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "signatures": [ { - "id": 767, + "id": 788, "name": "overrideTypes", "variant": "signature", "kind": 4096, @@ -1096,12 +1096,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "typeParameters": [ { - "id": 768, + "id": 789, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -1116,7 +1116,7 @@ } }, { - "id": 769, + "id": 790, "name": "Options", "variant": "typeParam", "kind": 131072, @@ -1132,14 +1132,14 @@ "type": { "type": "reflection", "declaration": { - "id": 770, + "id": 791, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 771, + "id": 792, "name": "merge", "variant": "declaration", "kind": 1024, @@ -1151,7 +1151,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -1163,7 +1163,7 @@ "groups": [ { "title": "Properties", - "children": [771] + "children": [792] } ], "sources": [ @@ -1171,7 +1171,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -1179,14 +1179,14 @@ "default": { "type": "reflection", "declaration": { - "id": 772, + "id": 793, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 773, + "id": 794, "name": "merge", "variant": "declaration", "kind": 1024, @@ -1196,7 +1196,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -1208,7 +1208,7 @@ "groups": [ { "title": "Properties", - "children": [773] + "children": [794] } ], "sources": [ @@ -1216,7 +1216,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -1225,11 +1225,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -1246,7 +1246,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1254,7 +1254,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1286,7 +1286,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1316,7 +1316,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1330,7 +1330,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1342,7 +1342,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1362,14 +1362,14 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1377,7 +1377,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1396,7 +1396,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1404,7 +1404,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1416,7 +1416,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -1431,7 +1431,7 @@ ] }, { - "id": 763, + "id": 784, "name": "returns", "variant": "declaration", "kind": 2048, @@ -1441,12 +1441,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" } ], "signatures": [ { - "id": 764, + "id": 785, "name": "returns", "variant": "signature", "kind": 4096, @@ -1483,12 +1483,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" } ], "typeParameters": [ { - "id": 765, + "id": 786, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -1505,11 +1505,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -1524,7 +1524,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1532,7 +1532,7 @@ }, { "type": "reference", - "target": 765, + "target": 786, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1543,7 +1543,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -1558,7 +1558,7 @@ ] }, { - "id": 747, + "id": 768, "name": "setHeader", "variant": "declaration", "kind": 2048, @@ -1568,12 +1568,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "signatures": [ { - "id": 748, + "id": 769, "name": "setHeader", "variant": "signature", "kind": 4096, @@ -1591,12 +1591,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "parameters": [ { - "id": 749, + "id": 770, "name": "name", "variant": "param", "kind": 32768, @@ -1607,7 +1607,7 @@ } }, { - "id": 750, + "id": 771, "name": "value", "variant": "param", "kind": 32768, @@ -1626,7 +1626,7 @@ ] }, { - "id": 751, + "id": 772, "name": "then", "variant": "declaration", "kind": 2048, @@ -1636,12 +1636,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "signatures": [ { - "id": 752, + "id": 773, "name": "then", "variant": "signature", "kind": 4096, @@ -1670,12 +1670,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "typeParameters": [ { - "id": 753, + "id": 774, "name": "TResult1", "variant": "typeParam", "kind": 131072, @@ -1684,7 +1684,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -1696,11 +1696,11 @@ }, "trueType": { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1712,11 +1712,11 @@ }, "falseType": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1729,7 +1729,7 @@ } }, { - "id": 754, + "id": 775, "name": "TResult2", "variant": "typeParam", "kind": 131072, @@ -1742,7 +1742,7 @@ ], "parameters": [ { - "id": 755, + "id": 776, "name": "onfulfilled", "variant": "param", "kind": 32768, @@ -1767,7 +1767,7 @@ { "type": "reflection", "declaration": { - "id": 756, + "id": 777, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1777,12 +1777,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "signatures": [ { - "id": 757, + "id": 778, "name": "__type", "variant": "signature", "kind": 4096, @@ -1792,12 +1792,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "parameters": [ { - "id": 758, + "id": 779, "name": "value", "variant": "param", "kind": 32768, @@ -1806,7 +1806,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -1818,11 +1818,11 @@ }, "trueType": { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1834,11 +1834,11 @@ }, "falseType": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1856,7 +1856,7 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1870,7 +1870,7 @@ "typeArguments": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1889,7 +1889,7 @@ } }, { - "id": 759, + "id": 780, "name": "onrejected", "variant": "param", "kind": 32768, @@ -1914,7 +1914,7 @@ { "type": "reflection", "declaration": { - "id": 760, + "id": 781, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1924,12 +1924,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "signatures": [ { - "id": 761, + "id": 782, "name": "__type", "variant": "signature", "kind": 4096, @@ -1939,12 +1939,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "parameters": [ { - "id": 762, + "id": 783, "name": "reason", "variant": "param", "kind": 32768, @@ -1960,7 +1960,7 @@ "types": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1974,7 +1974,7 @@ "typeArguments": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -2005,14 +2005,14 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -2037,7 +2037,7 @@ } }, { - "id": 745, + "id": 766, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -2047,12 +2047,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "signatures": [ { - "id": 746, + "id": 767, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -2076,7 +2076,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -2084,11 +2084,11 @@ "types": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -2096,7 +2096,7 @@ }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -2104,7 +2104,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -2117,11 +2117,11 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -2129,7 +2129,7 @@ }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -2153,15 +2153,15 @@ "groups": [ { "title": "Constructors", - "children": [706] + "children": [727] }, { "title": "Properties", - "children": [733, 736, 731, 744, 729, 732, 734, 735, 730] + "children": [754, 757, 752, 765, 750, 753, 755, 756, 751] }, { "title": "Methods", - "children": [766, 763, 747, 751, 745] + "children": [787, 784, 768, 772, 766] } ], "sources": [ @@ -2169,32 +2169,32 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 12, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12" } ], "typeParameters": [ { - "id": 774, + "id": 795, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 775, + "id": 796, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 776, + "id": 797, "name": "ThrowOnError", "variant": "typeParam", "kind": 131072, @@ -2212,7 +2212,7 @@ "extendedBy": [ { "type": "reference", - "target": 546, + "target": 567, "name": "PostgrestTransformBuilder" } ], @@ -2228,7 +2228,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -2240,11 +2240,11 @@ }, "trueType": { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -2256,11 +2256,11 @@ }, "falseType": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -2303,7 +2303,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L61" } ], "typeParameters": [ @@ -2360,7 +2360,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" }, @@ -2394,7 +2394,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L82" } ], "typeParameters": [ @@ -3575,9 +3575,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 144, + "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L148" } ], "signatures": [ @@ -3598,9 +3598,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 144, + "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L148" } ], "typeParameters": [ @@ -3824,9 +3824,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 162, + "line": 166, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L166" } ], "type": { @@ -3874,9 +3874,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 161, + "line": 165, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L165" } ], "type": { @@ -3920,9 +3920,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 160, + "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L164" } ], "type": { @@ -3941,9 +3941,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 159, + "line": 163, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L163" } ] } @@ -4048,9 +4048,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 106, + "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L110" } ], "signatures": [ @@ -4071,9 +4071,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 106, + "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L110" } ], "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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L16" } ], "typeParameters": [ @@ -4244,7 +4244,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" }, @@ -4278,7 +4278,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -4286,7 +4286,7 @@ "name": "I", "constraint": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -4304,7 +4304,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L22" } ] } @@ -4575,7 +4575,7 @@ ] }, { - "id": 777, + "id": 798, "name": "PostgrestError", "variant": "declaration", "kind": 128, @@ -4596,7 +4596,7 @@ }, "children": [ { - "id": 778, + "id": 799, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4606,12 +4606,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "signatures": [ { - "id": 779, + "id": 800, "name": "PostgrestError", "variant": "signature", "kind": 16384, @@ -4635,12 +4635,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "parameters": [ { - "id": 780, + "id": 801, "name": "context", "variant": "param", "kind": 32768, @@ -4648,14 +4648,14 @@ "type": { "type": "reflection", "declaration": { - "id": 781, + "id": 802, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 785, + "id": 806, "name": "code", "variant": "declaration", "kind": 1024, @@ -4665,7 +4665,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 73, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -4674,7 +4674,7 @@ } }, { - "id": 783, + "id": 804, "name": "details", "variant": "declaration", "kind": 1024, @@ -4684,7 +4684,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -4693,7 +4693,7 @@ } }, { - "id": 784, + "id": 805, "name": "hint", "variant": "declaration", "kind": 1024, @@ -4703,7 +4703,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -4712,7 +4712,7 @@ } }, { - "id": 782, + "id": 803, "name": "message", "variant": "declaration", "kind": 1024, @@ -4722,7 +4722,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -4734,7 +4734,7 @@ "groups": [ { "title": "Properties", - "children": [785, 783, 784, 782] + "children": [806, 804, 805, 803] } ], "sources": [ @@ -4742,7 +4742,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ] } @@ -4751,7 +4751,7 @@ ], "type": { "type": "reference", - "target": 777, + "target": 798, "name": "PostgrestError", "package": "@supabase/postgrest-js", "qualifiedName": "default" @@ -4770,7 +4770,7 @@ } }, { - "id": 788, + "id": 809, "name": "code", "variant": "declaration", "kind": 1024, @@ -4780,7 +4780,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L9" } ], "type": { @@ -4789,7 +4789,7 @@ } }, { - "id": 786, + "id": 807, "name": "details", "variant": "declaration", "kind": 1024, @@ -4799,7 +4799,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L7" } ], "type": { @@ -4808,7 +4808,7 @@ } }, { - "id": 787, + "id": 808, "name": "hint", "variant": "declaration", "kind": 1024, @@ -4818,7 +4818,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L8" } ], "type": { @@ -4830,11 +4830,11 @@ "groups": [ { "title": "Constructors", - "children": [778] + "children": [799] }, { "title": "Properties", - "children": [788, 786, 787] + "children": [809, 807, 808] } ], "sources": [ @@ -4842,7 +4842,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 6, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "typeParameters": [ @@ -4921,7 +4921,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -5038,7 +5038,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 49, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ] } @@ -5538,19 +5538,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 548, + "target": 569, "name": "default.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 547, + "target": 568, "name": "default.constructor" } }, { - "id": 501, + "id": 522, "name": "body", "variant": "declaration", "kind": 1024, @@ -5564,7 +5564,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 25, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" } ], "type": { @@ -5573,12 +5573,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 660, + "target": 681, "name": "default.body" } }, { - "id": 504, + "id": 525, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -5591,13 +5591,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" } ], "type": { "type": "reflection", "declaration": { - "id": 505, + "id": 526, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5616,7 +5616,7 @@ ], "signatures": [ { - "id": 506, + "id": 527, "name": "__type", "variant": "signature", "kind": 4096, @@ -5638,7 +5638,7 @@ ], "parameters": [ { - "id": 507, + "id": 528, "name": "input", "variant": "param", "kind": 32768, @@ -5668,7 +5668,7 @@ } }, { - "id": 508, + "id": 529, "name": "init", "variant": "param", "kind": 32768, @@ -5708,7 +5708,7 @@ } }, { - "id": 509, + "id": 530, "name": "__type", "variant": "signature", "kind": 4096, @@ -5730,7 +5730,7 @@ ], "parameters": [ { - "id": 510, + "id": 531, "name": "input", "variant": "param", "kind": 32768, @@ -5764,7 +5764,7 @@ } }, { - "id": 511, + "id": 532, "name": "init", "variant": "param", "kind": 32768, @@ -5808,12 +5808,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 663, + "target": 684, "name": "default.fetch" } }, { - "id": 499, + "id": 520, "name": "headers", "variant": "declaration", "kind": 1024, @@ -5826,7 +5826,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 23, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" } ], "type": { @@ -5840,12 +5840,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 658, + "target": 679, "name": "default.headers" } }, { - "id": 512, + "id": 533, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -5858,7 +5858,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" } ], "type": { @@ -5867,12 +5867,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 671, + "target": 692, "name": "default.isMaybeSingle" } }, { - "id": 497, + "id": 518, "name": "method", "variant": "declaration", "kind": 1024, @@ -5885,7 +5885,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" } ], "type": { @@ -5915,12 +5915,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 656, + "target": 677, "name": "default.method" } }, { - "id": 500, + "id": 521, "name": "schema", "variant": "declaration", "kind": 1024, @@ -5934,7 +5934,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" } ], "type": { @@ -5943,12 +5943,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 659, + "target": 680, "name": "default.schema" } }, { - "id": 502, + "id": 523, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -5961,7 +5961,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 26, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" } ], "type": { @@ -5971,12 +5971,12 @@ "defaultValue": "false", "inheritedFrom": { "type": "reference", - "target": 661, + "target": 682, "name": "default.shouldThrowOnError" } }, { - "id": 503, + "id": 524, "name": "signal", "variant": "declaration", "kind": 1024, @@ -5990,7 +5990,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 27, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" } ], "type": { @@ -6004,12 +6004,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 662, + "target": 683, "name": "default.signal" } }, { - "id": 498, + "id": 519, "name": "url", "variant": "declaration", "kind": 1024, @@ -6022,7 +6022,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" } ], "type": { @@ -6036,12 +6036,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 657, + "target": 678, "name": "default.url" } }, { - "id": 466, + "id": 487, "name": "abortSignal", "variant": "declaration", "kind": 2048, @@ -6053,12 +6053,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "signatures": [ { - "id": 467, + "id": 488, "name": "abortSignal", "variant": "signature", "kind": 4096, @@ -6078,12 +6078,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "parameters": [ { - "id": 468, + "id": 489, "name": "signal", "variant": "param", "kind": 32768, @@ -6113,19 +6113,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 626, + "target": 647, "name": "default.abortSignal" } } ], "inheritedFrom": { "type": "reference", - "target": 625, + "target": 646, "name": "default.abortSignal" } }, { - "id": 310, + "id": 331, "name": "containedBy", "variant": "declaration", "kind": 2048, @@ -6179,26 +6179,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 356, + "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L409" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 360, + "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L413" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 368, + "line": 421, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L368" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L421" } ], "signatures": [ { - "id": 311, + "id": 332, "name": "containedBy", "variant": "signature", "kind": 4096, @@ -6206,14 +6206,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 356, + "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L409" } ], "typeParameters": [ { - "id": 312, + "id": 333, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -6226,21 +6226,21 @@ ], "parameters": [ { - "id": 313, + "id": 334, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 312, + "target": 333, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 314, + "id": 335, "name": "value", "variant": "param", "kind": 32768, @@ -6280,7 +6280,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 312, + "target": 333, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -6306,7 +6306,7 @@ } }, { - "id": 315, + "id": 336, "name": "containedBy", "variant": "signature", "kind": 4096, @@ -6314,14 +6314,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 360, + "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L413" } ], "parameters": [ { - "id": 316, + "id": 337, "name": "column", "variant": "param", "kind": 32768, @@ -6332,7 +6332,7 @@ } }, { - "id": 317, + "id": 338, "name": "value", "variant": "param", "kind": 32768, @@ -6386,7 +6386,7 @@ ] }, { - "id": 302, + "id": 323, "name": "contains", "variant": "declaration", "kind": 2048, @@ -6440,26 +6440,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 329, + "line": 382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 333, + "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L386" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 341, + "line": 394, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L394" } ], "signatures": [ { - "id": 303, + "id": 324, "name": "contains", "variant": "signature", "kind": 4096, @@ -6467,14 +6467,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 329, + "line": 382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" } ], "typeParameters": [ { - "id": 304, + "id": 325, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -6487,21 +6487,21 @@ ], "parameters": [ { - "id": 305, + "id": 326, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 304, + "target": 325, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 306, + "id": 327, "name": "value", "variant": "param", "kind": 32768, @@ -6541,7 +6541,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 304, + "target": 325, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -6567,7 +6567,7 @@ } }, { - "id": 307, + "id": 328, "name": "contains", "variant": "signature", "kind": 4096, @@ -6575,14 +6575,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 333, + "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L386" } ], "parameters": [ { - "id": 308, + "id": 329, "name": "column", "variant": "param", "kind": 32768, @@ -6593,7 +6593,7 @@ } }, { - "id": 309, + "id": 330, "name": "value", "variant": "param", "kind": 32768, @@ -6647,7 +6647,7 @@ ] }, { - "id": 475, + "id": 496, "name": "csv", "variant": "declaration", "kind": 2048, @@ -6659,12 +6659,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "signatures": [ { - "id": 476, + "id": 497, "name": "csv", "variant": "signature", "kind": 4096, @@ -6692,12 +6692,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -6718,14 +6718,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 635, + "target": 656, "name": "default.csv" } } ], "inheritedFrom": { "type": "reference", - "target": 634, + "target": 655, "name": "default.csv" } }, @@ -6738,9 +6738,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 101, + "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104" } ], "signatures": [ @@ -6793,9 +6793,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 101, + "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104" } ], "typeParameters": [ @@ -6981,7 +6981,7 @@ ] }, { - "id": 479, + "id": 500, "name": "explain", "variant": "declaration", "kind": 2048, @@ -6993,12 +6993,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "signatures": [ { - "id": 480, + "id": 501, "name": "explain", "variant": "signature", "kind": 4096, @@ -7026,12 +7026,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "parameters": [ { - "id": 481, + "id": 502, "name": "options", "variant": "param", "kind": 32768, @@ -7047,14 +7047,14 @@ "type": { "type": "reflection", "declaration": { - "id": 482, + "id": 503, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 483, + "id": 504, "name": "analyze", "variant": "declaration", "kind": 1024, @@ -7082,7 +7082,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 288, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" } ], "type": { @@ -7092,7 +7092,7 @@ "defaultValue": "false" }, { - "id": 486, + "id": 507, "name": "buffers", "variant": "declaration", "kind": 1024, @@ -7120,7 +7120,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 291, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" } ], "type": { @@ -7130,7 +7130,7 @@ "defaultValue": "false" }, { - "id": 488, + "id": 509, "name": "format", "variant": "declaration", "kind": 1024, @@ -7162,7 +7162,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 293, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" } ], "type": { @@ -7181,7 +7181,7 @@ "defaultValue": "'text'" }, { - "id": 485, + "id": 506, "name": "settings", "variant": "declaration", "kind": 1024, @@ -7209,7 +7209,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 290, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" } ], "type": { @@ -7219,7 +7219,7 @@ "defaultValue": "false" }, { - "id": 484, + "id": 505, "name": "verbose", "variant": "declaration", "kind": 1024, @@ -7255,7 +7255,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 289, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" } ], "type": { @@ -7265,7 +7265,7 @@ "defaultValue": "false" }, { - "id": 487, + "id": 508, "name": "wal", "variant": "declaration", "kind": 1024, @@ -7293,7 +7293,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 292, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" } ], "type": { @@ -7306,7 +7306,7 @@ "groups": [ { "title": "Properties", - "children": [483, 486, 488, 485, 484, 487] + "children": [504, 507, 509, 506, 505, 508] } ], "sources": [ @@ -7314,7 +7314,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 287, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" } ] } @@ -7327,7 +7327,7 @@ "types": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -7352,7 +7352,7 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -7397,19 +7397,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 639, + "target": 660, "name": "default.explain" } } ], "inheritedFrom": { "type": "reference", - "target": 638, + "target": 659, "name": "default.explain" } }, { - "id": 405, + "id": 426, "name": "filter", "variant": "declaration", "kind": 2048, @@ -7473,26 +7473,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 583, + "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L636" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 588, + "line": 641, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L641" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 602, + "line": 655, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L602" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L655" } ], "signatures": [ { - "id": 406, + "id": 427, "name": "filter", "variant": "signature", "kind": 4096, @@ -7500,14 +7500,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 583, + "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L636" } ], "typeParameters": [ { - "id": 407, + "id": 428, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -7520,21 +7520,21 @@ ], "parameters": [ { - "id": 408, + "id": 429, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 407, + "target": 428, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 409, + "id": 430, "name": "operator", "variant": "param", "kind": 32768, @@ -7551,6 +7551,10 @@ "name": "FilterOperator", "package": "@supabase/postgrest-js" }, + { + "type": "literal", + "value": "not.match" + }, { "type": "literal", "value": "not.eq" @@ -7587,6 +7591,10 @@ "type": "literal", "value": "not.is" }, + { + "type": "literal", + "value": "not.isdistinct" + }, { "type": "literal", "value": "not.in" @@ -7638,12 +7646,16 @@ { "type": "literal", "value": "not.wfts" + }, + { + "type": "literal", + "value": "not.imatch" } ] } }, { - "id": 410, + "id": 431, "name": "value", "variant": "param", "kind": 32768, @@ -7660,7 +7672,7 @@ } }, { - "id": 411, + "id": 432, "name": "filter", "variant": "signature", "kind": 4096, @@ -7668,14 +7680,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 588, + "line": 641, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L641" } ], "parameters": [ { - "id": 412, + "id": 433, "name": "column", "variant": "param", "kind": 32768, @@ -7686,7 +7698,7 @@ } }, { - "id": 413, + "id": 434, "name": "operator", "variant": "param", "kind": 32768, @@ -7697,7 +7709,7 @@ } }, { - "id": 414, + "id": 435, "name": "value", "variant": "param", "kind": 32768, @@ -7716,7 +7728,7 @@ ] }, { - "id": 477, + "id": 498, "name": "geojson", "variant": "declaration", "kind": 2048, @@ -7728,12 +7740,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "signatures": [ { - "id": 478, + "id": 499, "name": "geojson", "variant": "signature", "kind": 4096, @@ -7761,12 +7773,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -7802,14 +7814,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 637, + "target": 658, "name": "default.geojson" } } ], "inheritedFrom": { "type": "reference", - "target": 636, + "target": 657, "name": "default.geojson" } }, @@ -7868,21 +7880,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 134, + "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 135, + "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 142, + "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145" } ], "signatures": [ @@ -7895,9 +7907,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 134, + "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137" } ], "typeParameters": [ @@ -7968,9 +7980,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 135, + "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138" } ], "parameters": [ @@ -8059,21 +8071,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 147, + "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 148, + "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 155, + "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" } ], "signatures": [ @@ -8086,9 +8098,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 147, + "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150" } ], "typeParameters": [ @@ -8159,9 +8171,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 148, + "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151" } ], "parameters": [ @@ -8250,21 +8262,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 231, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 232, + "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 239, + "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242" } ], "signatures": [ @@ -8277,9 +8289,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 231, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234" } ], "typeParameters": [ @@ -8336,9 +8348,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 232, + "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235" } ], "parameters": [ @@ -8427,21 +8439,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 244, + "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 248, + "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 255, + "line": 258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258" } ], "signatures": [ @@ -8454,9 +8466,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 244, + "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247" } ], "typeParameters": [ @@ -8520,9 +8532,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 248, + "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251" } ], "parameters": [ @@ -8618,21 +8630,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 260, + "line": 263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 264, + "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 271, + "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274" } ], "signatures": [ @@ -8645,9 +8657,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 260, + "line": 263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263" } ], "typeParameters": [ @@ -8711,9 +8723,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 264, + "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267" } ], "parameters": [ @@ -8755,7 +8767,7 @@ ] }, { - "id": 297, + "id": 318, "name": "in", "variant": "declaration", "kind": 2048, @@ -8763,14 +8775,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 304, + "line": 357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357" } ], "signatures": [ { - "id": 298, + "id": 319, "name": "in", "variant": "signature", "kind": 4096, @@ -8802,14 +8814,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 304, + "line": 357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357" } ], "typeParameters": [ { - "id": 299, + "id": 320, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -8822,7 +8834,7 @@ ], "parameters": [ { - "id": 300, + "id": 321, "name": "column", "variant": "param", "kind": 32768, @@ -8837,14 +8849,14 @@ }, "type": { "type": "reference", - "target": 299, + "target": 320, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 301, + "id": 322, "name": "values", "variant": "param", "kind": 32768, @@ -8889,7 +8901,7 @@ }, { "type": "reference", - "target": 299, + "target": 320, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -8933,7 +8945,7 @@ }, { "type": "reference", - "target": 299, + "target": 320, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -8980,7 +8992,7 @@ ] }, { - "id": 289, + "id": 305, "name": "is", "variant": "declaration", "kind": 2048, @@ -9090,26 +9102,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 276, + "line": 307, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 280, + "line": 311, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 293, + "line": 324, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L324" } ], "signatures": [ { - "id": 290, + "id": 306, "name": "is", "variant": "signature", "kind": 4096, @@ -9117,14 +9129,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 276, + "line": 307, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307" } ], "typeParameters": [ { - "id": 291, + "id": 307, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -9137,21 +9149,21 @@ ], "parameters": [ { - "id": 292, + "id": 308, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 291, + "target": 307, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 293, + "id": 309, "name": "value", "variant": "param", "kind": 32768, @@ -9163,7 +9175,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 291, + "target": 307, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -9200,7 +9212,7 @@ } }, { - "id": 294, + "id": 310, "name": "is", "variant": "signature", "kind": 4096, @@ -9208,14 +9220,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 280, + "line": 311, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311" } ], "parameters": [ { - "id": 295, + "id": 311, "name": "column", "variant": "param", "kind": 32768, @@ -9226,7 +9238,7 @@ } }, { - "id": 296, + "id": 312, "name": "value", "variant": "param", "kind": 32768, @@ -9254,95 +9266,93 @@ ] }, { - "id": 241, - "name": "like", + "id": 313, + "name": "isDistinct", "variant": "declaration", "kind": 2048, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Match only rows where " - }, - { - "kind": "code", - "text": "`column`" - }, - { - "kind": "text", - "text": " matches " - }, - { - "kind": "code", - "text": "`pattern`" - }, - { - "kind": "text", - "text": " case-sensitively." - } - ], - "blockTags": [ - { - "tag": "@param", - "name": "column", - "content": [ - { - "kind": "text", - "text": "The column to filter on" - } - ] - }, - { - "tag": "@param", - "name": "pattern", - "content": [ - { - "kind": "text", - "text": "The pattern to match with" - } - ] - } - ] - }, "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 186, - "character": 2, - "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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187" - }, - { - "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 194, + "line": 339, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339" } ], "signatures": [ { - "id": 242, - "name": "like", + "id": 314, + "name": "isDistinct", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " IS DISTINCT FROM " + }, + { + "kind": "code", + "text": "`value`" + }, + { + "kind": "text", + "text": ".\n\nUnlike " + }, + { + "kind": "code", + "text": "`.neq()`" + }, + { + "kind": "text", + "text": ", this treats " + }, + { + "kind": "code", + "text": "`NULL`" + }, + { + "kind": "text", + "text": " as a comparable value. Two " + }, + { + "kind": "code", + "text": "`NULL`" + }, + { + "kind": "text", + "text": " values\nare considered equal (not distinct), and comparing " + }, + { + "kind": "code", + "text": "`NULL`" + }, + { + "kind": "text", + "text": " with any non-NULL\nvalue returns true (distinct)." + } + ] + }, "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 186, + "line": 339, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339" } ], "typeParameters": [ { - "id": 243, + "id": 315, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -9355,48 +9365,300 @@ ], "parameters": [ { - "id": 244, + "id": 316, "name": "column", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, "type": { "type": "reference", - "target": 243, + "target": 315, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 245, - "name": "pattern", + "id": 317, + "name": "value", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value to filter with" + } + ] + }, "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "this" - } - }, - { - "id": 246, - "name": "like", - "variant": "signature", - "kind": 4096, - "flags": {}, - "sources": [ + "type": "conditional", + "checkType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolveFilterValue" + }, + "typeArguments": [ + { + "type": "reference", + "target": 174, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 175, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 315, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "ResolveFilterValue", + "package": "@supabase/postgrest-js" + }, + "extendsType": { + "type": "intrinsic", + "name": "never" + }, + "trueType": { + "type": "intrinsic", + "name": "unknown" + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolveFilterValue" + }, + "typeArguments": [ + { + "type": "reference", + "target": 174, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 175, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 315, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "ResolveFilterValue", + "package": "@supabase/postgrest-js" + }, + "extendsType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolvedFilterValue" + }, + "name": "ResolvedFilterValue", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + }, + "trueType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolvedFilterValue" + }, + "name": "ResolvedFilterValue", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + } + ] + }, + { + "id": 241, + "name": "like", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " matches " + }, + { + "kind": "code", + "text": "`pattern`" + }, + { + "kind": "text", + "text": " case-sensitively." + } + ], + "blockTags": [ + { + "tag": "@param", + "name": "column", + "content": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, + { + "tag": "@param", + "name": "pattern", + "content": [ + { + "kind": "text", + "text": "The pattern to match with" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 189, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 190, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 197, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197" + } + ], + "signatures": [ + { + "id": 242, + "name": "like", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 189, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189" + } + ], + "typeParameters": [ + { + "id": 243, + "name": "ColumnName", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 244, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 243, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + }, + { + "id": 245, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + }, + { + "id": 246, + "name": "like", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 187, + "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190" } ], "parameters": [ @@ -9485,21 +9747,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 199, + "line": 202, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 203, + "line": 206, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 210, + "line": 213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213" } ], "signatures": [ @@ -9512,9 +9774,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 199, + "line": 202, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202" } ], "typeParameters": [ @@ -9578,9 +9840,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 203, + "line": 206, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206" } ], "parameters": [ @@ -9676,21 +9938,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 215, + "line": 218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 219, + "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 226, + "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229" } ], "signatures": [ @@ -9703,9 +9965,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 215, + "line": 218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218" } ], "typeParameters": [ @@ -9769,9 +10031,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 219, + "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" } ], "parameters": [ @@ -9813,7 +10075,7 @@ ] }, { - "id": 451, + "id": 472, "name": "limit", "variant": "declaration", "kind": 2048, @@ -9825,12 +10087,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "signatures": [ { - "id": 452, + "id": 473, "name": "limit", "variant": "signature", "kind": 4096, @@ -9858,12 +10120,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "parameters": [ { - "id": 453, + "id": 474, "name": "count", "variant": "param", "kind": 32768, @@ -9882,7 +10144,7 @@ } }, { - "id": 454, + "id": 475, "name": "options", "variant": "param", "kind": 32768, @@ -9898,14 +10160,14 @@ "type": { "type": "reflection", "declaration": { - "id": 455, + "id": 476, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 456, + "id": 477, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -9933,7 +10195,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -9942,7 +10204,7 @@ } }, { - "id": 457, + "id": 478, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -9962,7 +10224,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -9975,7 +10237,7 @@ "groups": [ { "title": "Properties", - "children": [456, 457] + "children": [477, 478] } ], "sources": [ @@ -9983,7 +10245,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ] } @@ -9997,14 +10259,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 611, + "target": 632, "name": "default.limit" } } ], "inheritedFrom": { "type": "reference", - "target": 610, + "target": 631, "name": "default.limit" } }, @@ -10063,21 +10325,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 160, + "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 161, + "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 168, + "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171" } ], "signatures": [ @@ -10090,9 +10352,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 160, + "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163" } ], "typeParameters": [ @@ -10163,9 +10425,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 161, + "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164" } ], "parameters": [ @@ -10254,21 +10516,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 173, + "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 174, + "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 181, + "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184" } ], "signatures": [ @@ -10281,9 +10543,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 173, + "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176" } ], "typeParameters": [ @@ -10354,9 +10616,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 174, + "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177" } ], "parameters": [ @@ -10391,7 +10653,7 @@ ] }, { - "id": 382, + "id": 403, "name": "match", "variant": "declaration", "kind": 2048, @@ -10435,26 +10697,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 516, + "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L569" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 517, + "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L570" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 525, + "line": 578, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L578" } ], "signatures": [ { - "id": 383, + "id": 404, "name": "match", "variant": "signature", "kind": 4096, @@ -10462,14 +10724,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 516, + "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L569" } ], "typeParameters": [ { - "id": 384, + "id": 405, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -10482,7 +10744,7 @@ ], "parameters": [ { - "id": 385, + "id": 406, "name": "query", "variant": "param", "kind": 32768, @@ -10496,7 +10758,7 @@ "typeArguments": [ { "type": "reference", - "target": 384, + "target": 405, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -10505,7 +10767,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 384, + "target": 405, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -10531,7 +10793,7 @@ } }, { - "id": 386, + "id": 407, "name": "match", "variant": "signature", "kind": 4096, @@ -10539,14 +10801,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 517, + "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L570" } ], "parameters": [ { - "id": 387, + "id": 408, "name": "query", "variant": "param", "kind": 32768, @@ -10580,7 +10842,7 @@ ] }, { - "id": 494, + "id": 515, "name": "maxAffected", "variant": "declaration", "kind": 2048, @@ -10592,12 +10854,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "signatures": [ { - "id": 495, + "id": 516, "name": "maxAffected", "variant": "signature", "kind": 4096, @@ -10617,12 +10879,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "parameters": [ { - "id": 496, + "id": 517, "name": "value", "variant": "param", "kind": 32768, @@ -10799,19 +11061,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 654, + "target": 675, "name": "default.maxAffected" } } ], "inheritedFrom": { "type": "reference", - "target": 653, + "target": 674, "name": "default.maxAffected" } }, { - "id": 472, + "id": 493, "name": "maybeSingle", "variant": "declaration", "kind": 2048, @@ -10823,12 +11085,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "signatures": [ { - "id": 473, + "id": 494, "name": "maybeSingle", "variant": "signature", "kind": 4096, @@ -10864,12 +11126,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "typeParameters": [ { - "id": 474, + "id": 495, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -10916,7 +11178,7 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -10935,7 +11197,7 @@ }, { "type": "reference", - "target": 474, + "target": 495, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -10949,14 +11211,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 632, + "target": 653, "name": "default.maybeSingle" } } ], "inheritedFrom": { "type": "reference", - "target": 631, + "target": 652, "name": "default.maybeSingle" } }, @@ -10969,9 +11231,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 122, + "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125" } ], "signatures": [ @@ -11008,9 +11270,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 122, + "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125" } ], "typeParameters": [ @@ -11179,7 +11441,7 @@ ] }, { - "id": 388, + "id": 409, "name": "not", "variant": "declaration", "kind": 2048, @@ -11243,26 +11505,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 532, + "line": 585, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L585" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 537, + "line": 590, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L590" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 551, + "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L604" } ], "signatures": [ { - "id": 389, + "id": 410, "name": "not", "variant": "signature", "kind": 4096, @@ -11270,14 +11532,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 532, + "line": 585, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L585" } ], "typeParameters": [ { - "id": 390, + "id": 411, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -11290,21 +11552,21 @@ ], "parameters": [ { - "id": 391, + "id": 412, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 390, + "target": 411, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 392, + "id": 413, "name": "operator", "variant": "param", "kind": 32768, @@ -11320,7 +11582,7 @@ } }, { - "id": 393, + "id": 414, "name": "value", "variant": "param", "kind": 32768, @@ -11329,7 +11591,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 390, + "target": 411, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -11351,7 +11613,7 @@ } }, { - "id": 394, + "id": 415, "name": "not", "variant": "signature", "kind": 4096, @@ -11359,14 +11621,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 537, + "line": 590, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L590" } ], "parameters": [ { - "id": 395, + "id": 416, "name": "column", "variant": "param", "kind": 32768, @@ -11377,7 +11639,7 @@ } }, { - "id": 396, + "id": 417, "name": "operator", "variant": "param", "kind": 32768, @@ -11388,7 +11650,7 @@ } }, { - "id": 397, + "id": 418, "name": "value", "variant": "param", "kind": 32768, @@ -11407,7 +11669,7 @@ ] }, { - "id": 398, + "id": 419, "name": "or", "variant": "declaration", "kind": 2048, @@ -11415,14 +11677,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 571, + "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "signatures": [ { - "id": 399, + "id": 420, "name": "or", "variant": "signature", "kind": 4096, @@ -11454,14 +11716,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 571, + "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "parameters": [ { - "id": 400, + "id": 421, "name": "filters", "variant": "param", "kind": 32768, @@ -11480,7 +11742,7 @@ } }, { - "id": 401, + "id": 422, "name": "options", "variant": "param", "kind": 32768, @@ -11496,14 +11758,14 @@ "type": { "type": "reflection", "declaration": { - "id": 402, + "id": 423, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 403, + "id": 424, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -11529,9 +11791,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 576, + "line": 629, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L629" } ], "type": { @@ -11540,7 +11802,7 @@ } }, { - "id": 404, + "id": 425, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -11558,9 +11820,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 576, + "line": 629, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L629" } ], "type": { @@ -11573,15 +11835,15 @@ "groups": [ { "title": "Properties", - "children": [403, 404] + "children": [424, 425] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 576, + "line": 629, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L629" } ] } @@ -11597,7 +11859,7 @@ ] }, { - "id": 420, + "id": 441, "name": "order", "variant": "declaration", "kind": 2048, @@ -11743,36 +12005,36 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "signatures": [ { - "id": 421, + "id": 442, "name": "order", "variant": "signature", "kind": 4096, @@ -11784,12 +12046,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" } ], "typeParameters": [ { - "id": 422, + "id": 443, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -11802,21 +12064,21 @@ ], "parameters": [ { - "id": 423, + "id": 444, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 422, + "target": 443, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 424, + "id": 445, "name": "options", "variant": "param", "kind": 32768, @@ -11826,14 +12088,14 @@ "type": { "type": "reflection", "declaration": { - "id": 425, + "id": 446, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 426, + "id": 447, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -11845,7 +12107,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -11854,7 +12116,7 @@ } }, { - "id": 427, + "id": 448, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -11866,7 +12128,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -11875,7 +12137,7 @@ } }, { - "id": 428, + "id": 449, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -11887,7 +12149,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -11899,7 +12161,7 @@ "groups": [ { "title": "Properties", - "children": [426, 427, 428] + "children": [447, 448, 449] } ], "sources": [ @@ -11907,7 +12169,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ] } @@ -11920,12 +12182,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 580, + "target": 601, "name": "default.order" } }, { - "id": 429, + "id": 450, "name": "order", "variant": "signature", "kind": 4096, @@ -11937,12 +12199,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" } ], "parameters": [ { - "id": 430, + "id": 451, "name": "column", "variant": "param", "kind": 32768, @@ -11953,7 +12215,7 @@ } }, { - "id": 431, + "id": 452, "name": "options", "variant": "param", "kind": 32768, @@ -11963,14 +12225,14 @@ "type": { "type": "reflection", "declaration": { - "id": 432, + "id": 453, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 433, + "id": 454, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -11982,7 +12244,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -11991,7 +12253,7 @@ } }, { - "id": 434, + "id": 455, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -12003,7 +12265,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -12012,7 +12274,7 @@ } }, { - "id": 435, + "id": 456, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -12024,7 +12286,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -12036,7 +12298,7 @@ "groups": [ { "title": "Properties", - "children": [433, 434, 435] + "children": [454, 455, 456] } ], "sources": [ @@ -12044,7 +12306,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ] } @@ -12057,12 +12319,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 588, + "target": 609, "name": "default.order" } }, { - "id": 436, + "id": 457, "name": "order", "variant": "signature", "kind": 4096, @@ -12100,12 +12362,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" } ], "typeParameters": [ { - "id": 437, + "id": 458, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -12118,21 +12380,21 @@ ], "parameters": [ { - "id": 438, + "id": 459, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 437, + "target": 458, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 439, + "id": 460, "name": "options", "variant": "param", "kind": 32768, @@ -12142,14 +12404,14 @@ "type": { "type": "reflection", "declaration": { - "id": 440, + "id": 461, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 441, + "id": 462, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -12161,7 +12423,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -12170,7 +12432,7 @@ } }, { - "id": 443, + "id": 464, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -12182,7 +12444,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -12191,7 +12453,7 @@ } }, { - "id": 442, + "id": 463, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -12203,7 +12465,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -12215,7 +12477,7 @@ "groups": [ { "title": "Properties", - "children": [441, 443, 442] + "children": [462, 464, 463] } ], "sources": [ @@ -12223,7 +12485,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ] } @@ -12236,12 +12498,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 595, + "target": 616, "name": "default.order" } }, { - "id": 444, + "id": 465, "name": "order", "variant": "signature", "kind": 4096, @@ -12279,12 +12541,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" } ], "parameters": [ { - "id": 445, + "id": 466, "name": "column", "variant": "param", "kind": 32768, @@ -12295,7 +12557,7 @@ } }, { - "id": 446, + "id": 467, "name": "options", "variant": "param", "kind": 32768, @@ -12305,14 +12567,14 @@ "type": { "type": "reflection", "declaration": { - "id": 447, + "id": 468, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 448, + "id": 469, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -12324,7 +12586,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -12333,7 +12595,7 @@ } }, { - "id": 450, + "id": 471, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -12345,7 +12607,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -12354,7 +12616,7 @@ } }, { - "id": 449, + "id": 470, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -12366,7 +12628,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -12378,7 +12640,7 @@ "groups": [ { "title": "Properties", - "children": [448, 450, 449] + "children": [469, 471, 470] } ], "sources": [ @@ -12386,7 +12648,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ] } @@ -12399,19 +12661,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 603, + "target": 624, "name": "default.order" } } ], "inheritedFrom": { "type": "reference", - "target": 579, + "target": 600, "name": "default.order" } }, { - "id": 358, + "id": 379, "name": "overlaps", "variant": "declaration", "kind": 2048, @@ -12465,26 +12727,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 455, + "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L508" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 459, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 467, + "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" } ], "signatures": [ { - "id": 359, + "id": 380, "name": "overlaps", "variant": "signature", "kind": 4096, @@ -12492,14 +12754,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 455, + "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L508" } ], "typeParameters": [ { - "id": 360, + "id": 381, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -12512,21 +12774,21 @@ ], "parameters": [ { - "id": 361, + "id": 382, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 360, + "target": 381, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 362, + "id": 383, "name": "value", "variant": "param", "kind": 32768, @@ -12547,7 +12809,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 360, + "target": 381, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -12573,7 +12835,7 @@ } }, { - "id": 363, + "id": 384, "name": "overlaps", "variant": "signature", "kind": 4096, @@ -12581,14 +12843,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 459, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" } ], "parameters": [ { - "id": 364, + "id": 385, "name": "column", "variant": "param", "kind": 32768, @@ -12599,7 +12861,7 @@ } }, { - "id": 365, + "id": 386, "name": "value", "variant": "param", "kind": 32768, @@ -12634,7 +12896,7 @@ ] }, { - "id": 531, + "id": 552, "name": "overrideTypes", "variant": "declaration", "kind": 2048, @@ -12646,12 +12908,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "signatures": [ { - "id": 532, + "id": 553, "name": "overrideTypes", "variant": "signature", "kind": 4096, @@ -12699,12 +12961,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "typeParameters": [ { - "id": 533, + "id": 554, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -12719,7 +12981,7 @@ } }, { - "id": 534, + "id": 555, "name": "Options", "variant": "typeParam", "kind": 131072, @@ -12735,14 +12997,14 @@ "type": { "type": "reflection", "declaration": { - "id": 535, + "id": 556, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 536, + "id": 557, "name": "merge", "variant": "declaration", "kind": 1024, @@ -12754,7 +13016,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -12766,7 +13028,7 @@ "groups": [ { "title": "Properties", - "children": [536] + "children": [557] } ], "sources": [ @@ -12774,7 +13036,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -12782,14 +13044,14 @@ "default": { "type": "reflection", "declaration": { - "id": 537, + "id": 558, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 538, + "id": 559, "name": "merge", "variant": "declaration", "kind": 1024, @@ -12799,7 +13061,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -12811,7 +13073,7 @@ "groups": [ { "title": "Properties", - "children": [538] + "children": [559] } ], "sources": [ @@ -12819,7 +13081,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -12828,7 +13090,7 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -12857,7 +13119,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -12919,7 +13181,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -12945,7 +13207,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -12965,7 +13227,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -12980,7 +13242,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -13007,7 +13269,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -13028,19 +13290,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 691, + "target": 712, "name": "default.overrideTypes" } } ], "inheritedFrom": { "type": "reference", - "target": 690, + "target": 711, "name": "default.overrideTypes" } }, { - "id": 458, + "id": 479, "name": "range", "variant": "declaration", "kind": 2048, @@ -13052,12 +13314,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "signatures": [ { - "id": 459, + "id": 480, "name": "range", "variant": "signature", "kind": 4096, @@ -13117,12 +13379,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "parameters": [ { - "id": 460, + "id": 481, "name": "from", "variant": "param", "kind": 32768, @@ -13141,7 +13403,7 @@ } }, { - "id": 461, + "id": 482, "name": "to", "variant": "param", "kind": 32768, @@ -13160,7 +13422,7 @@ } }, { - "id": 462, + "id": 483, "name": "options", "variant": "param", "kind": 32768, @@ -13176,14 +13438,14 @@ "type": { "type": "reflection", "declaration": { - "id": 463, + "id": 484, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 464, + "id": 485, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -13211,7 +13473,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -13220,7 +13482,7 @@ } }, { - "id": 465, + "id": 486, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -13240,7 +13502,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -13253,7 +13515,7 @@ "groups": [ { "title": "Properties", - "children": [464, 465] + "children": [485, 486] } ], "sources": [ @@ -13261,7 +13523,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ] } @@ -13275,19 +13537,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 618, + "target": 639, "name": "default.range" } } ], "inheritedFrom": { "type": "reference", - "target": 617, + "target": 638, "name": "default.range" } }, { - "id": 350, + "id": 371, "name": "rangeAdjacent", "variant": "declaration", "kind": 2048, @@ -13341,26 +13603,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 440, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 441, + "line": 494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L494" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 450, + "line": 503, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L503" } ], "signatures": [ { - "id": 351, + "id": 372, "name": "rangeAdjacent", "variant": "signature", "kind": 4096, @@ -13368,14 +13630,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 440, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493" } ], "typeParameters": [ { - "id": 352, + "id": 373, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -13388,21 +13650,21 @@ ], "parameters": [ { - "id": 353, + "id": 374, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 352, + "target": 373, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 354, + "id": 375, "name": "range", "variant": "param", "kind": 32768, @@ -13419,7 +13681,7 @@ } }, { - "id": 355, + "id": 376, "name": "rangeAdjacent", "variant": "signature", "kind": 4096, @@ -13427,14 +13689,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 441, + "line": 494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L494" } ], "parameters": [ { - "id": 356, + "id": 377, "name": "column", "variant": "param", "kind": 32768, @@ -13445,7 +13707,7 @@ } }, { - "id": 357, + "id": 378, "name": "range", "variant": "param", "kind": 32768, @@ -13464,7 +13726,7 @@ ] }, { - "id": 318, + "id": 339, "name": "rangeGt", "variant": "declaration", "kind": 2048, @@ -13518,26 +13780,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 382, + "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 383, + "line": 436, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L436" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 391, + "line": 444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L444" } ], "signatures": [ { - "id": 319, + "id": 340, "name": "rangeGt", "variant": "signature", "kind": 4096, @@ -13545,14 +13807,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 382, + "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435" } ], "typeParameters": [ { - "id": 320, + "id": 341, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -13565,21 +13827,21 @@ ], "parameters": [ { - "id": 321, + "id": 342, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 320, + "target": 341, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 322, + "id": 343, "name": "range", "variant": "param", "kind": 32768, @@ -13596,7 +13858,7 @@ } }, { - "id": 323, + "id": 344, "name": "rangeGt", "variant": "signature", "kind": 4096, @@ -13604,14 +13866,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 383, + "line": 436, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L436" } ], "parameters": [ { - "id": 324, + "id": 345, "name": "column", "variant": "param", "kind": 32768, @@ -13622,7 +13884,7 @@ } }, { - "id": 325, + "id": 346, "name": "range", "variant": "param", "kind": 32768, @@ -13641,7 +13903,7 @@ ] }, { - "id": 326, + "id": 347, "name": "rangeGte", "variant": "declaration", "kind": 2048, @@ -13703,26 +13965,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 396, + "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 397, + "line": 450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 406, + "line": 459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459" } ], "signatures": [ { - "id": 327, + "id": 348, "name": "rangeGte", "variant": "signature", "kind": 4096, @@ -13730,14 +13992,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 396, + "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449" } ], "typeParameters": [ { - "id": 328, + "id": 349, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -13750,21 +14012,21 @@ ], "parameters": [ { - "id": 329, + "id": 350, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 328, + "target": 349, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 330, + "id": 351, "name": "range", "variant": "param", "kind": 32768, @@ -13781,7 +14043,7 @@ } }, { - "id": 331, + "id": 352, "name": "rangeGte", "variant": "signature", "kind": 4096, @@ -13789,14 +14051,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 397, + "line": 450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450" } ], "parameters": [ { - "id": 332, + "id": 353, "name": "column", "variant": "param", "kind": 32768, @@ -13807,7 +14069,7 @@ } }, { - "id": 333, + "id": 354, "name": "range", "variant": "param", "kind": 32768, @@ -13826,7 +14088,7 @@ ] }, { - "id": 334, + "id": 355, "name": "rangeLt", "variant": "declaration", "kind": 2048, @@ -13880,26 +14142,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 411, + "line": 464, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 412, + "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L465" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 420, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L420" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L473" } ], "signatures": [ { - "id": 335, + "id": 356, "name": "rangeLt", "variant": "signature", "kind": 4096, @@ -13907,14 +14169,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 411, + "line": 464, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464" } ], "typeParameters": [ { - "id": 336, + "id": 357, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -13927,21 +14189,21 @@ ], "parameters": [ { - "id": 337, + "id": 358, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 336, + "target": 357, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 338, + "id": 359, "name": "range", "variant": "param", "kind": 32768, @@ -13958,7 +14220,7 @@ } }, { - "id": 339, + "id": 360, "name": "rangeLt", "variant": "signature", "kind": 4096, @@ -13966,14 +14228,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 412, + "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L465" } ], "parameters": [ { - "id": 340, + "id": 361, "name": "column", "variant": "param", "kind": 32768, @@ -13984,7 +14246,7 @@ } }, { - "id": 341, + "id": 362, "name": "range", "variant": "param", "kind": 32768, @@ -14003,7 +14265,7 @@ ] }, { - "id": 342, + "id": 363, "name": "rangeLte", "variant": "declaration", "kind": 2048, @@ -14065,26 +14327,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 425, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 426, + "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L479" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 435, + "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L488" } ], "signatures": [ { - "id": 343, + "id": 364, "name": "rangeLte", "variant": "signature", "kind": 4096, @@ -14092,14 +14354,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 425, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" } ], "typeParameters": [ { - "id": 344, + "id": 365, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -14112,21 +14374,21 @@ ], "parameters": [ { - "id": 345, + "id": 366, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 344, + "target": 365, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 346, + "id": 367, "name": "range", "variant": "param", "kind": 32768, @@ -14143,7 +14405,7 @@ } }, { - "id": 347, + "id": 368, "name": "rangeLte", "variant": "signature", "kind": 4096, @@ -14151,14 +14413,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 426, + "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L479" } ], "parameters": [ { - "id": 348, + "id": 369, "name": "column", "variant": "param", "kind": 32768, @@ -14169,7 +14431,7 @@ } }, { - "id": 349, + "id": 370, "name": "range", "variant": "param", "kind": 32768, @@ -14188,129 +14450,499 @@ ] }, { - "id": 491, - "name": "returns", + "id": 297, + "name": "regexIMatch", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " matches the PostgreSQL regex " + }, + { + "kind": "code", + "text": "`pattern`" + }, + { + "kind": "text", + "text": "\ncase-insensitively (using the " + }, + { + "kind": "code", + "text": "`~*`" + }, + { + "kind": "text", + "text": " operator)." + } + ], + "blockTags": [ + { + "tag": "@param", + "name": "column", + "content": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, + { + "tag": "@param", + "name": "pattern", + "content": [ + { + "kind": "text", + "text": "The PostgreSQL regular expression pattern to match with" + } + ] + } + ] }, "sources": [ { - "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", - "line": 333, + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 293, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 294, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302" } ], "signatures": [ { - "id": 492, - "name": "returns", + "id": 298, + "name": "regexIMatch", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Override the type of the returned " - }, - { - "kind": "code", - "text": "`data`" - }, - { - "kind": "text", - "text": "." - } - ], - "blockTags": [ - { - "tag": "@deprecated", - "content": [ - { - "kind": "text", - "text": "Use overrideTypes() method at the end of your call chain instead" - } - ] - } - ] - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", - "line": 333, + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 293, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293" } ], "typeParameters": [ { - "id": 493, - "name": "NewResult", + "id": 299, + "name": "ColumnName", "variant": "typeParam", "kind": 131072, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The new result type to override with" - } - ] + "type": { + "type": "intrinsic", + "name": "string" } } ], - "type": { - "type": "reference", - "target": 546, - "typeArguments": [ - { - "type": "reference", - "target": 173, - "name": "ClientOptions", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.ClientOptions", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 174, - "name": "Schema", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.Schema", - "refersToTypeParameter": true - }, - { + "parameters": [ + { + "id": 300, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { "type": "reference", - "target": 175, - "name": "Row", + "target": 299, + "name": "ColumnName", "package": "@supabase/postgrest-js", - "qualifiedName": "default.Row", "refersToTypeParameter": true - }, - { - "type": "reference", - "target": { - "sourceFileName": "src/types/types.ts", - "qualifiedName": "CheckMatchingArrayTypes" - }, - "typeArguments": [ - { - "type": "reference", - "target": 176, - "name": "Result", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.Result", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 493, - "name": "NewResult", + } + }, + { + "id": 301, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + }, + { + "id": 302, + "name": "regexIMatch", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 294, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + } + ], + "parameters": [ + { + "id": 303, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 304, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + } + ] + }, + { + "id": 289, + "name": "regexMatch", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " matches the PostgreSQL regex " + }, + { + "kind": "code", + "text": "`pattern`" + }, + { + "kind": "text", + "text": "\ncase-sensitively (using the " + }, + { + "kind": "code", + "text": "`~`" + }, + { + "kind": "text", + "text": " operator)." + } + ], + "blockTags": [ + { + "tag": "@param", + "name": "column", + "content": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, + { + "tag": "@param", + "name": "pattern", + "content": [ + { + "kind": "text", + "text": "The PostgreSQL regular expression pattern to match with" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 279, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 280, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 288, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L288" + } + ], + "signatures": [ + { + "id": 290, + "name": "regexMatch", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 279, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279" + } + ], + "typeParameters": [ + { + "id": 291, + "name": "ColumnName", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 292, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 291, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + }, + { + "id": 293, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + }, + { + "id": 294, + "name": "regexMatch", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 280, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + } + ], + "parameters": [ + { + "id": 295, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 296, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + } + ] + }, + { + "id": 512, + "name": "returns", + "variant": "declaration", + "kind": 2048, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", + "line": 333, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + } + ], + "signatures": [ + { + "id": 513, + "name": "returns", + "variant": "signature", + "kind": 4096, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Override the type of the returned " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": "." + } + ], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Use overrideTypes() method at the end of your call chain instead" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", + "line": 333, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + } + ], + "typeParameters": [ + { + "id": 514, + "name": "NewResult", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new result type to override with" + } + ] + } + } + ], + "type": { + "type": "reference", + "target": 567, + "typeArguments": [ + { + "type": "reference", + "target": 173, + "name": "ClientOptions", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.ClientOptions", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 174, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 175, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/types/types.ts", + "qualifiedName": "CheckMatchingArrayTypes" + }, + "typeArguments": [ + { + "type": "reference", + "target": 176, + "name": "Result", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Result", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 514, + "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } @@ -14349,19 +14981,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 651, + "target": 672, "name": "default.returns" } } ], "inheritedFrom": { "type": "reference", - "target": 650, + "target": 671, "name": "default.returns" } }, { - "id": 489, + "id": 510, "name": "rollback", "variant": "declaration", "kind": 2048, @@ -14373,12 +15005,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ { - "id": 490, + "id": 511, "name": "rollback", "variant": "signature", "kind": 4096, @@ -14406,7 +15038,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "type": { @@ -14415,19 +15047,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 649, + "target": 670, "name": "default.rollback" } } ], "inheritedFrom": { "type": "reference", - "target": 648, + "target": 669, "name": "default.rollback" } }, { - "id": 415, + "id": 436, "name": "select", "variant": "declaration", "kind": 2048, @@ -14439,12 +15071,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "signatures": [ { - "id": 416, + "id": 437, "name": "select", "variant": "signature", "kind": 4096, @@ -14504,12 +15136,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "typeParameters": [ { - "id": 417, + "id": 438, "name": "Query", "variant": "typeParam", "kind": 131072, @@ -14524,14 +15156,14 @@ } }, { - "id": 418, + "id": 439, "name": "NewResultOne", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 811, + "target": 832, "typeArguments": [ { "type": "reference", @@ -14567,7 +15199,7 @@ }, { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14588,7 +15220,7 @@ ], "parameters": [ { - "id": 419, + "id": 440, "name": "columns", "variant": "param", "kind": 32768, @@ -14605,7 +15237,7 @@ }, "type": { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14675,7 +15307,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14683,7 +15315,7 @@ }, "falseType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14693,7 +15325,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14731,19 +15363,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 575, + "target": 596, "name": "default.select" } } ], "inheritedFrom": { "type": "reference", - "target": 574, + "target": 595, "name": "default.select" } }, { - "id": 515, + "id": 536, "name": "setHeader", "variant": "declaration", "kind": 2048, @@ -14755,12 +15387,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "signatures": [ { - "id": 516, + "id": 537, "name": "setHeader", "variant": "signature", "kind": 4096, @@ -14780,12 +15412,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "parameters": [ { - "id": 517, + "id": 538, "name": "name", "variant": "param", "kind": 32768, @@ -14796,7 +15428,7 @@ } }, { - "id": 518, + "id": 539, "name": "value", "variant": "param", "kind": 32768, @@ -14813,19 +15445,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 675, + "target": 696, "name": "default.setHeader" } } ], "inheritedFrom": { "type": "reference", - "target": 674, + "target": 695, "name": "default.setHeader" } }, { - "id": 469, + "id": 490, "name": "single", "variant": "declaration", "kind": 2048, @@ -14837,12 +15469,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "signatures": [ { - "id": 470, + "id": 491, "name": "single", "variant": "signature", "kind": 4096, @@ -14878,12 +15510,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "typeParameters": [ { - "id": 471, + "id": 492, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -14930,7 +15562,7 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -14942,7 +15574,7 @@ }, { "type": "reference", - "target": 471, + "target": 492, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14954,19 +15586,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 629, + "target": 650, "name": "default.single" } } ], "inheritedFrom": { "type": "reference", - "target": 628, + "target": 649, "name": "default.single" } }, { - "id": 366, + "id": 387, "name": "textSearch", "variant": "declaration", "kind": 2048, @@ -15058,26 +15690,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 478, + "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 483, + "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 498, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" } ], "signatures": [ { - "id": 367, + "id": 388, "name": "textSearch", "variant": "signature", "kind": 4096, @@ -15085,14 +15717,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 478, + "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" } ], "typeParameters": [ { - "id": 368, + "id": 389, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -15105,21 +15737,21 @@ ], "parameters": [ { - "id": 369, + "id": 390, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 368, + "target": 389, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 370, + "id": 391, "name": "query", "variant": "param", "kind": 32768, @@ -15130,7 +15762,7 @@ } }, { - "id": 371, + "id": 392, "name": "options", "variant": "param", "kind": 32768, @@ -15140,14 +15772,14 @@ "type": { "type": "reflection", "declaration": { - "id": 372, + "id": 393, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 373, + "id": 394, "name": "config", "variant": "declaration", "kind": 1024, @@ -15157,9 +15789,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 481, + "line": 534, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L534" } ], "type": { @@ -15168,7 +15800,7 @@ } }, { - "id": 374, + "id": 395, "name": "type", "variant": "declaration", "kind": 1024, @@ -15178,9 +15810,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 481, + "line": 534, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L534" } ], "type": { @@ -15205,15 +15837,15 @@ "groups": [ { "title": "Properties", - "children": [373, 374] + "children": [394, 395] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 481, + "line": 534, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L534" } ] } @@ -15226,7 +15858,7 @@ } }, { - "id": 375, + "id": 396, "name": "textSearch", "variant": "signature", "kind": 4096, @@ -15234,14 +15866,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 483, + "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536" } ], "parameters": [ { - "id": 376, + "id": 397, "name": "column", "variant": "param", "kind": 32768, @@ -15252,7 +15884,7 @@ } }, { - "id": 377, + "id": 398, "name": "query", "variant": "param", "kind": 32768, @@ -15263,7 +15895,7 @@ } }, { - "id": 378, + "id": 399, "name": "options", "variant": "param", "kind": 32768, @@ -15273,14 +15905,14 @@ "type": { "type": "reflection", "declaration": { - "id": 379, + "id": 400, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 380, + "id": 401, "name": "config", "variant": "declaration", "kind": 1024, @@ -15290,9 +15922,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 486, + "line": 539, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ], "type": { @@ -15301,7 +15933,7 @@ } }, { - "id": 381, + "id": 402, "name": "type", "variant": "declaration", "kind": 1024, @@ -15311,9 +15943,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 486, + "line": 539, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ], "type": { @@ -15338,15 +15970,15 @@ "groups": [ { "title": "Properties", - "children": [380, 381] + "children": [401, 402] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 486, + "line": 539, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ] } @@ -15361,7 +15993,7 @@ ] }, { - "id": 519, + "id": 540, "name": "then", "variant": "declaration", "kind": 2048, @@ -15373,12 +16005,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "signatures": [ { - "id": 520, + "id": 541, "name": "then", "variant": "signature", "kind": 4096, @@ -15409,19 +16041,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "typeParameters": [ { - "id": 521, + "id": 542, "name": "TResult1", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", @@ -15437,7 +16069,7 @@ } }, { - "id": 522, + "id": 543, "name": "TResult2", "variant": "typeParam", "kind": 131072, @@ -15450,7 +16082,7 @@ ], "parameters": [ { - "id": 523, + "id": 544, "name": "onfulfilled", "variant": "param", "kind": 32768, @@ -15475,7 +16107,7 @@ { "type": "reflection", "declaration": { - "id": 524, + "id": 545, "name": "__type", "variant": "declaration", "kind": 65536, @@ -15485,12 +16117,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "signatures": [ { - "id": 525, + "id": 546, "name": "__type", "variant": "signature", "kind": 4096, @@ -15500,19 +16132,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "parameters": [ { - "id": 526, + "id": 547, "name": "value", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", @@ -15533,7 +16165,7 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -15547,7 +16179,7 @@ "typeArguments": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -15566,7 +16198,7 @@ } }, { - "id": 527, + "id": 548, "name": "onrejected", "variant": "param", "kind": 32768, @@ -15591,7 +16223,7 @@ { "type": "reflection", "declaration": { - "id": 528, + "id": 549, "name": "__type", "variant": "declaration", "kind": 65536, @@ -15601,12 +16233,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "signatures": [ { - "id": 529, + "id": 550, "name": "__type", "variant": "signature", "kind": 4096, @@ -15616,12 +16248,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "parameters": [ { - "id": 530, + "id": 551, "name": "reason", "variant": "param", "kind": 32768, @@ -15637,7 +16269,7 @@ "types": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -15651,7 +16283,7 @@ "typeArguments": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -15682,14 +16314,14 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -15702,19 +16334,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 679, + "target": 700, "name": "default.then" } } ], "inheritedFrom": { "type": "reference", - "target": 678, + "target": 699, "name": "default.then" } }, { - "id": 513, + "id": 534, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -15726,12 +16358,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "signatures": [ { - "id": 514, + "id": 535, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -15757,7 +16389,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -15830,7 +16462,7 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -15861,14 +16493,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 673, + "target": 694, "name": "default.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 672, + "target": 693, "name": "default.throwOnError" } } @@ -15880,41 +16512,41 @@ }, { "title": "Properties", - "children": [501, 504, 499, 512, 497, 500, 502, 503, 498] + "children": [522, 525, 520, 533, 518, 521, 523, 524, 519] }, { "title": "Methods", "children": [ - 466, 310, 302, 475, 198, 479, 405, 477, 209, 217, 265, 273, 281, 297, 289, 241, 249, - 257, 451, 225, 233, 382, 494, 472, 204, 388, 398, 420, 358, 531, 458, 350, 318, 326, - 334, 342, 491, 489, 415, 515, 469, 366, 519, 513 + 487, 331, 323, 496, 198, 500, 426, 498, 209, 217, 265, 273, 281, 318, 305, 313, 241, + 249, 257, 472, 225, 233, 403, 515, 493, 204, 409, 419, 441, 379, 552, 479, 371, 339, + 347, 355, 363, 297, 289, 512, 510, 436, 536, 490, 387, 540, 534 ] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 76, + "line": 79, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L79" } ], "typeParameters": [ { - "id": 539, + "id": 560, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 540, + "id": 561, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -15930,7 +16562,7 @@ } }, { - "id": 541, + "id": 562, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -15956,14 +16588,14 @@ } }, { - "id": 542, + "id": 563, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 543, + "id": 564, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -15974,7 +16606,7 @@ } }, { - "id": 544, + "id": 565, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -15985,7 +16617,7 @@ } }, { - "id": 545, + "id": 566, "name": "Method", "variant": "typeParam", "kind": 131072, @@ -15999,7 +16631,7 @@ "extendedTypes": [ { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", @@ -16081,7 +16713,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" } ], "signatures": [ @@ -16115,7 +16747,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" } ], "typeParameters": [ @@ -16127,7 +16759,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -16225,7 +16857,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ], "type": { @@ -16251,7 +16883,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ] } @@ -16318,7 +16950,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 46, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46" } ], "type": { @@ -16547,7 +17179,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 44, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44" } ], "type": { @@ -16574,7 +17206,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 45, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45" } ], "type": { @@ -16594,7 +17226,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 43, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43" } ] } @@ -16666,7 +17298,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" } ], "type": { @@ -16893,7 +17525,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" } ], "type": { @@ -16919,7 +17551,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" } ], "type": { @@ -16940,7 +17572,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" } ], "type": { @@ -16964,7 +17596,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18" } ], "type": { @@ -16986,9 +17618,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 429, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L478" } ], "signatures": [ @@ -17017,9 +17649,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 429, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L478" } ], "parameters": [ @@ -17097,9 +17729,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 432, + "line": 481, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L481" } ], "type": { @@ -17130,9 +17762,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 431, + "line": 480, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L480" } ] } @@ -17316,19 +17948,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189" } ], "signatures": [ @@ -17343,7 +17975,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134" } ], "typeParameters": [ @@ -17419,7 +18051,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 137, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137" } ], "type": { @@ -17452,7 +18084,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 136, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136" } ] } @@ -17535,7 +18167,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148" } ], "typeParameters": [ @@ -17614,7 +18246,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151" } ], "type": { @@ -17648,7 +18280,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152" } ], "type": { @@ -17668,7 +18300,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 150, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150" } ] } @@ -17753,7 +18385,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "signatures": [ @@ -17776,7 +18408,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "typeParameters": [ @@ -17803,7 +18435,7 @@ "flags": {}, "default": { "type": "reference", - "target": 811, + "target": 832, "typeArguments": [ { "type": "reference", @@ -17972,7 +18604,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 90, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90" } ], "type": { @@ -18030,7 +18662,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 89, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89" } ], "type": { @@ -18050,7 +18682,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 88, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88" } ] } @@ -18139,9 +18771,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 379, + "line": 428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L428" } ], "signatures": [ @@ -18170,9 +18802,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 379, + "line": 428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L428" } ], "typeParameters": [ @@ -18300,9 +18932,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 384, + "line": 433, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L433" } ], "type": { @@ -18333,9 +18965,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 383, + "line": 432, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432" } ] } @@ -18603,6 +19235,26 @@ "text": ". This also only applies when doing bulk upserts." } ] + }, + { + "tag": "@example", + "name": "Upsert a single row using a unique key", + "content": [ + { + "kind": "code", + "text": "```ts\n// Upserting a single row, overwriting based on the 'username' unique column\nconst { data, error } = await supabase\n .from('users')\n .upsert({ username: 'supabot' }, { onConflict: 'username' })\n\n// Example response:\n// {\n// data: [\n// { id: 4, message: 'bar', username: 'supabot' }\n// ],\n// error: null\n// }\n```" + } + ] + }, + { + "tag": "@example", + "name": "Upsert with conflict resolution and exact row counting", + "content": [ + { + "kind": "code", + "text": "```ts\n// Upserting and returning exact count\nconst { data, error, count } = await supabase\n .from('users')\n .upsert(\n {\n id: 3,\n message: 'foo',\n username: 'supabot'\n },\n {\n onConflict: 'username',\n count: 'exact'\n }\n )\n\n// Example response:\n// {\n// data: [\n// {\n// id: 42,\n// handle: \"saoirse\",\n// display_name: \"Saoirse\"\n// }\n// ],\n// count: 1,\n// error: null\n// }\n```" + } + ] } ] }, @@ -18611,19 +19263,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 306, + "line": 355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L306" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L355" } ], "signatures": [ @@ -18638,7 +19290,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235" } ], "typeParameters": [ @@ -18714,7 +19366,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 240, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240" } ], "type": { @@ -18748,7 +19400,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 239, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239" } ], "type": { @@ -18769,7 +19421,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 238, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238" } ], "type": { @@ -18789,7 +19441,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 237, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237" } ] } @@ -18872,7 +19524,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" } ], "typeParameters": [ @@ -18951,7 +19603,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 256, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256" } ], "type": { @@ -18985,7 +19637,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 257, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257" } ], "type": { @@ -19006,7 +19658,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 255, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255" } ], "type": { @@ -19027,7 +19679,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 254, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254" } ], "type": { @@ -19047,7 +19699,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 253, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253" } ] } @@ -19141,7 +19793,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 11, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11" } ], "typeParameters": [ @@ -19153,7 +19805,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -19251,7 +19903,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ], "type": { @@ -19271,7 +19923,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ] } @@ -19295,14 +19947,14 @@ ] }, { - "id": 546, + "id": 567, "name": "PostgrestTransformBuilder", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 547, + "id": 568, "name": "constructor", "variant": "declaration", "kind": 512, @@ -19312,12 +19964,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "signatures": [ { - "id": 548, + "id": 569, "name": "PostgrestTransformBuilder", "variant": "signature", "kind": 16384, @@ -19346,25 +19998,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "typeParameters": [ { - "id": 549, + "id": 570, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 550, + "id": 571, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -19380,7 +20032,7 @@ } }, { - "id": 551, + "id": 572, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -19406,14 +20058,14 @@ } }, { - "id": 552, + "id": 573, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 553, + "id": 574, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -19424,7 +20076,7 @@ } }, { - "id": 554, + "id": 575, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -19435,7 +20087,7 @@ } }, { - "id": 555, + "id": 576, "name": "Method", "variant": "typeParam", "kind": 131072, @@ -19448,7 +20100,7 @@ ], "parameters": [ { - "id": 556, + "id": 577, "name": "builder", "variant": "param", "kind": 32768, @@ -19456,14 +20108,14 @@ "type": { "type": "reflection", "declaration": { - "id": 557, + "id": 578, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 562, + "id": 583, "name": "body", "variant": "declaration", "kind": 1024, @@ -19475,7 +20127,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 49, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" } ], "type": { @@ -19484,7 +20136,7 @@ } }, { - "id": 565, + "id": 586, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -19496,13 +20148,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 52, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" } ], "type": { "type": "reflection", "declaration": { - "id": 566, + "id": 587, "name": "__type", "variant": "declaration", "kind": 65536, @@ -19521,7 +20173,7 @@ ], "signatures": [ { - "id": 567, + "id": 588, "name": "__type", "variant": "signature", "kind": 4096, @@ -19543,7 +20195,7 @@ ], "parameters": [ { - "id": 568, + "id": 589, "name": "input", "variant": "param", "kind": 32768, @@ -19573,7 +20225,7 @@ } }, { - "id": 569, + "id": 590, "name": "init", "variant": "param", "kind": 32768, @@ -19613,7 +20265,7 @@ } }, { - "id": 570, + "id": 591, "name": "__type", "variant": "signature", "kind": 4096, @@ -19635,7 +20287,7 @@ ], "parameters": [ { - "id": 571, + "id": 592, "name": "input", "variant": "param", "kind": 32768, @@ -19669,7 +20321,7 @@ } }, { - "id": 572, + "id": 593, "name": "init", "variant": "param", "kind": 32768, @@ -19713,7 +20365,7 @@ } }, { - "id": 560, + "id": 581, "name": "headers", "variant": "declaration", "kind": 1024, @@ -19723,7 +20375,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 47, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" } ], "type": { @@ -19737,7 +20389,7 @@ } }, { - "id": 573, + "id": 594, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -19749,7 +20401,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 53, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" } ], "type": { @@ -19758,7 +20410,7 @@ } }, { - "id": 558, + "id": 579, "name": "method", "variant": "declaration", "kind": 1024, @@ -19768,7 +20420,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 45, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" } ], "type": { @@ -19798,7 +20450,7 @@ } }, { - "id": 561, + "id": 582, "name": "schema", "variant": "declaration", "kind": 1024, @@ -19810,7 +20462,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 48, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" } ], "type": { @@ -19819,7 +20471,7 @@ } }, { - "id": 563, + "id": 584, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -19831,7 +20483,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 50, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" } ], "type": { @@ -19840,7 +20492,7 @@ } }, { - "id": 564, + "id": 585, "name": "signal", "variant": "declaration", "kind": 1024, @@ -19852,7 +20504,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 51, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" } ], "type": { @@ -19866,7 +20518,7 @@ } }, { - "id": 559, + "id": 580, "name": "url", "variant": "declaration", "kind": 1024, @@ -19876,7 +20528,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" } ], "type": { @@ -19893,7 +20545,7 @@ "groups": [ { "title": "Properties", - "children": [562, 565, 560, 573, 558, 561, 563, 564, 559] + "children": [583, 586, 581, 594, 579, 582, 584, 585, 580] } ], "sources": [ @@ -19901,7 +20553,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ] } @@ -19910,11 +20562,11 @@ ], "type": { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -19922,7 +20574,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -19930,7 +20582,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -19938,7 +20590,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -19946,7 +20598,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -19954,7 +20606,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -19962,7 +20614,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -19975,19 +20627,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 707, + "target": 728, "name": "default.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 706, + "target": 727, "name": "default.constructor" } }, { - "id": 660, + "id": 681, "name": "body", "variant": "declaration", "kind": 1024, @@ -20001,7 +20653,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 25, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" } ], "type": { @@ -20010,12 +20662,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 733, + "target": 754, "name": "default.body" } }, { - "id": 663, + "id": 684, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -20028,13 +20680,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" } ], "type": { "type": "reflection", "declaration": { - "id": 664, + "id": 685, "name": "__type", "variant": "declaration", "kind": 65536, @@ -20053,7 +20705,7 @@ ], "signatures": [ { - "id": 665, + "id": 686, "name": "__type", "variant": "signature", "kind": 4096, @@ -20075,7 +20727,7 @@ ], "parameters": [ { - "id": 666, + "id": 687, "name": "input", "variant": "param", "kind": 32768, @@ -20105,7 +20757,7 @@ } }, { - "id": 667, + "id": 688, "name": "init", "variant": "param", "kind": 32768, @@ -20145,7 +20797,7 @@ } }, { - "id": 668, + "id": 689, "name": "__type", "variant": "signature", "kind": 4096, @@ -20167,7 +20819,7 @@ ], "parameters": [ { - "id": 669, + "id": 690, "name": "input", "variant": "param", "kind": 32768, @@ -20201,7 +20853,7 @@ } }, { - "id": 670, + "id": 691, "name": "init", "variant": "param", "kind": 32768, @@ -20245,12 +20897,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 736, + "target": 757, "name": "default.fetch" } }, { - "id": 658, + "id": 679, "name": "headers", "variant": "declaration", "kind": 1024, @@ -20263,7 +20915,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 23, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" } ], "type": { @@ -20277,12 +20929,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 731, + "target": 752, "name": "default.headers" } }, { - "id": 671, + "id": 692, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -20295,7 +20947,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" } ], "type": { @@ -20304,12 +20956,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 744, + "target": 765, "name": "default.isMaybeSingle" } }, { - "id": 656, + "id": 677, "name": "method", "variant": "declaration", "kind": 1024, @@ -20322,7 +20974,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" } ], "type": { @@ -20352,12 +21004,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 729, + "target": 750, "name": "default.method" } }, { - "id": 659, + "id": 680, "name": "schema", "variant": "declaration", "kind": 1024, @@ -20371,7 +21023,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" } ], "type": { @@ -20380,12 +21032,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 732, + "target": 753, "name": "default.schema" } }, { - "id": 661, + "id": 682, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -20398,7 +21050,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 26, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" } ], "type": { @@ -20408,12 +21060,12 @@ "defaultValue": "false", "inheritedFrom": { "type": "reference", - "target": 734, + "target": 755, "name": "default.shouldThrowOnError" } }, { - "id": 662, + "id": 683, "name": "signal", "variant": "declaration", "kind": 1024, @@ -20427,7 +21079,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 27, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" } ], "type": { @@ -20441,12 +21093,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 735, + "target": 756, "name": "default.signal" } }, { - "id": 657, + "id": 678, "name": "url", "variant": "declaration", "kind": 1024, @@ -20459,7 +21111,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" } ], "type": { @@ -20473,12 +21125,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 730, + "target": 751, "name": "default.url" } }, { - "id": 625, + "id": 646, "name": "abortSignal", "variant": "declaration", "kind": 2048, @@ -20488,12 +21140,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "signatures": [ { - "id": 626, + "id": 647, "name": "abortSignal", "variant": "signature", "kind": 4096, @@ -20511,12 +21163,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "parameters": [ { - "id": 627, + "id": 648, "name": "signal", "variant": "param", "kind": 32768, @@ -20548,7 +21200,7 @@ ] }, { - "id": 634, + "id": 655, "name": "csv", "variant": "declaration", "kind": 2048, @@ -20558,12 +21210,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "signatures": [ { - "id": 635, + "id": 656, "name": "csv", "variant": "signature", "kind": 4096, @@ -20589,16 +21241,16 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -20617,7 +21269,7 @@ ] }, { - "id": 638, + "id": 659, "name": "explain", "variant": "declaration", "kind": 2048, @@ -20627,12 +21279,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "signatures": [ { - "id": 639, + "id": 660, "name": "explain", "variant": "signature", "kind": 4096, @@ -20658,12 +21310,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "parameters": [ { - "id": 640, + "id": 661, "name": "options", "variant": "param", "kind": 32768, @@ -20679,14 +21331,14 @@ "type": { "type": "reflection", "declaration": { - "id": 641, + "id": 662, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 642, + "id": 663, "name": "analyze", "variant": "declaration", "kind": 1024, @@ -20714,7 +21366,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 288, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" } ], "type": { @@ -20724,7 +21376,7 @@ "defaultValue": "false" }, { - "id": 645, + "id": 666, "name": "buffers", "variant": "declaration", "kind": 1024, @@ -20752,7 +21404,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 291, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" } ], "type": { @@ -20762,7 +21414,7 @@ "defaultValue": "false" }, { - "id": 647, + "id": 668, "name": "format", "variant": "declaration", "kind": 1024, @@ -20794,7 +21446,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 293, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" } ], "type": { @@ -20813,7 +21465,7 @@ "defaultValue": "'text'" }, { - "id": 644, + "id": 665, "name": "settings", "variant": "declaration", "kind": 1024, @@ -20841,7 +21493,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 290, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" } ], "type": { @@ -20851,7 +21503,7 @@ "defaultValue": "false" }, { - "id": 643, + "id": 664, "name": "verbose", "variant": "declaration", "kind": 1024, @@ -20887,7 +21539,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 289, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" } ], "type": { @@ -20897,7 +21549,7 @@ "defaultValue": "false" }, { - "id": 646, + "id": 667, "name": "wal", "variant": "declaration", "kind": 1024, @@ -20925,7 +21577,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 292, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" } ], "type": { @@ -20938,7 +21590,7 @@ "groups": [ { "title": "Properties", - "children": [642, 645, 647, 644, 643, 646] + "children": [663, 666, 668, 665, 664, 667] } ], "sources": [ @@ -20946,7 +21598,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 287, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" } ] } @@ -20959,11 +21611,11 @@ "types": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -20984,11 +21636,11 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -21031,7 +21683,7 @@ ] }, { - "id": 636, + "id": 657, "name": "geojson", "variant": "declaration", "kind": 2048, @@ -21041,12 +21693,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "signatures": [ { - "id": 637, + "id": 658, "name": "geojson", "variant": "signature", "kind": 4096, @@ -21072,16 +21724,16 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -21115,7 +21767,7 @@ ] }, { - "id": 610, + "id": 631, "name": "limit", "variant": "declaration", "kind": 2048, @@ -21125,12 +21777,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "signatures": [ { - "id": 611, + "id": 632, "name": "limit", "variant": "signature", "kind": 4096, @@ -21156,12 +21808,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "parameters": [ { - "id": 612, + "id": 633, "name": "count", "variant": "param", "kind": 32768, @@ -21180,7 +21832,7 @@ } }, { - "id": 613, + "id": 634, "name": "options", "variant": "param", "kind": 32768, @@ -21196,14 +21848,14 @@ "type": { "type": "reflection", "declaration": { - "id": 614, + "id": 635, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 615, + "id": 636, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -21231,7 +21883,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -21240,7 +21892,7 @@ } }, { - "id": 616, + "id": 637, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -21260,7 +21912,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -21273,7 +21925,7 @@ "groups": [ { "title": "Properties", - "children": [615, 616] + "children": [636, 637] } ], "sources": [ @@ -21281,7 +21933,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ] } @@ -21297,7 +21949,7 @@ ] }, { - "id": 653, + "id": 674, "name": "maxAffected", "variant": "declaration", "kind": 2048, @@ -21307,12 +21959,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "signatures": [ { - "id": 654, + "id": 675, "name": "maxAffected", "variant": "signature", "kind": 4096, @@ -21330,12 +21982,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "parameters": [ { - "id": 655, + "id": 676, "name": "value", "variant": "param", "kind": 32768, @@ -21371,7 +22023,7 @@ }, "objectType": { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -21390,7 +22042,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -21415,11 +22067,11 @@ }, "trueType": { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -21427,7 +22079,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -21435,7 +22087,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -21443,7 +22095,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -21451,7 +22103,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -21459,7 +22111,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -21467,7 +22119,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -21514,7 +22166,7 @@ ] }, { - "id": 631, + "id": 652, "name": "maybeSingle", "variant": "declaration", "kind": 2048, @@ -21524,12 +22176,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "signatures": [ { - "id": 632, + "id": 653, "name": "maybeSingle", "variant": "signature", "kind": 4096, @@ -21563,12 +22215,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "typeParameters": [ { - "id": 633, + "id": 654, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -21577,7 +22229,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -21615,11 +22267,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -21634,7 +22286,7 @@ }, { "type": "reference", - "target": 474, + "target": 495, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -21650,7 +22302,7 @@ ] }, { - "id": 579, + "id": 600, "name": "order", "variant": "declaration", "kind": 2048, @@ -21794,36 +22446,36 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "signatures": [ { - "id": 580, + "id": 601, "name": "order", "variant": "signature", "kind": 4096, @@ -21833,12 +22485,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" } ], "typeParameters": [ { - "id": 581, + "id": 602, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -21851,21 +22503,21 @@ ], "parameters": [ { - "id": 582, + "id": 603, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 422, + "target": 443, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 583, + "id": 604, "name": "options", "variant": "param", "kind": 32768, @@ -21875,14 +22527,14 @@ "type": { "type": "reflection", "declaration": { - "id": 584, + "id": 605, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 585, + "id": 606, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -21894,7 +22546,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -21903,7 +22555,7 @@ } }, { - "id": 586, + "id": 607, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -21915,7 +22567,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -21924,7 +22576,7 @@ } }, { - "id": 587, + "id": 608, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -21936,7 +22588,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -21948,7 +22600,7 @@ "groups": [ { "title": "Properties", - "children": [585, 586, 587] + "children": [606, 607, 608] } ], "sources": [ @@ -21956,7 +22608,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ] } @@ -21969,7 +22621,7 @@ } }, { - "id": 588, + "id": 609, "name": "order", "variant": "signature", "kind": 4096, @@ -21979,12 +22631,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" } ], "parameters": [ { - "id": 589, + "id": 610, "name": "column", "variant": "param", "kind": 32768, @@ -21995,7 +22647,7 @@ } }, { - "id": 590, + "id": 611, "name": "options", "variant": "param", "kind": 32768, @@ -22005,14 +22657,14 @@ "type": { "type": "reflection", "declaration": { - "id": 591, + "id": 612, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 592, + "id": 613, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -22024,7 +22676,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -22033,7 +22685,7 @@ } }, { - "id": 593, + "id": 614, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -22045,7 +22697,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -22054,7 +22706,7 @@ } }, { - "id": 594, + "id": 615, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -22066,7 +22718,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -22078,7 +22730,7 @@ "groups": [ { "title": "Properties", - "children": [592, 593, 594] + "children": [613, 614, 615] } ], "sources": [ @@ -22086,7 +22738,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ] } @@ -22099,7 +22751,7 @@ } }, { - "id": 595, + "id": 616, "name": "order", "variant": "signature", "kind": 4096, @@ -22135,12 +22787,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" } ], "typeParameters": [ { - "id": 596, + "id": 617, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -22153,21 +22805,21 @@ ], "parameters": [ { - "id": 597, + "id": 618, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 437, + "target": 458, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 598, + "id": 619, "name": "options", "variant": "param", "kind": 32768, @@ -22177,14 +22829,14 @@ "type": { "type": "reflection", "declaration": { - "id": 599, + "id": 620, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 600, + "id": 621, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -22196,7 +22848,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -22205,7 +22857,7 @@ } }, { - "id": 602, + "id": 623, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -22217,7 +22869,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -22226,7 +22878,7 @@ } }, { - "id": 601, + "id": 622, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -22238,7 +22890,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -22250,7 +22902,7 @@ "groups": [ { "title": "Properties", - "children": [600, 602, 601] + "children": [621, 623, 622] } ], "sources": [ @@ -22258,7 +22910,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ] } @@ -22271,7 +22923,7 @@ } }, { - "id": 603, + "id": 624, "name": "order", "variant": "signature", "kind": 4096, @@ -22307,12 +22959,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" } ], "parameters": [ { - "id": 604, + "id": 625, "name": "column", "variant": "param", "kind": 32768, @@ -22323,7 +22975,7 @@ } }, { - "id": 605, + "id": 626, "name": "options", "variant": "param", "kind": 32768, @@ -22333,14 +22985,14 @@ "type": { "type": "reflection", "declaration": { - "id": 606, + "id": 627, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 607, + "id": 628, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -22352,7 +23004,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -22361,7 +23013,7 @@ } }, { - "id": 609, + "id": 630, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -22373,7 +23025,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -22382,7 +23034,7 @@ } }, { - "id": 608, + "id": 629, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -22394,7 +23046,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -22406,7 +23058,7 @@ "groups": [ { "title": "Properties", - "children": [607, 609, 608] + "children": [628, 630, 629] } ], "sources": [ @@ -22414,7 +23066,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ] } @@ -22429,7 +23081,7 @@ ] }, { - "id": 690, + "id": 711, "name": "overrideTypes", "variant": "declaration", "kind": 2048, @@ -22441,12 +23093,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "signatures": [ { - "id": 691, + "id": 712, "name": "overrideTypes", "variant": "signature", "kind": 4096, @@ -22494,12 +23146,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "typeParameters": [ { - "id": 692, + "id": 713, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -22514,7 +23166,7 @@ } }, { - "id": 693, + "id": 714, "name": "Options", "variant": "typeParam", "kind": 131072, @@ -22530,14 +23182,14 @@ "type": { "type": "reflection", "declaration": { - "id": 694, + "id": 715, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 695, + "id": 716, "name": "merge", "variant": "declaration", "kind": 1024, @@ -22549,7 +23201,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -22561,7 +23213,7 @@ "groups": [ { "title": "Properties", - "children": [695] + "children": [716] } ], "sources": [ @@ -22569,7 +23221,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -22577,14 +23229,14 @@ "default": { "type": "reflection", "declaration": { - "id": 696, + "id": 717, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 697, + "id": 718, "name": "merge", "variant": "declaration", "kind": 1024, @@ -22594,7 +23246,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -22606,7 +23258,7 @@ "groups": [ { "title": "Properties", - "children": [697] + "children": [718] } ], "sources": [ @@ -22614,7 +23266,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -22623,11 +23275,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -22644,7 +23296,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -22652,7 +23304,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -22684,7 +23336,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -22714,7 +23366,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -22728,7 +23380,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -22740,7 +23392,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -22760,14 +23412,14 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -22775,7 +23427,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -22794,7 +23446,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -22802,7 +23454,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -22823,19 +23475,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 767, + "target": 788, "name": "default.overrideTypes" } } ], "inheritedFrom": { "type": "reference", - "target": 766, + "target": 787, "name": "default.overrideTypes" } }, { - "id": 617, + "id": 638, "name": "range", "variant": "declaration", "kind": 2048, @@ -22845,12 +23497,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "signatures": [ { - "id": 618, + "id": 639, "name": "range", "variant": "signature", "kind": 4096, @@ -22908,12 +23560,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "parameters": [ { - "id": 619, + "id": 640, "name": "from", "variant": "param", "kind": 32768, @@ -22932,7 +23584,7 @@ } }, { - "id": 620, + "id": 641, "name": "to", "variant": "param", "kind": 32768, @@ -22951,7 +23603,7 @@ } }, { - "id": 621, + "id": 642, "name": "options", "variant": "param", "kind": 32768, @@ -22967,14 +23619,14 @@ "type": { "type": "reflection", "declaration": { - "id": 622, + "id": 643, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 623, + "id": 644, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -23002,7 +23654,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -23011,7 +23663,7 @@ } }, { - "id": 624, + "id": 645, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -23031,7 +23683,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -23044,7 +23696,7 @@ "groups": [ { "title": "Properties", - "children": [623, 624] + "children": [644, 645] } ], "sources": [ @@ -23052,7 +23704,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ] } @@ -23068,7 +23720,7 @@ ] }, { - "id": 650, + "id": 671, "name": "returns", "variant": "declaration", "kind": 2048, @@ -23078,12 +23730,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" } ], "signatures": [ { - "id": 651, + "id": 672, "name": "returns", "variant": "signature", "kind": 4096, @@ -23120,12 +23772,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" } ], "typeParameters": [ { - "id": 652, + "id": 673, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -23142,11 +23794,11 @@ ], "type": { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -23154,7 +23806,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -23162,7 +23814,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -23177,7 +23829,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -23185,7 +23837,7 @@ }, { "type": "reference", - "target": 493, + "target": 514, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23196,7 +23848,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -23204,7 +23856,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -23212,7 +23864,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -23225,19 +23877,19 @@ }, "overwrites": { "type": "reference", - "target": 764, + "target": 785, "name": "default.returns" } } ], "overwrites": { "type": "reference", - "target": 763, + "target": 784, "name": "default.returns" } }, { - "id": 648, + "id": 669, "name": "rollback", "variant": "declaration", "kind": 2048, @@ -23247,12 +23899,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ { - "id": 649, + "id": 670, "name": "rollback", "variant": "signature", "kind": 4096, @@ -23278,7 +23930,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "type": { @@ -23289,7 +23941,7 @@ ] }, { - "id": 574, + "id": 595, "name": "select", "variant": "declaration", "kind": 2048, @@ -23299,12 +23951,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "signatures": [ { - "id": 575, + "id": 596, "name": "select", "variant": "signature", "kind": 4096, @@ -23362,12 +24014,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "typeParameters": [ { - "id": 576, + "id": 597, "name": "Query", "variant": "typeParam", "kind": 131072, @@ -23382,18 +24034,18 @@ } }, { - "id": 577, + "id": 598, "name": "NewResultOne", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 811, + "target": 832, "typeArguments": [ { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -23401,7 +24053,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -23409,7 +24061,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -23417,7 +24069,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -23425,14 +24077,14 @@ }, { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -23446,7 +24098,7 @@ ], "parameters": [ { - "id": 578, + "id": 599, "name": "columns", "variant": "param", "kind": 32768, @@ -23463,7 +24115,7 @@ }, "type": { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23476,7 +24128,7 @@ "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -23484,7 +24136,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -23492,7 +24144,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -23502,7 +24154,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -23516,7 +24168,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -23533,7 +24185,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23541,7 +24193,7 @@ }, "falseType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23551,7 +24203,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23560,7 +24212,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -23568,7 +24220,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -23576,7 +24228,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -23591,7 +24243,7 @@ ] }, { - "id": 674, + "id": 695, "name": "setHeader", "variant": "declaration", "kind": 2048, @@ -23603,12 +24255,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "signatures": [ { - "id": 675, + "id": 696, "name": "setHeader", "variant": "signature", "kind": 4096, @@ -23628,12 +24280,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "parameters": [ { - "id": 676, + "id": 697, "name": "name", "variant": "param", "kind": 32768, @@ -23644,7 +24296,7 @@ } }, { - "id": 677, + "id": 698, "name": "value", "variant": "param", "kind": 32768, @@ -23661,19 +24313,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 748, + "target": 769, "name": "default.setHeader" } } ], "inheritedFrom": { "type": "reference", - "target": 747, + "target": 768, "name": "default.setHeader" } }, { - "id": 628, + "id": 649, "name": "single", "variant": "declaration", "kind": 2048, @@ -23683,12 +24335,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "signatures": [ { - "id": 629, + "id": 650, "name": "single", "variant": "signature", "kind": 4096, @@ -23722,12 +24374,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "typeParameters": [ { - "id": 630, + "id": 651, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -23736,7 +24388,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -23774,11 +24426,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -23786,7 +24438,7 @@ }, { "type": "reference", - "target": 471, + "target": 492, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23800,7 +24452,7 @@ ] }, { - "id": 678, + "id": 699, "name": "then", "variant": "declaration", "kind": 2048, @@ -23812,12 +24464,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "signatures": [ { - "id": 679, + "id": 700, "name": "then", "variant": "signature", "kind": 4096, @@ -23848,23 +24500,23 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "typeParameters": [ { - "id": 680, + "id": 701, "name": "TResult1", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -23876,7 +24528,7 @@ } }, { - "id": 681, + "id": 702, "name": "TResult2", "variant": "typeParam", "kind": 131072, @@ -23889,7 +24541,7 @@ ], "parameters": [ { - "id": 682, + "id": 703, "name": "onfulfilled", "variant": "param", "kind": 32768, @@ -23914,7 +24566,7 @@ { "type": "reflection", "declaration": { - "id": 683, + "id": 704, "name": "__type", "variant": "declaration", "kind": 65536, @@ -23924,12 +24576,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "signatures": [ { - "id": 684, + "id": 705, "name": "__type", "variant": "signature", "kind": 4096, @@ -23939,23 +24591,23 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "parameters": [ { - "id": 685, + "id": 706, "name": "value", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -23972,7 +24624,7 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23986,7 +24638,7 @@ "typeArguments": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24005,7 +24657,7 @@ } }, { - "id": 686, + "id": 707, "name": "onrejected", "variant": "param", "kind": 32768, @@ -24030,7 +24682,7 @@ { "type": "reflection", "declaration": { - "id": 687, + "id": 708, "name": "__type", "variant": "declaration", "kind": 65536, @@ -24040,12 +24692,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "signatures": [ { - "id": 688, + "id": 709, "name": "__type", "variant": "signature", "kind": 4096, @@ -24055,12 +24707,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "parameters": [ { - "id": 689, + "id": 710, "name": "reason", "variant": "param", "kind": 32768, @@ -24076,7 +24728,7 @@ "types": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24090,7 +24742,7 @@ "typeArguments": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24121,14 +24773,14 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24141,19 +24793,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 752, + "target": 773, "name": "default.then" } } ], "inheritedFrom": { "type": "reference", - "target": 751, + "target": 772, "name": "default.then" } }, { - "id": 672, + "id": 693, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -24165,12 +24817,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "signatures": [ { - "id": 673, + "id": 694, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -24196,7 +24848,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -24204,11 +24856,11 @@ "types": [ { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -24216,7 +24868,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -24224,7 +24876,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -24232,7 +24884,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -24240,7 +24892,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -24248,7 +24900,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -24256,7 +24908,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -24269,11 +24921,11 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -24281,7 +24933,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -24300,14 +24952,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 746, + "target": 767, "name": "default.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 745, + "target": 766, "name": "default.throwOnError" } } @@ -24315,16 +24967,16 @@ "groups": [ { "title": "Constructors", - "children": [547] + "children": [568] }, { "title": "Properties", - "children": [660, 663, 658, 671, 656, 659, 661, 662, 657] + "children": [681, 684, 679, 692, 677, 680, 682, 683, 678] }, { "title": "Methods", "children": [ - 625, 634, 638, 636, 610, 653, 631, 579, 690, 617, 650, 648, 574, 674, 628, 678, 672 + 646, 655, 659, 657, 631, 674, 652, 600, 711, 638, 671, 669, 595, 695, 649, 699, 693 ] } ], @@ -24333,25 +24985,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" } ], "typeParameters": [ { - "id": 698, + "id": 719, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 699, + "id": 720, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -24367,7 +25019,7 @@ } }, { - "id": 700, + "id": 721, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -24393,14 +25045,14 @@ } }, { - "id": 701, + "id": 722, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 702, + "id": 723, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -24411,7 +25063,7 @@ } }, { - "id": 703, + "id": 724, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -24422,7 +25074,7 @@ } }, { - "id": 704, + "id": 725, "name": "Method", "variant": "typeParam", "kind": 131072, @@ -24436,11 +25088,11 @@ "extendedTypes": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -24448,7 +25100,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -24468,14 +25120,14 @@ ] }, { - "id": 791, + "id": 812, "name": "PostgrestResponseFailure", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 794, + "id": 815, "name": "count", "variant": "declaration", "kind": 1024, @@ -24485,7 +25137,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L23" } ], "type": { @@ -24494,7 +25146,7 @@ } }, { - "id": 793, + "id": 814, "name": "data", "variant": "declaration", "kind": 1024, @@ -24504,7 +25156,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L22" } ], "type": { @@ -24513,7 +25165,7 @@ } }, { - "id": 792, + "id": 813, "name": "error", "variant": "declaration", "kind": 1024, @@ -24523,19 +25175,19 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L21" } ], "type": { "type": "reference", - "target": 777, + "target": 798, "name": "PostgrestError", "package": "@supabase/postgrest-js", "qualifiedName": "default" } }, { - "id": 795, + "id": 816, "name": "status", "variant": "declaration", "kind": 1024, @@ -24547,7 +25199,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -24561,7 +25213,7 @@ } }, { - "id": 796, + "id": 817, "name": "statusText", "variant": "declaration", "kind": 1024, @@ -24573,7 +25225,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -24590,7 +25242,7 @@ "groups": [ { "title": "Properties", - "children": [794, 793, 792, 795, 796] + "children": [815, 814, 813, 816, 817] } ], "sources": [ @@ -24598,7 +25250,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 20, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L20" } ], "extendedTypes": [ @@ -24614,14 +25266,14 @@ ] }, { - "id": 797, + "id": 818, "name": "PostgrestResponseSuccess", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 800, + "id": 821, "name": "count", "variant": "declaration", "kind": 1024, @@ -24631,7 +25283,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L18" } ], "type": { @@ -24649,7 +25301,7 @@ } }, { - "id": 799, + "id": 820, "name": "data", "variant": "declaration", "kind": 1024, @@ -24659,12 +25311,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L17" } ], "type": { "type": "reference", - "target": 803, + "target": 824, "name": "T", "package": "@supabase/postgrest-js", "qualifiedName": "PostgrestResponseSuccess.T", @@ -24672,7 +25324,7 @@ } }, { - "id": 798, + "id": 819, "name": "error", "variant": "declaration", "kind": 1024, @@ -24682,7 +25334,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L16" } ], "type": { @@ -24691,7 +25343,7 @@ } }, { - "id": 801, + "id": 822, "name": "status", "variant": "declaration", "kind": 1024, @@ -24703,7 +25355,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -24717,7 +25369,7 @@ } }, { - "id": 802, + "id": 823, "name": "statusText", "variant": "declaration", "kind": 1024, @@ -24729,7 +25381,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -24746,7 +25398,7 @@ "groups": [ { "title": "Properties", - "children": [800, 799, 798, 801, 802] + "children": [821, 820, 819, 822, 823] } ], "sources": [ @@ -24754,12 +25406,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 15, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L15" } ], "typeParameters": [ { - "id": 803, + "id": 824, "name": "T", "variant": "typeParam", "kind": 131072, @@ -24779,7 +25431,7 @@ ] }, { - "id": 808, + "id": 829, "name": "PostgrestClientOptions", "variant": "declaration", "kind": 2097152, @@ -24789,20 +25441,20 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/common/common.ts#L54" } ], "type": { "type": "reflection", "declaration": { - "id": 809, + "id": 830, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 810, + "id": 831, "name": "PostgrestVersion", "variant": "declaration", "kind": 1024, @@ -24814,7 +25466,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/common/common.ts#L55" } ], "type": { @@ -24826,7 +25478,7 @@ "groups": [ { "title": "Properties", - "children": [810] + "children": [831] } ], "sources": [ @@ -24834,14 +25486,14 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 54, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/common/common.ts#L54" } ] } } }, { - "id": 806, + "id": 827, "name": "PostgrestMaybeSingleResponse", "variant": "declaration", "kind": 2097152, @@ -24851,12 +25503,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L30" } ], "typeParameters": [ { - "id": 807, + "id": 828, "name": "T", "variant": "typeParam", "kind": 131072, @@ -24865,14 +25517,14 @@ ], "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "union", "types": [ { "type": "reference", - "target": 807, + "target": 828, "name": "T", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24889,7 +25541,7 @@ } }, { - "id": 789, + "id": 810, "name": "PostgrestResponse", "variant": "declaration", "kind": 2097152, @@ -24899,12 +25551,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L31" } ], "typeParameters": [ { - "id": 790, + "id": 811, "name": "T", "variant": "typeParam", "kind": 131072, @@ -24913,13 +25565,13 @@ ], "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "array", "elementType": { "type": "reference", - "target": 790, + "target": 811, "name": "T", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24931,7 +25583,7 @@ } }, { - "id": 804, + "id": 825, "name": "PostgrestSingleResponse", "variant": "declaration", "kind": 2097152, @@ -24941,12 +25593,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L29" } ], "typeParameters": [ { - "id": 805, + "id": 826, "name": "T", "variant": "typeParam", "kind": 131072, @@ -24958,11 +25610,11 @@ "types": [ { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 805, + "target": 826, "name": "T", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24973,7 +25625,7 @@ }, { "type": "reference", - "target": 791, + "target": 812, "name": "PostgrestResponseFailure", "package": "@supabase/postgrest-js" } @@ -24981,7 +25633,7 @@ } }, { - "id": 811, + "id": 832, "name": "UnstableGetResult", "variant": "declaration", "kind": 2097152, @@ -24999,12 +25651,12 @@ "fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" } ], "typeParameters": [ { - "id": 812, + "id": 833, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -25028,7 +25680,7 @@ } }, { - "id": 813, + "id": 834, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -25062,7 +25714,7 @@ } }, { - "id": 814, + "id": 835, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -25077,7 +25729,7 @@ } }, { - "id": 815, + "id": 836, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -25092,7 +25744,7 @@ } }, { - "id": 816, + "id": 837, "name": "Query", "variant": "typeParam", "kind": 131072, @@ -25111,14 +25763,14 @@ } }, { - "id": 817, + "id": 838, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -25135,7 +25787,7 @@ "typeArguments": [ { "type": "reference", - "target": 812, + "target": 833, "name": "Schema", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25159,7 +25811,7 @@ "typeArguments": [ { "type": "reference", - "target": 816, + "target": 837, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25200,7 +25852,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25255,7 +25907,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 815, + "target": 836, "name": "Relationships", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25275,7 +25927,7 @@ "typeArguments": [ { "type": "reference", - "target": 816, + "target": 837, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25333,7 +25985,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25344,7 +25996,7 @@ }, "trueType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25356,7 +26008,7 @@ }, { "type": "reference", - "target": 813, + "target": 834, "name": "Row", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25378,7 +26030,7 @@ }, "falseType": { "type": "reference", - "target": 813, + "target": 834, "name": "Row", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25395,7 +26047,7 @@ "typeArguments": [ { "type": "reference", - "target": 816, + "target": 837, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25436,7 +26088,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25449,7 +26101,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 815, + "target": 836, "name": "Relationships", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25475,35 +26127,35 @@ "typeArguments": [ { "type": "reference", - "target": 817, + "target": 838, "name": "ClientOptions", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 812, + "target": 833, "name": "Schema", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 813, + "target": 834, "name": "Row", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 815, + "target": 836, "name": "Relationships", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25584,7 +26236,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L17" } ], "type": { @@ -25607,14 +26259,14 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L22" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 705, + "target": 726, "name": "default", "package": "@supabase/postgrest-js" } @@ -25631,7 +26283,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L18" } ], "type": { @@ -25655,14 +26307,14 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L23" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 777, + "target": 798, "name": "default", "package": "@supabase/postgrest-js" } @@ -25679,7 +26331,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L20" } ], "type": { @@ -25703,7 +26355,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L19" } ], "type": { @@ -25727,14 +26379,14 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L21" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 546, + "target": 567, "name": "default", "package": "@supabase/postgrest-js" } @@ -25752,7 +26404,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L17" } ] } @@ -25762,15 +26414,15 @@ "groups": [ { "title": "Classes", - "children": [705, 9, 777, 170, 75, 546] + "children": [726, 9, 798, 170, 75, 567] }, { "title": "Interfaces", - "children": [791, 797] + "children": [812, 818] }, { "title": "Type Aliases", - "children": [808, 806, 789, 804, 811] + "children": [829, 827, 810, 825, 832] }, { "title": "Variables", @@ -27128,11 +27780,11 @@ }, "289": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.is" + "qualifiedName": "default.regexMatch" }, "290": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.is" + "qualifiedName": "default.regexMatch" }, "291": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -27144,2101 +27796,2185 @@ }, "293": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "pattern" }, "294": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.is" + "qualifiedName": "default.regexMatch" }, "295": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "296": { + "296": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "pattern" + }, + "297": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.regexIMatch" + }, + "298": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.regexIMatch" + }, + "299": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ColumnName" + }, + "300": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "301": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "pattern" + }, + "302": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.regexIMatch" + }, + "303": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "304": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "pattern" + }, + "305": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.is" + }, + "306": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.is" + }, + "307": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ColumnName" + }, + "308": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "309": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "value" + }, + "310": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.is" + }, + "311": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "312": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "value" + }, + "313": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.isDistinct" + }, + "314": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.isDistinct" + }, + "315": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ColumnName" + }, + "316": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "317": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "297": { + "318": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.in" }, - "298": { + "319": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.in" }, - "299": { + "320": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "300": { + "321": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "301": { + "322": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "values" }, - "302": { + "323": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.contains" }, - "303": { + "324": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.contains" }, - "304": { + "325": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "305": { + "326": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "306": { + "327": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "307": { + "328": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.contains" }, - "308": { + "329": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "309": { + "330": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "310": { + "331": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.containedBy" }, - "311": { + "332": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.containedBy" }, - "312": { + "333": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "313": { + "334": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "314": { + "335": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "315": { + "336": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.containedBy" }, - "316": { + "337": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "317": { + "338": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "318": { + "339": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGt" }, - "319": { + "340": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGt" }, - "320": { + "341": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "321": { + "342": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "322": { + "343": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "323": { + "344": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGt" }, - "324": { + "345": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "325": { + "346": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "326": { + "347": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGte" }, - "327": { + "348": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGte" }, - "328": { + "349": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "329": { + "350": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "330": { + "351": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "331": { + "352": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGte" }, - "332": { + "353": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "333": { + "354": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "334": { + "355": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLt" }, - "335": { + "356": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLt" }, - "336": { + "357": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "337": { + "358": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "338": { + "359": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "339": { + "360": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLt" }, - "340": { + "361": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "341": { + "362": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "342": { + "363": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLte" }, - "343": { + "364": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLte" }, - "344": { + "365": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "345": { + "366": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "346": { + "367": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "347": { + "368": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLte" }, - "348": { + "369": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "349": { + "370": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "350": { + "371": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeAdjacent" }, - "351": { + "372": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeAdjacent" }, - "352": { + "373": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "353": { + "374": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "354": { + "375": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "355": { + "376": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeAdjacent" }, - "356": { + "377": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "357": { + "378": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "358": { + "379": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.overlaps" }, - "359": { + "380": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.overlaps" }, - "360": { + "381": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "361": { + "382": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "362": { + "383": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "363": { + "384": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.overlaps" }, - "364": { + "385": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "365": { + "386": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "366": { + "387": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.textSearch" }, - "367": { + "388": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.textSearch" }, - "368": { + "389": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "369": { + "390": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "370": { + "391": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "query" }, - "371": { + "392": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "options" }, - "372": { + "393": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type" }, - "373": { + "394": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.config" }, - "374": { + "395": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.type" }, - "375": { + "396": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.textSearch" }, - "376": { + "397": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "377": { + "398": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "query" }, - "378": { + "399": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "options" }, - "379": { + "400": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type" }, - "380": { + "401": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.config" }, - "381": { + "402": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.type" }, - "382": { + "403": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.match" }, - "383": { + "404": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.match" }, - "384": { + "405": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "385": { + "406": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "query" }, - "386": { + "407": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.match" }, - "387": { + "408": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "query" }, - "388": { + "409": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.not" }, - "389": { + "410": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.not" }, - "390": { + "411": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "391": { + "412": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "392": { + "413": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "operator" }, - "393": { + "414": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "394": { + "415": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.not" }, - "395": { + "416": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "396": { + "417": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "operator" }, - "397": { + "418": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "398": { + "419": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.or" }, - "399": { + "420": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.or" }, - "400": { + "421": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "filters" }, - "401": { + "422": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__1" }, - "402": { + "423": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type" }, - "403": { + "424": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "404": { + "425": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "405": { + "426": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.filter" }, - "406": { + "427": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.filter" }, - "407": { + "428": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "408": { + "429": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "409": { + "430": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "operator" }, - "410": { + "431": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "411": { + "432": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.filter" }, - "412": { + "433": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "413": { + "434": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "operator" }, - "414": { + "435": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "415": { + "436": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "416": { + "437": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "417": { + "438": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "Query" }, - "418": { + "439": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResultOne" }, - "419": { + "440": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "columns" }, - "420": { + "441": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "421": { + "442": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "422": { + "443": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "423": { + "444": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "424": { + "445": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "425": { + "446": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "426": { + "447": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "427": { + "448": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "428": { + "449": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "429": { + "450": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "430": { + "451": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "431": { + "452": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "432": { + "453": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "433": { + "454": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "434": { + "455": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "435": { + "456": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "436": { + "457": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "437": { + "458": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "438": { + "459": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "439": { + "460": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "440": { + "461": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "441": { + "462": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "442": { + "463": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "443": { + "464": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "444": { + "465": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "445": { + "466": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "446": { + "467": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "447": { + "468": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "448": { + "469": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "449": { + "470": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "450": { + "471": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "451": { + "472": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "452": { + "473": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "453": { + "474": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "count" }, - "454": { + "475": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__1" }, - "455": { + "476": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "456": { + "477": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "457": { + "478": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "458": { + "479": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "459": { + "480": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "460": { + "481": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "from" }, - "461": { + "482": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "to" }, - "462": { + "483": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__2" }, - "463": { + "484": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "464": { + "485": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "465": { + "486": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "466": { + "487": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "467": { + "488": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "468": { + "489": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "signal" }, - "469": { + "490": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "470": { + "491": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "471": { + "492": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "472": { + "493": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "473": { + "494": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "474": { + "495": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "475": { + "496": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "476": { + "497": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "477": { + "498": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "478": { + "499": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "479": { + "500": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "480": { + "501": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "481": { + "502": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__0" }, - "482": { + "503": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "483": { + "504": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.analyze" }, - "484": { + "505": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.verbose" }, - "485": { + "506": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.settings" }, - "486": { + "507": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.buffers" }, - "487": { + "508": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.wal" }, - "488": { + "509": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.format" }, - "489": { + "510": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "490": { + "511": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "491": { + "512": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "492": { + "513": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "493": { + "514": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResult" }, - "494": { + "515": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "495": { + "516": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "496": { + "517": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "value" }, - "497": { + "518": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.method" }, - "498": { + "519": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.url" }, - "499": { + "520": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.headers" }, - "500": { + "521": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.schema" }, - "501": { + "522": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.body" }, - "502": { + "523": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.shouldThrowOnError" }, - "503": { + "524": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.signal" }, - "504": { + "525": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.fetch" }, - "505": { + "526": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "506": { + "527": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "507": { + "528": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "508": { + "529": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "509": { + "530": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "510": { + "531": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "511": { + "532": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "512": { + "533": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.isMaybeSingle" }, - "513": { + "534": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "514": { + "535": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "515": { + "536": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "516": { + "537": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "517": { + "538": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "name" }, - "518": { + "539": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "519": { + "540": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "520": { + "541": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "521": { + "542": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult1" }, - "522": { + "543": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult2" }, - "523": { + "544": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onfulfilled" }, - "524": { + "545": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "525": { + "546": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "526": { + "547": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "527": { + "548": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onrejected" }, - "528": { + "549": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "529": { + "550": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "530": { + "551": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "reason" }, - "531": { + "552": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "532": { + "553": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "533": { + "554": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "534": { + "555": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "Options" }, - "535": { + "556": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "536": { + "557": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "537": { + "558": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "538": { + "559": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "539": { + "560": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "540": { + "561": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Schema" }, - "541": { + "562": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Row" }, - "542": { + "563": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Result" }, - "543": { + "564": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.RelationName" }, - "544": { + "565": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Relationships" }, - "545": { + "566": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Method" }, - "546": { + "567": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default" }, - "547": { + "568": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.__constructor" }, - "548": { + "569": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default" }, - "549": { + "570": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "550": { + "571": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Schema" }, - "551": { + "572": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Row" }, - "552": { + "573": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Result" }, - "553": { + "574": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.RelationName" }, - "554": { + "575": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Relationships" }, - "555": { + "576": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Method" }, - "556": { + "577": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "builder" }, - "557": { + "578": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "558": { + "579": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.method" }, - "559": { + "580": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.url" }, - "560": { + "581": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.headers" }, - "561": { + "582": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.schema" }, - "562": { + "583": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.body" }, - "563": { + "584": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.shouldThrowOnError" }, - "564": { + "585": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.signal" }, - "565": { + "586": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.fetch" }, - "566": { + "587": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "567": { + "588": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "568": { + "589": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "569": { + "590": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "570": { + "591": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "571": { + "592": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "572": { + "593": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "573": { + "594": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.isMaybeSingle" }, - "574": { + "595": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "575": { + "596": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "576": { + "597": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "Query" }, - "577": { + "598": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResultOne" }, - "578": { + "599": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "columns" }, - "579": { + "600": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "580": { + "601": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "581": { + "602": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "582": { + "603": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "583": { + "604": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "584": { + "605": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "585": { + "606": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "586": { + "607": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "587": { + "608": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "588": { + "609": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "589": { + "610": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "590": { + "611": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "591": { + "612": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "592": { + "613": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "593": { + "614": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "594": { + "615": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "595": { + "616": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "596": { + "617": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "597": { + "618": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "598": { + "619": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "599": { + "620": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "600": { + "621": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "601": { + "622": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "602": { + "623": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "603": { + "624": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "604": { + "625": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "605": { + "626": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "606": { + "627": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "607": { + "628": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "608": { + "629": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "609": { + "630": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "610": { + "631": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "611": { + "632": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "612": { + "633": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "count" }, - "613": { + "634": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__1" }, - "614": { + "635": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "615": { + "636": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "616": { + "637": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "617": { + "638": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "618": { + "639": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "619": { + "640": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "from" }, - "620": { + "641": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "to" }, - "621": { + "642": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__2" }, - "622": { + "643": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "623": { + "644": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "624": { + "645": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "625": { + "646": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "626": { + "647": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "627": { + "648": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "signal" }, - "628": { + "649": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "629": { + "650": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "630": { + "651": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "631": { + "652": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "632": { + "653": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "633": { + "654": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "634": { + "655": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "635": { + "656": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "636": { + "657": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "637": { + "658": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "638": { + "659": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "639": { + "660": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "640": { + "661": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__0" }, - "641": { + "662": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "642": { + "663": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.analyze" }, - "643": { + "664": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.verbose" }, - "644": { + "665": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.settings" }, - "645": { + "666": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.buffers" }, - "646": { + "667": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.wal" }, - "647": { + "668": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.format" }, - "648": { + "669": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "649": { + "670": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "650": { + "671": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "651": { + "672": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "652": { + "673": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResult" }, - "653": { + "674": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "654": { + "675": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "655": { + "676": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "value" }, - "656": { + "677": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.method" }, - "657": { + "678": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.url" }, - "658": { + "679": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.headers" }, - "659": { + "680": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.schema" }, - "660": { + "681": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.body" }, - "661": { + "682": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.shouldThrowOnError" }, - "662": { + "683": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.signal" }, - "663": { + "684": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.fetch" }, - "664": { + "685": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "665": { + "686": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "666": { + "687": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "667": { + "688": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "668": { + "689": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "669": { + "690": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "670": { + "691": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "671": { + "692": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.isMaybeSingle" }, - "672": { + "693": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "673": { + "694": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "674": { + "695": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "675": { + "696": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "676": { + "697": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "name" }, - "677": { + "698": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "678": { + "699": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "679": { + "700": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "680": { + "701": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult1" }, - "681": { + "702": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult2" }, - "682": { + "703": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onfulfilled" }, - "683": { + "704": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "684": { + "705": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "685": { + "706": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "686": { + "707": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onrejected" }, - "687": { + "708": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "688": { + "709": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "689": { + "710": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "reason" }, - "690": { + "711": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "691": { + "712": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "692": { + "713": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "693": { + "714": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "Options" }, - "694": { + "715": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "695": { + "716": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "696": { + "717": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "697": { + "718": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "698": { + "719": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "699": { + "720": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Schema" }, - "700": { + "721": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Row" }, - "701": { + "722": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Result" }, - "702": { + "723": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.RelationName" }, - "703": { + "724": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Relationships" }, - "704": { + "725": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Method" }, - "705": { + "726": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default" }, - "706": { + "727": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.__constructor" }, - "707": { + "728": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default" }, - "708": { + "729": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "709": { + "730": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.Result" }, - "710": { + "731": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ThrowOnError" }, - "711": { + "732": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "builder" }, - "712": { + "733": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "713": { + "734": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.method" }, - "714": { + "735": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.url" }, - "715": { + "736": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.headers" }, - "716": { + "737": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.schema" }, - "717": { + "738": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.body" }, - "718": { + "739": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.shouldThrowOnError" }, - "719": { + "740": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.signal" }, - "720": { + "741": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.fetch" }, - "721": { + "742": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "722": { + "743": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "723": { + "744": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "724": { + "745": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "725": { + "746": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "726": { + "747": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "727": { + "748": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "728": { + "749": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.isMaybeSingle" }, - "729": { + "750": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.method" }, - "730": { + "751": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.url" }, - "731": { + "752": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.headers" }, - "732": { + "753": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.schema" }, - "733": { + "754": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.body" }, - "734": { + "755": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.shouldThrowOnError" }, - "735": { + "756": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.signal" }, - "736": { + "757": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.fetch" }, - "737": { + "758": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "738": { + "759": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "739": { + "760": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "740": { + "761": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "741": { + "762": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "742": { + "763": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "743": { + "764": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "744": { + "765": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.isMaybeSingle" }, - "745": { + "766": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "746": { + "767": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "747": { + "768": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "748": { + "769": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "749": { + "770": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "name" }, - "750": { + "771": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "751": { + "772": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "752": { + "773": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "753": { + "774": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult1" }, - "754": { + "775": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult2" }, - "755": { + "776": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onfulfilled" }, - "756": { + "777": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "757": { + "778": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "758": { + "779": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "759": { + "780": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onrejected" }, - "760": { + "781": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "761": { + "782": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "762": { + "783": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "reason" }, - "763": { + "784": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.returns" }, - "764": { + "785": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.returns" }, - "765": { + "786": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "766": { + "787": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "767": { + "788": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "768": { + "789": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "769": { + "790": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "Options" }, - "770": { + "791": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "771": { + "792": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "772": { + "793": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "773": { + "794": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "774": { + "795": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "775": { + "796": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.Result" }, - "776": { + "797": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ThrowOnError" }, - "777": { + "798": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default" }, - "778": { + "799": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.__constructor" }, - "779": { + "800": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default" }, - "780": { + "801": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "context" }, - "781": { + "802": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type" }, - "782": { + "803": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.message" }, - "783": { + "804": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.details" }, - "784": { + "805": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.hint" }, - "785": { + "806": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.code" }, - "786": { + "807": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.details" }, - "787": { + "808": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.hint" }, - "788": { + "809": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.code" }, - "789": { + "810": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponse" }, - "790": { + "811": { "sourceFileName": "src/types/types.ts", "qualifiedName": "T" }, - "791": { + "812": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure" }, - "792": { + "813": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure.error" }, - "793": { + "814": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure.data" }, - "794": { + "815": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure.count" }, - "795": { + "816": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.status" }, - "796": { + "817": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.statusText" }, - "797": { + "818": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess" }, - "798": { + "819": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.error" }, - "799": { + "820": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.data" }, - "800": { + "821": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.count" }, - "801": { + "822": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.status" }, - "802": { + "823": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.statusText" }, - "803": { + "824": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.T" }, - "804": { + "825": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestSingleResponse" }, - "805": { + "826": { "sourceFileName": "src/types/types.ts", "qualifiedName": "T" }, - "806": { + "827": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestMaybeSingleResponse" }, - "807": { + "828": { "sourceFileName": "src/types/types.ts", "qualifiedName": "T" }, - "808": { + "829": { "sourceFileName": "src/types/common/common.ts", "qualifiedName": "ClientServerOptions" }, - "809": { + "830": { "sourceFileName": "src/types/common/common.ts", "qualifiedName": "__type" }, - "810": { + "831": { "sourceFileName": "src/types/common/common.ts", "qualifiedName": "__type.PostgrestVersion" }, - "811": { + "832": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "GetResult" }, - "812": { + "833": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Schema" }, - "813": { + "834": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Row" }, - "814": { + "835": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "RelationName" }, - "815": { + "836": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Relationships" }, - "816": { + "837": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Query" }, - "817": { + "838": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "ClientOptions" } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json index 0a7495207a00a..f0774d4b04df9 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json @@ -6,7 +6,7 @@ "flags": {}, "children": [ { - "id": 705, + "id": 726, "name": "PostgrestBuilder", "variant": "declaration", "kind": 128, @@ -15,7 +15,7 @@ }, "children": [ { - "id": 706, + "id": 727, "name": "constructor", "variant": "declaration", "kind": 512, @@ -25,12 +25,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "signatures": [ { - "id": 707, + "id": 728, "name": "PostgrestBuilder", "variant": "signature", "kind": 16384, @@ -59,32 +59,32 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "typeParameters": [ { - "id": 708, + "id": 729, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 709, + "id": 730, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 710, + "id": 731, "name": "ThrowOnError", "variant": "typeParam", "kind": 131072, @@ -101,7 +101,7 @@ ], "parameters": [ { - "id": 711, + "id": 732, "name": "builder", "variant": "param", "kind": 32768, @@ -109,14 +109,14 @@ "type": { "type": "reflection", "declaration": { - "id": 712, + "id": 733, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 717, + "id": 738, "name": "body", "variant": "declaration", "kind": 1024, @@ -128,7 +128,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 49, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" } ], "type": { @@ -137,7 +137,7 @@ } }, { - "id": 720, + "id": 741, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -149,13 +149,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 52, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" } ], "type": { "type": "reflection", "declaration": { - "id": 721, + "id": 742, "name": "__type", "variant": "declaration", "kind": 65536, @@ -174,7 +174,7 @@ ], "signatures": [ { - "id": 722, + "id": 743, "name": "__type", "variant": "signature", "kind": 4096, @@ -196,7 +196,7 @@ ], "parameters": [ { - "id": 723, + "id": 744, "name": "input", "variant": "param", "kind": 32768, @@ -226,7 +226,7 @@ } }, { - "id": 724, + "id": 745, "name": "init", "variant": "param", "kind": 32768, @@ -266,7 +266,7 @@ } }, { - "id": 725, + "id": 746, "name": "__type", "variant": "signature", "kind": 4096, @@ -288,7 +288,7 @@ ], "parameters": [ { - "id": 726, + "id": 747, "name": "input", "variant": "param", "kind": 32768, @@ -322,7 +322,7 @@ } }, { - "id": 727, + "id": 748, "name": "init", "variant": "param", "kind": 32768, @@ -366,7 +366,7 @@ } }, { - "id": 715, + "id": 736, "name": "headers", "variant": "declaration", "kind": 1024, @@ -376,7 +376,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 47, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" } ], "type": { @@ -390,7 +390,7 @@ } }, { - "id": 728, + "id": 749, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -402,7 +402,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 53, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" } ], "type": { @@ -411,7 +411,7 @@ } }, { - "id": 713, + "id": 734, "name": "method", "variant": "declaration", "kind": 1024, @@ -421,7 +421,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 45, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" } ], "type": { @@ -451,7 +451,7 @@ } }, { - "id": 716, + "id": 737, "name": "schema", "variant": "declaration", "kind": 1024, @@ -463,7 +463,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 48, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" } ], "type": { @@ -472,7 +472,7 @@ } }, { - "id": 718, + "id": 739, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -484,7 +484,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 50, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" } ], "type": { @@ -493,7 +493,7 @@ } }, { - "id": 719, + "id": 740, "name": "signal", "variant": "declaration", "kind": 1024, @@ -505,7 +505,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 51, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" } ], "type": { @@ -519,7 +519,7 @@ } }, { - "id": 714, + "id": 735, "name": "url", "variant": "declaration", "kind": 1024, @@ -529,7 +529,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" } ], "type": { @@ -546,7 +546,7 @@ "groups": [ { "title": "Properties", - "children": [717, 720, 715, 728, 713, 716, 718, 719, 714] + "children": [738, 741, 736, 749, 734, 737, 739, 740, 735] } ], "sources": [ @@ -554,7 +554,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ] } @@ -563,11 +563,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -575,7 +575,7 @@ }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -583,7 +583,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -598,7 +598,7 @@ ] }, { - "id": 733, + "id": 754, "name": "body", "variant": "declaration", "kind": 1024, @@ -611,7 +611,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 25, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" } ], "type": { @@ -620,7 +620,7 @@ } }, { - "id": 736, + "id": 757, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -632,13 +632,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" } ], "type": { "type": "reflection", "declaration": { - "id": 737, + "id": 758, "name": "__type", "variant": "declaration", "kind": 65536, @@ -657,7 +657,7 @@ ], "signatures": [ { - "id": 738, + "id": 759, "name": "__type", "variant": "signature", "kind": 4096, @@ -679,7 +679,7 @@ ], "parameters": [ { - "id": 739, + "id": 760, "name": "input", "variant": "param", "kind": 32768, @@ -709,7 +709,7 @@ } }, { - "id": 740, + "id": 761, "name": "init", "variant": "param", "kind": 32768, @@ -749,7 +749,7 @@ } }, { - "id": 741, + "id": 762, "name": "__type", "variant": "signature", "kind": 4096, @@ -771,7 +771,7 @@ ], "parameters": [ { - "id": 742, + "id": 763, "name": "input", "variant": "param", "kind": 32768, @@ -805,7 +805,7 @@ } }, { - "id": 743, + "id": 764, "name": "init", "variant": "param", "kind": 32768, @@ -849,7 +849,7 @@ } }, { - "id": 731, + "id": 752, "name": "headers", "variant": "declaration", "kind": 1024, @@ -861,7 +861,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 23, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" } ], "type": { @@ -875,7 +875,7 @@ } }, { - "id": 744, + "id": 765, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -887,7 +887,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" } ], "type": { @@ -896,7 +896,7 @@ } }, { - "id": 729, + "id": 750, "name": "method", "variant": "declaration", "kind": 1024, @@ -908,7 +908,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" } ], "type": { @@ -938,7 +938,7 @@ } }, { - "id": 732, + "id": 753, "name": "schema", "variant": "declaration", "kind": 1024, @@ -951,7 +951,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" } ], "type": { @@ -960,7 +960,7 @@ } }, { - "id": 734, + "id": 755, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -972,7 +972,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 26, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" } ], "type": { @@ -982,7 +982,7 @@ "defaultValue": "false" }, { - "id": 735, + "id": 756, "name": "signal", "variant": "declaration", "kind": 1024, @@ -995,7 +995,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 27, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" } ], "type": { @@ -1009,7 +1009,7 @@ } }, { - "id": 730, + "id": 751, "name": "url", "variant": "declaration", "kind": 1024, @@ -1021,7 +1021,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" } ], "type": { @@ -1035,7 +1035,7 @@ } }, { - "id": 766, + "id": 787, "name": "overrideTypes", "variant": "declaration", "kind": 2048, @@ -1045,12 +1045,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "signatures": [ { - "id": 767, + "id": 788, "name": "overrideTypes", "variant": "signature", "kind": 4096, @@ -1096,12 +1096,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "typeParameters": [ { - "id": 768, + "id": 789, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -1116,7 +1116,7 @@ } }, { - "id": 769, + "id": 790, "name": "Options", "variant": "typeParam", "kind": 131072, @@ -1132,14 +1132,14 @@ "type": { "type": "reflection", "declaration": { - "id": 770, + "id": 791, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 771, + "id": 792, "name": "merge", "variant": "declaration", "kind": 1024, @@ -1151,7 +1151,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -1163,7 +1163,7 @@ "groups": [ { "title": "Properties", - "children": [771] + "children": [792] } ], "sources": [ @@ -1171,7 +1171,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -1179,14 +1179,14 @@ "default": { "type": "reflection", "declaration": { - "id": 772, + "id": 793, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 773, + "id": 794, "name": "merge", "variant": "declaration", "kind": 1024, @@ -1196,7 +1196,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -1208,7 +1208,7 @@ "groups": [ { "title": "Properties", - "children": [773] + "children": [794] } ], "sources": [ @@ -1216,7 +1216,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -1225,11 +1225,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -1246,7 +1246,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1254,7 +1254,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1286,7 +1286,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1316,7 +1316,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1330,7 +1330,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1342,7 +1342,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1362,14 +1362,14 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1377,7 +1377,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1396,7 +1396,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1404,7 +1404,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1416,7 +1416,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -1431,7 +1431,7 @@ ] }, { - "id": 763, + "id": 784, "name": "returns", "variant": "declaration", "kind": 2048, @@ -1441,12 +1441,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" } ], "signatures": [ { - "id": 764, + "id": 785, "name": "returns", "variant": "signature", "kind": 4096, @@ -1483,12 +1483,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274" } ], "typeParameters": [ { - "id": 765, + "id": 786, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -1505,11 +1505,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -1524,7 +1524,7 @@ "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1532,7 +1532,7 @@ }, { "type": "reference", - "target": 765, + "target": 786, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1543,7 +1543,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -1558,7 +1558,7 @@ ] }, { - "id": 747, + "id": 768, "name": "setHeader", "variant": "declaration", "kind": 2048, @@ -1568,12 +1568,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "signatures": [ { - "id": 748, + "id": 769, "name": "setHeader", "variant": "signature", "kind": 4096, @@ -1591,12 +1591,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "parameters": [ { - "id": 749, + "id": 770, "name": "name", "variant": "param", "kind": 32768, @@ -1607,7 +1607,7 @@ } }, { - "id": 750, + "id": 771, "name": "value", "variant": "param", "kind": 32768, @@ -1626,7 +1626,7 @@ ] }, { - "id": 751, + "id": 772, "name": "then", "variant": "declaration", "kind": 2048, @@ -1636,12 +1636,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "signatures": [ { - "id": 752, + "id": 773, "name": "then", "variant": "signature", "kind": 4096, @@ -1670,12 +1670,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "typeParameters": [ { - "id": 753, + "id": 774, "name": "TResult1", "variant": "typeParam", "kind": 131072, @@ -1684,7 +1684,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -1696,11 +1696,11 @@ }, "trueType": { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1712,11 +1712,11 @@ }, "falseType": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1729,7 +1729,7 @@ } }, { - "id": 754, + "id": 775, "name": "TResult2", "variant": "typeParam", "kind": 131072, @@ -1742,7 +1742,7 @@ ], "parameters": [ { - "id": 755, + "id": 776, "name": "onfulfilled", "variant": "param", "kind": 32768, @@ -1767,7 +1767,7 @@ { "type": "reflection", "declaration": { - "id": 756, + "id": 777, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1777,12 +1777,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "signatures": [ { - "id": 757, + "id": 778, "name": "__type", "variant": "signature", "kind": 4096, @@ -1792,12 +1792,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "parameters": [ { - "id": 758, + "id": 779, "name": "value", "variant": "param", "kind": 32768, @@ -1806,7 +1806,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -1818,11 +1818,11 @@ }, "trueType": { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1834,11 +1834,11 @@ }, "falseType": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -1856,7 +1856,7 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1870,7 +1870,7 @@ "typeArguments": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1889,7 +1889,7 @@ } }, { - "id": 759, + "id": 780, "name": "onrejected", "variant": "param", "kind": 32768, @@ -1914,7 +1914,7 @@ { "type": "reflection", "declaration": { - "id": 760, + "id": 781, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1924,12 +1924,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "signatures": [ { - "id": 761, + "id": 782, "name": "__type", "variant": "signature", "kind": 4096, @@ -1939,12 +1939,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "parameters": [ { - "id": 762, + "id": 783, "name": "reason", "variant": "param", "kind": 32768, @@ -1960,7 +1960,7 @@ "types": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -1974,7 +1974,7 @@ "typeArguments": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -2005,14 +2005,14 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -2037,7 +2037,7 @@ } }, { - "id": 745, + "id": 766, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -2047,12 +2047,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "signatures": [ { - "id": 746, + "id": 767, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -2076,7 +2076,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -2084,11 +2084,11 @@ "types": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -2096,7 +2096,7 @@ }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -2104,7 +2104,7 @@ }, { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -2117,11 +2117,11 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 708, + "target": 729, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -2129,7 +2129,7 @@ }, { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -2153,15 +2153,15 @@ "groups": [ { "title": "Constructors", - "children": [706] + "children": [727] }, { "title": "Properties", - "children": [733, 736, 731, 744, 729, 732, 734, 735, 730] + "children": [754, 757, 752, 765, 750, 753, 755, 756, 751] }, { "title": "Methods", - "children": [766, 763, 747, 751, 745] + "children": [787, 784, 768, 772, 766] } ], "sources": [ @@ -2169,32 +2169,32 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 12, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12" } ], "typeParameters": [ { - "id": 774, + "id": 795, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 775, + "id": 796, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 776, + "id": 797, "name": "ThrowOnError", "variant": "typeParam", "kind": 131072, @@ -2212,7 +2212,7 @@ "extendedBy": [ { "type": "reference", - "target": 546, + "target": 567, "name": "PostgrestTransformBuilder" } ], @@ -2228,7 +2228,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 710, + "target": 731, "name": "ThrowOnError", "package": "@supabase/postgrest-js", "qualifiedName": "default.ThrowOnError", @@ -2240,11 +2240,11 @@ }, "trueType": { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -2256,11 +2256,11 @@ }, "falseType": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 709, + "target": 730, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -2303,7 +2303,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L61" } ], "typeParameters": [ @@ -2360,7 +2360,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" }, @@ -2394,7 +2394,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L82" } ], "typeParameters": [ @@ -3575,9 +3575,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 144, + "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L148" } ], "signatures": [ @@ -3598,9 +3598,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 144, + "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L148" } ], "typeParameters": [ @@ -3824,9 +3824,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 162, + "line": 166, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L166" } ], "type": { @@ -3874,9 +3874,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 161, + "line": 165, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L165" } ], "type": { @@ -3920,9 +3920,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 160, + "line": 164, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L164" } ], "type": { @@ -3941,9 +3941,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 159, + "line": 163, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L163" } ] } @@ -4048,9 +4048,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 106, + "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L110" } ], "signatures": [ @@ -4071,9 +4071,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", - "line": 106, + "line": 110, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L110" } ], "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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L16" } ], "typeParameters": [ @@ -4244,7 +4244,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" }, @@ -4278,7 +4278,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 19, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L19" } ], "type": { @@ -4286,7 +4286,7 @@ "name": "I", "constraint": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -4304,7 +4304,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestClient.ts", "line": 18, "character": 63, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestClient.ts#L22" } ] } @@ -4575,7 +4575,7 @@ ] }, { - "id": 777, + "id": 798, "name": "PostgrestError", "variant": "declaration", "kind": 128, @@ -4596,7 +4596,7 @@ }, "children": [ { - "id": 778, + "id": 799, "name": "constructor", "variant": "declaration", "kind": 512, @@ -4606,12 +4606,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "signatures": [ { - "id": 779, + "id": 800, "name": "PostgrestError", "variant": "signature", "kind": 16384, @@ -4635,12 +4635,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "parameters": [ { - "id": 780, + "id": 801, "name": "context", "variant": "param", "kind": 32768, @@ -4648,14 +4648,14 @@ "type": { "type": "reflection", "declaration": { - "id": 781, + "id": 802, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 785, + "id": 806, "name": "code", "variant": "declaration", "kind": 1024, @@ -4665,7 +4665,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 73, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -4674,7 +4674,7 @@ } }, { - "id": 783, + "id": 804, "name": "details", "variant": "declaration", "kind": 1024, @@ -4684,7 +4684,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -4693,7 +4693,7 @@ } }, { - "id": 784, + "id": 805, "name": "hint", "variant": "declaration", "kind": 1024, @@ -4703,7 +4703,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -4712,7 +4712,7 @@ } }, { - "id": 782, + "id": 803, "name": "message", "variant": "declaration", "kind": 1024, @@ -4722,7 +4722,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ], "type": { @@ -4734,7 +4734,7 @@ "groups": [ { "title": "Properties", - "children": [785, 783, 784, 782] + "children": [806, 804, 805, 803] } ], "sources": [ @@ -4742,7 +4742,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 24, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L24" } ] } @@ -4751,7 +4751,7 @@ ], "type": { "type": "reference", - "target": 777, + "target": 798, "name": "PostgrestError", "package": "@supabase/postgrest-js", "qualifiedName": "default" @@ -4770,7 +4770,7 @@ } }, { - "id": 788, + "id": 809, "name": "code", "variant": "declaration", "kind": 1024, @@ -4780,7 +4780,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L9" } ], "type": { @@ -4789,7 +4789,7 @@ } }, { - "id": 786, + "id": 807, "name": "details", "variant": "declaration", "kind": 1024, @@ -4799,7 +4799,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L7" } ], "type": { @@ -4808,7 +4808,7 @@ } }, { - "id": 787, + "id": 808, "name": "hint", "variant": "declaration", "kind": 1024, @@ -4818,7 +4818,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestError.ts#L8" } ], "type": { @@ -4830,11 +4830,11 @@ "groups": [ { "title": "Constructors", - "children": [778] + "children": [799] }, { "title": "Properties", - "children": [788, 786, 787] + "children": [809, 807, 808] } ], "sources": [ @@ -4842,7 +4842,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestError.ts", "line": 6, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "typeParameters": [ @@ -4921,7 +4921,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -5038,7 +5038,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 49, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ] } @@ -5538,19 +5538,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 548, + "target": 569, "name": "default.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 547, + "target": 568, "name": "default.constructor" } }, { - "id": 501, + "id": 522, "name": "body", "variant": "declaration", "kind": 1024, @@ -5564,7 +5564,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 25, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" } ], "type": { @@ -5573,12 +5573,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 660, + "target": 681, "name": "default.body" } }, { - "id": 504, + "id": 525, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -5591,13 +5591,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" } ], "type": { "type": "reflection", "declaration": { - "id": 505, + "id": 526, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5616,7 +5616,7 @@ ], "signatures": [ { - "id": 506, + "id": 527, "name": "__type", "variant": "signature", "kind": 4096, @@ -5638,7 +5638,7 @@ ], "parameters": [ { - "id": 507, + "id": 528, "name": "input", "variant": "param", "kind": 32768, @@ -5668,7 +5668,7 @@ } }, { - "id": 508, + "id": 529, "name": "init", "variant": "param", "kind": 32768, @@ -5708,7 +5708,7 @@ } }, { - "id": 509, + "id": 530, "name": "__type", "variant": "signature", "kind": 4096, @@ -5730,7 +5730,7 @@ ], "parameters": [ { - "id": 510, + "id": 531, "name": "input", "variant": "param", "kind": 32768, @@ -5764,7 +5764,7 @@ } }, { - "id": 511, + "id": 532, "name": "init", "variant": "param", "kind": 32768, @@ -5808,12 +5808,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 663, + "target": 684, "name": "default.fetch" } }, { - "id": 499, + "id": 520, "name": "headers", "variant": "declaration", "kind": 1024, @@ -5826,7 +5826,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 23, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" } ], "type": { @@ -5840,12 +5840,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 658, + "target": 679, "name": "default.headers" } }, { - "id": 512, + "id": 533, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -5858,7 +5858,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" } ], "type": { @@ -5867,12 +5867,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 671, + "target": 692, "name": "default.isMaybeSingle" } }, { - "id": 497, + "id": 518, "name": "method", "variant": "declaration", "kind": 1024, @@ -5885,7 +5885,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" } ], "type": { @@ -5915,12 +5915,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 656, + "target": 677, "name": "default.method" } }, { - "id": 500, + "id": 521, "name": "schema", "variant": "declaration", "kind": 1024, @@ -5934,7 +5934,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" } ], "type": { @@ -5943,12 +5943,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 659, + "target": 680, "name": "default.schema" } }, { - "id": 502, + "id": 523, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -5961,7 +5961,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 26, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" } ], "type": { @@ -5971,12 +5971,12 @@ "defaultValue": "false", "inheritedFrom": { "type": "reference", - "target": 661, + "target": 682, "name": "default.shouldThrowOnError" } }, { - "id": 503, + "id": 524, "name": "signal", "variant": "declaration", "kind": 1024, @@ -5990,7 +5990,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 27, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" } ], "type": { @@ -6004,12 +6004,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 662, + "target": 683, "name": "default.signal" } }, { - "id": 498, + "id": 519, "name": "url", "variant": "declaration", "kind": 1024, @@ -6022,7 +6022,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" } ], "type": { @@ -6036,12 +6036,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 657, + "target": 678, "name": "default.url" } }, { - "id": 466, + "id": 487, "name": "abortSignal", "variant": "declaration", "kind": 2048, @@ -6053,12 +6053,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "signatures": [ { - "id": 467, + "id": 488, "name": "abortSignal", "variant": "signature", "kind": 4096, @@ -6078,12 +6078,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "parameters": [ { - "id": 468, + "id": 489, "name": "signal", "variant": "param", "kind": 32768, @@ -6113,19 +6113,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 626, + "target": 647, "name": "default.abortSignal" } } ], "inheritedFrom": { "type": "reference", - "target": 625, + "target": 646, "name": "default.abortSignal" } }, { - "id": 310, + "id": 331, "name": "containedBy", "variant": "declaration", "kind": 2048, @@ -6179,26 +6179,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 356, + "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L409" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 360, + "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L413" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 368, + "line": 421, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L368" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L421" } ], "signatures": [ { - "id": 311, + "id": 332, "name": "containedBy", "variant": "signature", "kind": 4096, @@ -6206,14 +6206,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 356, + "line": 409, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L409" } ], "typeParameters": [ { - "id": 312, + "id": 333, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -6226,21 +6226,21 @@ ], "parameters": [ { - "id": 313, + "id": 334, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 312, + "target": 333, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 314, + "id": 335, "name": "value", "variant": "param", "kind": 32768, @@ -6280,7 +6280,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 312, + "target": 333, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -6306,7 +6306,7 @@ } }, { - "id": 315, + "id": 336, "name": "containedBy", "variant": "signature", "kind": 4096, @@ -6314,14 +6314,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 360, + "line": 413, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L413" } ], "parameters": [ { - "id": 316, + "id": 337, "name": "column", "variant": "param", "kind": 32768, @@ -6332,7 +6332,7 @@ } }, { - "id": 317, + "id": 338, "name": "value", "variant": "param", "kind": 32768, @@ -6386,7 +6386,7 @@ ] }, { - "id": 302, + "id": 323, "name": "contains", "variant": "declaration", "kind": 2048, @@ -6440,26 +6440,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 329, + "line": 382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 333, + "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L386" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 341, + "line": 394, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L341" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L394" } ], "signatures": [ { - "id": 303, + "id": 324, "name": "contains", "variant": "signature", "kind": 4096, @@ -6467,14 +6467,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 329, + "line": 382, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" } ], "typeParameters": [ { - "id": 304, + "id": 325, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -6487,21 +6487,21 @@ ], "parameters": [ { - "id": 305, + "id": 326, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 304, + "target": 325, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 306, + "id": 327, "name": "value", "variant": "param", "kind": 32768, @@ -6541,7 +6541,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 304, + "target": 325, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -6567,7 +6567,7 @@ } }, { - "id": 307, + "id": 328, "name": "contains", "variant": "signature", "kind": 4096, @@ -6575,14 +6575,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 333, + "line": 386, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L386" } ], "parameters": [ { - "id": 308, + "id": 329, "name": "column", "variant": "param", "kind": 32768, @@ -6593,7 +6593,7 @@ } }, { - "id": 309, + "id": 330, "name": "value", "variant": "param", "kind": 32768, @@ -6647,7 +6647,7 @@ ] }, { - "id": 475, + "id": 496, "name": "csv", "variant": "declaration", "kind": 2048, @@ -6659,12 +6659,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "signatures": [ { - "id": 476, + "id": 497, "name": "csv", "variant": "signature", "kind": 4096, @@ -6692,12 +6692,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -6718,14 +6718,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 635, + "target": 656, "name": "default.csv" } } ], "inheritedFrom": { "type": "reference", - "target": 634, + "target": 655, "name": "default.csv" } }, @@ -6738,9 +6738,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 101, + "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104" } ], "signatures": [ @@ -6793,9 +6793,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 101, + "line": 104, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104" } ], "typeParameters": [ @@ -6981,7 +6981,7 @@ ] }, { - "id": 479, + "id": 500, "name": "explain", "variant": "declaration", "kind": 2048, @@ -6993,12 +6993,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "signatures": [ { - "id": 480, + "id": 501, "name": "explain", "variant": "signature", "kind": 4096, @@ -7026,12 +7026,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "parameters": [ { - "id": 481, + "id": 502, "name": "options", "variant": "param", "kind": 32768, @@ -7047,14 +7047,14 @@ "type": { "type": "reflection", "declaration": { - "id": 482, + "id": 503, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 483, + "id": 504, "name": "analyze", "variant": "declaration", "kind": 1024, @@ -7082,7 +7082,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 288, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" } ], "type": { @@ -7092,7 +7092,7 @@ "defaultValue": "false" }, { - "id": 486, + "id": 507, "name": "buffers", "variant": "declaration", "kind": 1024, @@ -7120,7 +7120,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 291, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" } ], "type": { @@ -7130,7 +7130,7 @@ "defaultValue": "false" }, { - "id": 488, + "id": 509, "name": "format", "variant": "declaration", "kind": 1024, @@ -7162,7 +7162,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 293, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" } ], "type": { @@ -7181,7 +7181,7 @@ "defaultValue": "'text'" }, { - "id": 485, + "id": 506, "name": "settings", "variant": "declaration", "kind": 1024, @@ -7209,7 +7209,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 290, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" } ], "type": { @@ -7219,7 +7219,7 @@ "defaultValue": "false" }, { - "id": 484, + "id": 505, "name": "verbose", "variant": "declaration", "kind": 1024, @@ -7255,7 +7255,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 289, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" } ], "type": { @@ -7265,7 +7265,7 @@ "defaultValue": "false" }, { - "id": 487, + "id": 508, "name": "wal", "variant": "declaration", "kind": 1024, @@ -7293,7 +7293,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 292, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" } ], "type": { @@ -7306,7 +7306,7 @@ "groups": [ { "title": "Properties", - "children": [483, 486, 488, 485, 484, 487] + "children": [504, 507, 509, 506, 505, 508] } ], "sources": [ @@ -7314,7 +7314,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 287, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" } ] } @@ -7327,7 +7327,7 @@ "types": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -7352,7 +7352,7 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -7397,19 +7397,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 639, + "target": 660, "name": "default.explain" } } ], "inheritedFrom": { "type": "reference", - "target": 638, + "target": 659, "name": "default.explain" } }, { - "id": 405, + "id": 426, "name": "filter", "variant": "declaration", "kind": 2048, @@ -7473,26 +7473,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 583, + "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L636" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 588, + "line": 641, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L641" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 602, + "line": 655, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L602" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L655" } ], "signatures": [ { - "id": 406, + "id": 427, "name": "filter", "variant": "signature", "kind": 4096, @@ -7500,14 +7500,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 583, + "line": 636, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L636" } ], "typeParameters": [ { - "id": 407, + "id": 428, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -7520,21 +7520,21 @@ ], "parameters": [ { - "id": 408, + "id": 429, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 407, + "target": 428, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 409, + "id": 430, "name": "operator", "variant": "param", "kind": 32768, @@ -7551,6 +7551,10 @@ "name": "FilterOperator", "package": "@supabase/postgrest-js" }, + { + "type": "literal", + "value": "not.match" + }, { "type": "literal", "value": "not.eq" @@ -7587,6 +7591,10 @@ "type": "literal", "value": "not.is" }, + { + "type": "literal", + "value": "not.isdistinct" + }, { "type": "literal", "value": "not.in" @@ -7638,12 +7646,16 @@ { "type": "literal", "value": "not.wfts" + }, + { + "type": "literal", + "value": "not.imatch" } ] } }, { - "id": 410, + "id": 431, "name": "value", "variant": "param", "kind": 32768, @@ -7660,7 +7672,7 @@ } }, { - "id": 411, + "id": 432, "name": "filter", "variant": "signature", "kind": 4096, @@ -7668,14 +7680,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 588, + "line": 641, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L641" } ], "parameters": [ { - "id": 412, + "id": 433, "name": "column", "variant": "param", "kind": 32768, @@ -7686,7 +7698,7 @@ } }, { - "id": 413, + "id": 434, "name": "operator", "variant": "param", "kind": 32768, @@ -7697,7 +7709,7 @@ } }, { - "id": 414, + "id": 435, "name": "value", "variant": "param", "kind": 32768, @@ -7716,7 +7728,7 @@ ] }, { - "id": 477, + "id": 498, "name": "geojson", "variant": "declaration", "kind": 2048, @@ -7728,12 +7740,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "signatures": [ { - "id": 478, + "id": 499, "name": "geojson", "variant": "signature", "kind": 4096, @@ -7761,12 +7773,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -7802,14 +7814,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 637, + "target": 658, "name": "default.geojson" } } ], "inheritedFrom": { "type": "reference", - "target": 636, + "target": 657, "name": "default.geojson" } }, @@ -7868,21 +7880,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 134, + "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 135, + "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 142, + "line": 145, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145" } ], "signatures": [ @@ -7895,9 +7907,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 134, + "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137" } ], "typeParameters": [ @@ -7968,9 +7980,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 135, + "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138" } ], "parameters": [ @@ -8059,21 +8071,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 147, + "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 148, + "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 155, + "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L155" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158" } ], "signatures": [ @@ -8086,9 +8098,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 147, + "line": 150, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150" } ], "typeParameters": [ @@ -8159,9 +8171,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 148, + "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151" } ], "parameters": [ @@ -8250,21 +8262,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 231, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 232, + "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 239, + "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242" } ], "signatures": [ @@ -8277,9 +8289,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 231, + "line": 234, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234" } ], "typeParameters": [ @@ -8336,9 +8348,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 232, + "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235" } ], "parameters": [ @@ -8427,21 +8439,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 244, + "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 248, + "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 255, + "line": 258, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258" } ], "signatures": [ @@ -8454,9 +8466,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 244, + "line": 247, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247" } ], "typeParameters": [ @@ -8520,9 +8532,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 248, + "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251" } ], "parameters": [ @@ -8618,21 +8630,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 260, + "line": 263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 264, + "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 271, + "line": 274, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274" } ], "signatures": [ @@ -8645,9 +8657,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 260, + "line": 263, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263" } ], "typeParameters": [ @@ -8711,9 +8723,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 264, + "line": 267, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267" } ], "parameters": [ @@ -8755,7 +8767,7 @@ ] }, { - "id": 297, + "id": 318, "name": "in", "variant": "declaration", "kind": 2048, @@ -8763,14 +8775,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 304, + "line": 357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357" } ], "signatures": [ { - "id": 298, + "id": 319, "name": "in", "variant": "signature", "kind": 4096, @@ -8802,14 +8814,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 304, + "line": 357, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357" } ], "typeParameters": [ { - "id": 299, + "id": 320, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -8822,7 +8834,7 @@ ], "parameters": [ { - "id": 300, + "id": 321, "name": "column", "variant": "param", "kind": 32768, @@ -8837,14 +8849,14 @@ }, "type": { "type": "reference", - "target": 299, + "target": 320, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 301, + "id": 322, "name": "values", "variant": "param", "kind": 32768, @@ -8889,7 +8901,7 @@ }, { "type": "reference", - "target": 299, + "target": 320, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -8933,7 +8945,7 @@ }, { "type": "reference", - "target": 299, + "target": 320, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -8980,7 +8992,7 @@ ] }, { - "id": 289, + "id": 305, "name": "is", "variant": "declaration", "kind": 2048, @@ -9090,26 +9102,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 276, + "line": 307, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 280, + "line": 311, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 293, + "line": 324, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L324" } ], "signatures": [ { - "id": 290, + "id": 306, "name": "is", "variant": "signature", "kind": 4096, @@ -9117,14 +9129,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 276, + "line": 307, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307" } ], "typeParameters": [ { - "id": 291, + "id": 307, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -9137,21 +9149,21 @@ ], "parameters": [ { - "id": 292, + "id": 308, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 291, + "target": 307, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 293, + "id": 309, "name": "value", "variant": "param", "kind": 32768, @@ -9163,7 +9175,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 291, + "target": 307, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -9200,7 +9212,7 @@ } }, { - "id": 294, + "id": 310, "name": "is", "variant": "signature", "kind": 4096, @@ -9208,14 +9220,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 280, + "line": 311, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311" } ], "parameters": [ { - "id": 295, + "id": 311, "name": "column", "variant": "param", "kind": 32768, @@ -9226,7 +9238,7 @@ } }, { - "id": 296, + "id": 312, "name": "value", "variant": "param", "kind": 32768, @@ -9254,95 +9266,93 @@ ] }, { - "id": 241, - "name": "like", + "id": 313, + "name": "isDistinct", "variant": "declaration", "kind": 2048, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Match only rows where " - }, - { - "kind": "code", - "text": "`column`" - }, - { - "kind": "text", - "text": " matches " - }, - { - "kind": "code", - "text": "`pattern`" - }, - { - "kind": "text", - "text": " case-sensitively." - } - ], - "blockTags": [ - { - "tag": "@param", - "name": "column", - "content": [ - { - "kind": "text", - "text": "The column to filter on" - } - ] - }, - { - "tag": "@param", - "name": "pattern", - "content": [ - { - "kind": "text", - "text": "The pattern to match with" - } - ] - } - ] - }, "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 186, - "character": 2, - "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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187" - }, - { - "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 194, + "line": 339, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339" } ], "signatures": [ { - "id": 242, - "name": "like", + "id": 314, + "name": "isDistinct", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " IS DISTINCT FROM " + }, + { + "kind": "code", + "text": "`value`" + }, + { + "kind": "text", + "text": ".\n\nUnlike " + }, + { + "kind": "code", + "text": "`.neq()`" + }, + { + "kind": "text", + "text": ", this treats " + }, + { + "kind": "code", + "text": "`NULL`" + }, + { + "kind": "text", + "text": " as a comparable value. Two " + }, + { + "kind": "code", + "text": "`NULL`" + }, + { + "kind": "text", + "text": " values\nare considered equal (not distinct), and comparing " + }, + { + "kind": "code", + "text": "`NULL`" + }, + { + "kind": "text", + "text": " with any non-NULL\nvalue returns true (distinct)." + } + ] + }, "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 186, + "line": 339, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339" } ], "typeParameters": [ { - "id": 243, + "id": 315, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -9355,48 +9365,300 @@ ], "parameters": [ { - "id": 244, + "id": 316, "name": "column", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, "type": { "type": "reference", - "target": 243, + "target": 315, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 245, - "name": "pattern", + "id": 317, + "name": "value", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The value to filter with" + } + ] + }, "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "this" - } - }, - { - "id": 246, - "name": "like", - "variant": "signature", - "kind": 4096, - "flags": {}, - "sources": [ + "type": "conditional", + "checkType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolveFilterValue" + }, + "typeArguments": [ + { + "type": "reference", + "target": 174, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 175, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 315, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "ResolveFilterValue", + "package": "@supabase/postgrest-js" + }, + "extendsType": { + "type": "intrinsic", + "name": "never" + }, + "trueType": { + "type": "intrinsic", + "name": "unknown" + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolveFilterValue" + }, + "typeArguments": [ + { + "type": "reference", + "target": 174, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 175, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 315, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + ], + "name": "ResolveFilterValue", + "package": "@supabase/postgrest-js" + }, + "extendsType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolvedFilterValue" + }, + "name": "ResolvedFilterValue", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + }, + "trueType": { + "type": "reference", + "target": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ResolvedFilterValue" + }, + "name": "ResolvedFilterValue", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + } + ] + }, + { + "id": 241, + "name": "like", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " matches " + }, + { + "kind": "code", + "text": "`pattern`" + }, + { + "kind": "text", + "text": " case-sensitively." + } + ], + "blockTags": [ + { + "tag": "@param", + "name": "column", + "content": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, + { + "tag": "@param", + "name": "pattern", + "content": [ + { + "kind": "text", + "text": "The pattern to match with" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 189, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 190, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 197, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197" + } + ], + "signatures": [ + { + "id": 242, + "name": "like", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 189, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189" + } + ], + "typeParameters": [ + { + "id": 243, + "name": "ColumnName", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 244, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 243, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + }, + { + "id": 245, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + }, + { + "id": 246, + "name": "like", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 187, + "line": 190, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190" } ], "parameters": [ @@ -9485,21 +9747,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 199, + "line": 202, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 203, + "line": 206, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 210, + "line": 213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L210" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213" } ], "signatures": [ @@ -9512,9 +9774,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 199, + "line": 202, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202" } ], "typeParameters": [ @@ -9578,9 +9840,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 203, + "line": 206, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206" } ], "parameters": [ @@ -9676,21 +9938,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 215, + "line": 218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 219, + "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 226, + "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229" } ], "signatures": [ @@ -9703,9 +9965,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 215, + "line": 218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218" } ], "typeParameters": [ @@ -9769,9 +10031,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 219, + "line": 222, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222" } ], "parameters": [ @@ -9813,7 +10075,7 @@ ] }, { - "id": 451, + "id": 472, "name": "limit", "variant": "declaration", "kind": 2048, @@ -9825,12 +10087,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "signatures": [ { - "id": 452, + "id": 473, "name": "limit", "variant": "signature", "kind": 4096, @@ -9858,12 +10120,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "parameters": [ { - "id": 453, + "id": 474, "name": "count", "variant": "param", "kind": 32768, @@ -9882,7 +10144,7 @@ } }, { - "id": 454, + "id": 475, "name": "options", "variant": "param", "kind": 32768, @@ -9898,14 +10160,14 @@ "type": { "type": "reflection", "declaration": { - "id": 455, + "id": 476, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 456, + "id": 477, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -9933,7 +10195,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -9942,7 +10204,7 @@ } }, { - "id": 457, + "id": 478, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -9962,7 +10224,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -9975,7 +10237,7 @@ "groups": [ { "title": "Properties", - "children": [456, 457] + "children": [477, 478] } ], "sources": [ @@ -9983,7 +10245,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ] } @@ -9997,14 +10259,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 611, + "target": 632, "name": "default.limit" } } ], "inheritedFrom": { "type": "reference", - "target": 610, + "target": 631, "name": "default.limit" } }, @@ -10063,21 +10325,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 160, + "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 161, + "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 168, + "line": 171, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171" } ], "signatures": [ @@ -10090,9 +10352,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 160, + "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163" } ], "typeParameters": [ @@ -10163,9 +10425,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 161, + "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164" } ], "parameters": [ @@ -10254,21 +10516,21 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 173, + "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 174, + "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 181, + "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184" } ], "signatures": [ @@ -10281,9 +10543,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 173, + "line": 176, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176" } ], "typeParameters": [ @@ -10354,9 +10616,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 174, + "line": 177, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177" } ], "parameters": [ @@ -10391,7 +10653,7 @@ ] }, { - "id": 382, + "id": 403, "name": "match", "variant": "declaration", "kind": 2048, @@ -10435,26 +10697,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 516, + "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L569" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 517, + "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L570" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 525, + "line": 578, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L525" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L578" } ], "signatures": [ { - "id": 383, + "id": 404, "name": "match", "variant": "signature", "kind": 4096, @@ -10462,14 +10724,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 516, + "line": 569, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L569" } ], "typeParameters": [ { - "id": 384, + "id": 405, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -10482,7 +10744,7 @@ ], "parameters": [ { - "id": 385, + "id": 406, "name": "query", "variant": "param", "kind": 32768, @@ -10496,7 +10758,7 @@ "typeArguments": [ { "type": "reference", - "target": 384, + "target": 405, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -10505,7 +10767,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 384, + "target": 405, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -10531,7 +10793,7 @@ } }, { - "id": 386, + "id": 407, "name": "match", "variant": "signature", "kind": 4096, @@ -10539,14 +10801,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 517, + "line": 570, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L570" } ], "parameters": [ { - "id": 387, + "id": 408, "name": "query", "variant": "param", "kind": 32768, @@ -10580,7 +10842,7 @@ ] }, { - "id": 494, + "id": 515, "name": "maxAffected", "variant": "declaration", "kind": 2048, @@ -10592,12 +10854,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "signatures": [ { - "id": 495, + "id": 516, "name": "maxAffected", "variant": "signature", "kind": 4096, @@ -10617,12 +10879,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "parameters": [ { - "id": 496, + "id": 517, "name": "value", "variant": "param", "kind": 32768, @@ -10799,19 +11061,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 654, + "target": 675, "name": "default.maxAffected" } } ], "inheritedFrom": { "type": "reference", - "target": 653, + "target": 674, "name": "default.maxAffected" } }, { - "id": 472, + "id": 493, "name": "maybeSingle", "variant": "declaration", "kind": 2048, @@ -10823,12 +11085,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "signatures": [ { - "id": 473, + "id": 494, "name": "maybeSingle", "variant": "signature", "kind": 4096, @@ -10864,12 +11126,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "typeParameters": [ { - "id": 474, + "id": 495, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -10916,7 +11178,7 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -10935,7 +11197,7 @@ }, { "type": "reference", - "target": 474, + "target": 495, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -10949,14 +11211,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 632, + "target": 653, "name": "default.maybeSingle" } } ], "inheritedFrom": { "type": "reference", - "target": 631, + "target": 652, "name": "default.maybeSingle" } }, @@ -10969,9 +11231,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 122, + "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125" } ], "signatures": [ @@ -11008,9 +11270,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 122, + "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125" } ], "typeParameters": [ @@ -11179,7 +11441,7 @@ ] }, { - "id": 388, + "id": 409, "name": "not", "variant": "declaration", "kind": 2048, @@ -11243,26 +11505,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 532, + "line": 585, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L585" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 537, + "line": 590, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L590" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 551, + "line": 604, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L604" } ], "signatures": [ { - "id": 389, + "id": 410, "name": "not", "variant": "signature", "kind": 4096, @@ -11270,14 +11532,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 532, + "line": 585, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L585" } ], "typeParameters": [ { - "id": 390, + "id": 411, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -11290,21 +11552,21 @@ ], "parameters": [ { - "id": 391, + "id": 412, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 390, + "target": 411, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 392, + "id": 413, "name": "operator", "variant": "param", "kind": 32768, @@ -11320,7 +11582,7 @@ } }, { - "id": 393, + "id": 414, "name": "value", "variant": "param", "kind": 32768, @@ -11329,7 +11591,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 390, + "target": 411, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -11351,7 +11613,7 @@ } }, { - "id": 394, + "id": 415, "name": "not", "variant": "signature", "kind": 4096, @@ -11359,14 +11621,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 537, + "line": 590, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L590" } ], "parameters": [ { - "id": 395, + "id": 416, "name": "column", "variant": "param", "kind": 32768, @@ -11377,7 +11639,7 @@ } }, { - "id": 396, + "id": 417, "name": "operator", "variant": "param", "kind": 32768, @@ -11388,7 +11650,7 @@ } }, { - "id": 397, + "id": 418, "name": "value", "variant": "param", "kind": 32768, @@ -11407,7 +11669,7 @@ ] }, { - "id": 398, + "id": 419, "name": "or", "variant": "declaration", "kind": 2048, @@ -11415,14 +11677,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 571, + "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "signatures": [ { - "id": 399, + "id": 420, "name": "or", "variant": "signature", "kind": 4096, @@ -11454,14 +11716,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 571, + "line": 624, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L624" } ], "parameters": [ { - "id": 400, + "id": 421, "name": "filters", "variant": "param", "kind": 32768, @@ -11480,7 +11742,7 @@ } }, { - "id": 401, + "id": 422, "name": "options", "variant": "param", "kind": 32768, @@ -11496,14 +11758,14 @@ "type": { "type": "reflection", "declaration": { - "id": 402, + "id": 423, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 403, + "id": 424, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -11529,9 +11791,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 576, + "line": 629, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L629" } ], "type": { @@ -11540,7 +11802,7 @@ } }, { - "id": 404, + "id": 425, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -11558,9 +11820,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 576, + "line": 629, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L629" } ], "type": { @@ -11573,15 +11835,15 @@ "groups": [ { "title": "Properties", - "children": [403, 404] + "children": [424, 425] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 576, + "line": 629, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L629" } ] } @@ -11597,7 +11859,7 @@ ] }, { - "id": 420, + "id": 441, "name": "order", "variant": "declaration", "kind": 2048, @@ -11743,36 +12005,36 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "signatures": [ { - "id": 421, + "id": 442, "name": "order", "variant": "signature", "kind": 4096, @@ -11784,12 +12046,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" } ], "typeParameters": [ { - "id": 422, + "id": 443, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -11802,21 +12064,21 @@ ], "parameters": [ { - "id": 423, + "id": 444, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 422, + "target": 443, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 424, + "id": 445, "name": "options", "variant": "param", "kind": 32768, @@ -11826,14 +12088,14 @@ "type": { "type": "reflection", "declaration": { - "id": 425, + "id": 446, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 426, + "id": 447, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -11845,7 +12107,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -11854,7 +12116,7 @@ } }, { - "id": 427, + "id": 448, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -11866,7 +12128,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -11875,7 +12137,7 @@ } }, { - "id": 428, + "id": 449, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -11887,7 +12149,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -11899,7 +12161,7 @@ "groups": [ { "title": "Properties", - "children": [426, 427, 428] + "children": [447, 448, 449] } ], "sources": [ @@ -11907,7 +12169,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ] } @@ -11920,12 +12182,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 580, + "target": 601, "name": "default.order" } }, { - "id": 429, + "id": 450, "name": "order", "variant": "signature", "kind": 4096, @@ -11937,12 +12199,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" } ], "parameters": [ { - "id": 430, + "id": 451, "name": "column", "variant": "param", "kind": 32768, @@ -11953,7 +12215,7 @@ } }, { - "id": 431, + "id": 452, "name": "options", "variant": "param", "kind": 32768, @@ -11963,14 +12225,14 @@ "type": { "type": "reflection", "declaration": { - "id": 432, + "id": 453, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 433, + "id": 454, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -11982,7 +12244,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -11991,7 +12253,7 @@ } }, { - "id": 434, + "id": 455, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -12003,7 +12265,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -12012,7 +12274,7 @@ } }, { - "id": 435, + "id": 456, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -12024,7 +12286,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -12036,7 +12298,7 @@ "groups": [ { "title": "Properties", - "children": [433, 434, 435] + "children": [454, 455, 456] } ], "sources": [ @@ -12044,7 +12306,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ] } @@ -12057,12 +12319,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 588, + "target": 609, "name": "default.order" } }, { - "id": 436, + "id": 457, "name": "order", "variant": "signature", "kind": 4096, @@ -12100,12 +12362,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" } ], "typeParameters": [ { - "id": 437, + "id": 458, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -12118,21 +12380,21 @@ ], "parameters": [ { - "id": 438, + "id": 459, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 437, + "target": 458, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 439, + "id": 460, "name": "options", "variant": "param", "kind": 32768, @@ -12142,14 +12404,14 @@ "type": { "type": "reflection", "declaration": { - "id": 440, + "id": 461, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 441, + "id": 462, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -12161,7 +12423,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -12170,7 +12432,7 @@ } }, { - "id": 443, + "id": 464, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -12182,7 +12444,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -12191,7 +12453,7 @@ } }, { - "id": 442, + "id": 463, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -12203,7 +12465,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -12215,7 +12477,7 @@ "groups": [ { "title": "Properties", - "children": [441, 443, 442] + "children": [462, 464, 463] } ], "sources": [ @@ -12223,7 +12485,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ] } @@ -12236,12 +12498,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 595, + "target": 616, "name": "default.order" } }, { - "id": 444, + "id": 465, "name": "order", "variant": "signature", "kind": 4096, @@ -12279,12 +12541,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" } ], "parameters": [ { - "id": 445, + "id": 466, "name": "column", "variant": "param", "kind": 32768, @@ -12295,7 +12557,7 @@ } }, { - "id": 446, + "id": 467, "name": "options", "variant": "param", "kind": 32768, @@ -12305,14 +12567,14 @@ "type": { "type": "reflection", "declaration": { - "id": 447, + "id": 468, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 448, + "id": 469, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -12324,7 +12586,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -12333,7 +12595,7 @@ } }, { - "id": 450, + "id": 471, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -12345,7 +12607,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -12354,7 +12616,7 @@ } }, { - "id": 449, + "id": 470, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -12366,7 +12628,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -12378,7 +12640,7 @@ "groups": [ { "title": "Properties", - "children": [448, 450, 449] + "children": [469, 471, 470] } ], "sources": [ @@ -12386,7 +12648,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ] } @@ -12399,19 +12661,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 603, + "target": 624, "name": "default.order" } } ], "inheritedFrom": { "type": "reference", - "target": 579, + "target": 600, "name": "default.order" } }, { - "id": 358, + "id": 379, "name": "overlaps", "variant": "declaration", "kind": 2048, @@ -12465,26 +12727,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 455, + "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L508" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 459, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 467, + "line": 520, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L520" } ], "signatures": [ { - "id": 359, + "id": 380, "name": "overlaps", "variant": "signature", "kind": 4096, @@ -12492,14 +12754,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 455, + "line": 508, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L508" } ], "typeParameters": [ { - "id": 360, + "id": 381, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -12512,21 +12774,21 @@ ], "parameters": [ { - "id": 361, + "id": 382, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 360, + "target": 381, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 362, + "id": 383, "name": "value", "variant": "param", "kind": 32768, @@ -12547,7 +12809,7 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 360, + "target": 381, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -12573,7 +12835,7 @@ } }, { - "id": 363, + "id": 384, "name": "overlaps", "variant": "signature", "kind": 4096, @@ -12581,14 +12843,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 459, + "line": 512, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L512" } ], "parameters": [ { - "id": 364, + "id": 385, "name": "column", "variant": "param", "kind": 32768, @@ -12599,7 +12861,7 @@ } }, { - "id": 365, + "id": 386, "name": "value", "variant": "param", "kind": 32768, @@ -12634,7 +12896,7 @@ ] }, { - "id": 531, + "id": 552, "name": "overrideTypes", "variant": "declaration", "kind": 2048, @@ -12646,12 +12908,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "signatures": [ { - "id": 532, + "id": 553, "name": "overrideTypes", "variant": "signature", "kind": 4096, @@ -12699,12 +12961,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "typeParameters": [ { - "id": 533, + "id": 554, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -12719,7 +12981,7 @@ } }, { - "id": 534, + "id": 555, "name": "Options", "variant": "typeParam", "kind": 131072, @@ -12735,14 +12997,14 @@ "type": { "type": "reflection", "declaration": { - "id": 535, + "id": 556, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 536, + "id": 557, "name": "merge", "variant": "declaration", "kind": 1024, @@ -12754,7 +13016,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -12766,7 +13028,7 @@ "groups": [ { "title": "Properties", - "children": [536] + "children": [557] } ], "sources": [ @@ -12774,7 +13036,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -12782,14 +13044,14 @@ "default": { "type": "reflection", "declaration": { - "id": 537, + "id": 558, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 538, + "id": 559, "name": "merge", "variant": "declaration", "kind": 1024, @@ -12799,7 +13061,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -12811,7 +13073,7 @@ "groups": [ { "title": "Properties", - "children": [538] + "children": [559] } ], "sources": [ @@ -12819,7 +13081,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -12828,7 +13090,7 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -12857,7 +13119,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -12919,7 +13181,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -12945,7 +13207,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -12965,7 +13227,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -12980,7 +13242,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -13007,7 +13269,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -13028,19 +13290,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 691, + "target": 712, "name": "default.overrideTypes" } } ], "inheritedFrom": { "type": "reference", - "target": 690, + "target": 711, "name": "default.overrideTypes" } }, { - "id": 458, + "id": 479, "name": "range", "variant": "declaration", "kind": 2048, @@ -13052,12 +13314,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "signatures": [ { - "id": 459, + "id": 480, "name": "range", "variant": "signature", "kind": 4096, @@ -13117,12 +13379,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "parameters": [ { - "id": 460, + "id": 481, "name": "from", "variant": "param", "kind": 32768, @@ -13141,7 +13403,7 @@ } }, { - "id": 461, + "id": 482, "name": "to", "variant": "param", "kind": 32768, @@ -13160,7 +13422,7 @@ } }, { - "id": 462, + "id": 483, "name": "options", "variant": "param", "kind": 32768, @@ -13176,14 +13438,14 @@ "type": { "type": "reflection", "declaration": { - "id": 463, + "id": 484, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 464, + "id": 485, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -13211,7 +13473,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -13220,7 +13482,7 @@ } }, { - "id": 465, + "id": 486, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -13240,7 +13502,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -13253,7 +13515,7 @@ "groups": [ { "title": "Properties", - "children": [464, 465] + "children": [485, 486] } ], "sources": [ @@ -13261,7 +13523,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ] } @@ -13275,19 +13537,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 618, + "target": 639, "name": "default.range" } } ], "inheritedFrom": { "type": "reference", - "target": 617, + "target": 638, "name": "default.range" } }, { - "id": 350, + "id": 371, "name": "rangeAdjacent", "variant": "declaration", "kind": 2048, @@ -13341,26 +13603,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 440, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 441, + "line": 494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L494" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 450, + "line": 503, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L503" } ], "signatures": [ { - "id": 351, + "id": 372, "name": "rangeAdjacent", "variant": "signature", "kind": 4096, @@ -13368,14 +13630,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 440, + "line": 493, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493" } ], "typeParameters": [ { - "id": 352, + "id": 373, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -13388,21 +13650,21 @@ ], "parameters": [ { - "id": 353, + "id": 374, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 352, + "target": 373, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 354, + "id": 375, "name": "range", "variant": "param", "kind": 32768, @@ -13419,7 +13681,7 @@ } }, { - "id": 355, + "id": 376, "name": "rangeAdjacent", "variant": "signature", "kind": 4096, @@ -13427,14 +13689,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 441, + "line": 494, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L494" } ], "parameters": [ { - "id": 356, + "id": 377, "name": "column", "variant": "param", "kind": 32768, @@ -13445,7 +13707,7 @@ } }, { - "id": 357, + "id": 378, "name": "range", "variant": "param", "kind": 32768, @@ -13464,7 +13726,7 @@ ] }, { - "id": 318, + "id": 339, "name": "rangeGt", "variant": "declaration", "kind": 2048, @@ -13518,26 +13780,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 382, + "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 383, + "line": 436, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L436" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 391, + "line": 444, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L391" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L444" } ], "signatures": [ { - "id": 319, + "id": 340, "name": "rangeGt", "variant": "signature", "kind": 4096, @@ -13545,14 +13807,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 382, + "line": 435, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435" } ], "typeParameters": [ { - "id": 320, + "id": 341, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -13565,21 +13827,21 @@ ], "parameters": [ { - "id": 321, + "id": 342, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 320, + "target": 341, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 322, + "id": 343, "name": "range", "variant": "param", "kind": 32768, @@ -13596,7 +13858,7 @@ } }, { - "id": 323, + "id": 344, "name": "rangeGt", "variant": "signature", "kind": 4096, @@ -13604,14 +13866,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 383, + "line": 436, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L436" } ], "parameters": [ { - "id": 324, + "id": 345, "name": "column", "variant": "param", "kind": 32768, @@ -13622,7 +13884,7 @@ } }, { - "id": 325, + "id": 346, "name": "range", "variant": "param", "kind": 32768, @@ -13641,7 +13903,7 @@ ] }, { - "id": 326, + "id": 347, "name": "rangeGte", "variant": "declaration", "kind": 2048, @@ -13703,26 +13965,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 396, + "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 397, + "line": 450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 406, + "line": 459, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459" } ], "signatures": [ { - "id": 327, + "id": 348, "name": "rangeGte", "variant": "signature", "kind": 4096, @@ -13730,14 +13992,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 396, + "line": 449, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449" } ], "typeParameters": [ { - "id": 328, + "id": 349, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -13750,21 +14012,21 @@ ], "parameters": [ { - "id": 329, + "id": 350, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 328, + "target": 349, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 330, + "id": 351, "name": "range", "variant": "param", "kind": 32768, @@ -13781,7 +14043,7 @@ } }, { - "id": 331, + "id": 352, "name": "rangeGte", "variant": "signature", "kind": 4096, @@ -13789,14 +14051,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 397, + "line": 450, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450" } ], "parameters": [ { - "id": 332, + "id": 353, "name": "column", "variant": "param", "kind": 32768, @@ -13807,7 +14069,7 @@ } }, { - "id": 333, + "id": 354, "name": "range", "variant": "param", "kind": 32768, @@ -13826,7 +14088,7 @@ ] }, { - "id": 334, + "id": 355, "name": "rangeLt", "variant": "declaration", "kind": 2048, @@ -13880,26 +14142,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 411, + "line": 464, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 412, + "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L465" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 420, + "line": 473, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L420" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L473" } ], "signatures": [ { - "id": 335, + "id": 356, "name": "rangeLt", "variant": "signature", "kind": 4096, @@ -13907,14 +14169,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 411, + "line": 464, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464" } ], "typeParameters": [ { - "id": 336, + "id": 357, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -13927,21 +14189,21 @@ ], "parameters": [ { - "id": 337, + "id": 358, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 336, + "target": 357, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 338, + "id": 359, "name": "range", "variant": "param", "kind": 32768, @@ -13958,7 +14220,7 @@ } }, { - "id": 339, + "id": 360, "name": "rangeLt", "variant": "signature", "kind": 4096, @@ -13966,14 +14228,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 412, + "line": 465, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L465" } ], "parameters": [ { - "id": 340, + "id": 361, "name": "column", "variant": "param", "kind": 32768, @@ -13984,7 +14246,7 @@ } }, { - "id": 341, + "id": 362, "name": "range", "variant": "param", "kind": 32768, @@ -14003,7 +14265,7 @@ ] }, { - "id": 342, + "id": 363, "name": "rangeLte", "variant": "declaration", "kind": 2048, @@ -14065,26 +14327,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 425, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 426, + "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L479" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 435, + "line": 488, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L488" } ], "signatures": [ { - "id": 343, + "id": 364, "name": "rangeLte", "variant": "signature", "kind": 4096, @@ -14092,14 +14354,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 425, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" } ], "typeParameters": [ { - "id": 344, + "id": 365, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -14112,21 +14374,21 @@ ], "parameters": [ { - "id": 345, + "id": 366, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 344, + "target": 365, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 346, + "id": 367, "name": "range", "variant": "param", "kind": 32768, @@ -14143,7 +14405,7 @@ } }, { - "id": 347, + "id": 368, "name": "rangeLte", "variant": "signature", "kind": 4096, @@ -14151,14 +14413,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 426, + "line": 479, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L479" } ], "parameters": [ { - "id": 348, + "id": 369, "name": "column", "variant": "param", "kind": 32768, @@ -14169,7 +14431,7 @@ } }, { - "id": 349, + "id": 370, "name": "range", "variant": "param", "kind": 32768, @@ -14188,129 +14450,499 @@ ] }, { - "id": 491, - "name": "returns", + "id": 297, + "name": "regexIMatch", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " matches the PostgreSQL regex " + }, + { + "kind": "code", + "text": "`pattern`" + }, + { + "kind": "text", + "text": "\ncase-insensitively (using the " + }, + { + "kind": "code", + "text": "`~*`" + }, + { + "kind": "text", + "text": " operator)." + } + ], + "blockTags": [ + { + "tag": "@param", + "name": "column", + "content": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, + { + "tag": "@param", + "name": "pattern", + "content": [ + { + "kind": "text", + "text": "The PostgreSQL regular expression pattern to match with" + } + ] + } + ] }, "sources": [ { - "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", - "line": 333, + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 293, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 294, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 302, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302" } ], "signatures": [ { - "id": 492, - "name": "returns", + "id": 298, + "name": "regexIMatch", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Override the type of the returned " - }, - { - "kind": "code", - "text": "`data`" - }, - { - "kind": "text", - "text": "." - } - ], - "blockTags": [ - { - "tag": "@deprecated", - "content": [ - { - "kind": "text", - "text": "Use overrideTypes() method at the end of your call chain instead" - } - ] - } - ] - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", - "line": 333, + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 293, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293" } ], "typeParameters": [ { - "id": 493, - "name": "NewResult", + "id": 299, + "name": "ColumnName", "variant": "typeParam", "kind": 131072, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The new result type to override with" - } - ] + "type": { + "type": "intrinsic", + "name": "string" } } ], - "type": { - "type": "reference", - "target": 546, - "typeArguments": [ - { - "type": "reference", - "target": 173, - "name": "ClientOptions", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.ClientOptions", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 174, - "name": "Schema", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.Schema", - "refersToTypeParameter": true - }, - { + "parameters": [ + { + "id": 300, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { "type": "reference", - "target": 175, - "name": "Row", + "target": 299, + "name": "ColumnName", "package": "@supabase/postgrest-js", - "qualifiedName": "default.Row", "refersToTypeParameter": true - }, - { - "type": "reference", - "target": { - "sourceFileName": "src/types/types.ts", - "qualifiedName": "CheckMatchingArrayTypes" - }, - "typeArguments": [ - { - "type": "reference", - "target": 176, - "name": "Result", - "package": "@supabase/postgrest-js", - "qualifiedName": "default.Result", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 493, - "name": "NewResult", + } + }, + { + "id": 301, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + }, + { + "id": 302, + "name": "regexIMatch", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 294, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294" + } + ], + "parameters": [ + { + "id": 303, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 304, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + } + ] + }, + { + "id": 289, + "name": "regexMatch", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Match only rows where " + }, + { + "kind": "code", + "text": "`column`" + }, + { + "kind": "text", + "text": " matches the PostgreSQL regex " + }, + { + "kind": "code", + "text": "`pattern`" + }, + { + "kind": "text", + "text": "\ncase-sensitively (using the " + }, + { + "kind": "code", + "text": "`~`" + }, + { + "kind": "text", + "text": " operator)." + } + ], + "blockTags": [ + { + "tag": "@param", + "name": "column", + "content": [ + { + "kind": "text", + "text": "The column to filter on" + } + ] + }, + { + "tag": "@param", + "name": "pattern", + "content": [ + { + "kind": "text", + "text": "The PostgreSQL regular expression pattern to match with" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 279, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 280, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + }, + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 288, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L288" + } + ], + "signatures": [ + { + "id": 290, + "name": "regexMatch", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 279, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279" + } + ], + "typeParameters": [ + { + "id": 291, + "name": "ColumnName", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 292, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 291, + "name": "ColumnName", + "package": "@supabase/postgrest-js", + "refersToTypeParameter": true + } + }, + { + "id": 293, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + }, + { + "id": 294, + "name": "regexMatch", + "variant": "signature", + "kind": 4096, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", + "line": 280, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280" + } + ], + "parameters": [ + { + "id": 295, + "name": "column", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 296, + "name": "pattern", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "this" + } + } + ] + }, + { + "id": 512, + "name": "returns", + "variant": "declaration", + "kind": 2048, + "flags": { + "isInherited": true + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", + "line": 333, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + } + ], + "signatures": [ + { + "id": 513, + "name": "returns", + "variant": "signature", + "kind": 4096, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Override the type of the returned " + }, + { + "kind": "code", + "text": "`data`" + }, + { + "kind": "text", + "text": "." + } + ], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Use overrideTypes() method at the end of your call chain instead" + } + ] + } + ] + }, + "sources": [ + { + "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", + "line": 333, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + } + ], + "typeParameters": [ + { + "id": 514, + "name": "NewResult", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The new result type to override with" + } + ] + } + } + ], + "type": { + "type": "reference", + "target": 567, + "typeArguments": [ + { + "type": "reference", + "target": 173, + "name": "ClientOptions", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.ClientOptions", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 174, + "name": "Schema", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Schema", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 175, + "name": "Row", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Row", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": { + "sourceFileName": "src/types/types.ts", + "qualifiedName": "CheckMatchingArrayTypes" + }, + "typeArguments": [ + { + "type": "reference", + "target": 176, + "name": "Result", + "package": "@supabase/postgrest-js", + "qualifiedName": "default.Result", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 514, + "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } @@ -14349,19 +14981,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 651, + "target": 672, "name": "default.returns" } } ], "inheritedFrom": { "type": "reference", - "target": 650, + "target": 671, "name": "default.returns" } }, { - "id": 489, + "id": 510, "name": "rollback", "variant": "declaration", "kind": 2048, @@ -14373,12 +15005,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ { - "id": 490, + "id": 511, "name": "rollback", "variant": "signature", "kind": 4096, @@ -14406,7 +15038,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "type": { @@ -14415,19 +15047,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 649, + "target": 670, "name": "default.rollback" } } ], "inheritedFrom": { "type": "reference", - "target": 648, + "target": 669, "name": "default.rollback" } }, { - "id": 415, + "id": 436, "name": "select", "variant": "declaration", "kind": 2048, @@ -14439,12 +15071,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "signatures": [ { - "id": 416, + "id": 437, "name": "select", "variant": "signature", "kind": 4096, @@ -14504,12 +15136,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "typeParameters": [ { - "id": 417, + "id": 438, "name": "Query", "variant": "typeParam", "kind": 131072, @@ -14524,14 +15156,14 @@ } }, { - "id": 418, + "id": 439, "name": "NewResultOne", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 811, + "target": 832, "typeArguments": [ { "type": "reference", @@ -14567,7 +15199,7 @@ }, { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14588,7 +15220,7 @@ ], "parameters": [ { - "id": 419, + "id": 440, "name": "columns", "variant": "param", "kind": 32768, @@ -14605,7 +15237,7 @@ }, "type": { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14675,7 +15307,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14683,7 +15315,7 @@ }, "falseType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14693,7 +15325,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14731,19 +15363,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 575, + "target": 596, "name": "default.select" } } ], "inheritedFrom": { "type": "reference", - "target": 574, + "target": 595, "name": "default.select" } }, { - "id": 515, + "id": 536, "name": "setHeader", "variant": "declaration", "kind": 2048, @@ -14755,12 +15387,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "signatures": [ { - "id": 516, + "id": 537, "name": "setHeader", "variant": "signature", "kind": 4096, @@ -14780,12 +15412,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "parameters": [ { - "id": 517, + "id": 538, "name": "name", "variant": "param", "kind": 32768, @@ -14796,7 +15428,7 @@ } }, { - "id": 518, + "id": 539, "name": "value", "variant": "param", "kind": 32768, @@ -14813,19 +15445,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 675, + "target": 696, "name": "default.setHeader" } } ], "inheritedFrom": { "type": "reference", - "target": 674, + "target": 695, "name": "default.setHeader" } }, { - "id": 469, + "id": 490, "name": "single", "variant": "declaration", "kind": 2048, @@ -14837,12 +15469,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "signatures": [ { - "id": 470, + "id": 491, "name": "single", "variant": "signature", "kind": 4096, @@ -14878,12 +15510,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "typeParameters": [ { - "id": 471, + "id": 492, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -14930,7 +15562,7 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -14942,7 +15574,7 @@ }, { "type": "reference", - "target": 471, + "target": 492, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -14954,19 +15586,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 629, + "target": 650, "name": "default.single" } } ], "inheritedFrom": { "type": "reference", - "target": 628, + "target": 649, "name": "default.single" } }, { - "id": 366, + "id": 387, "name": "textSearch", "variant": "declaration", "kind": 2048, @@ -15058,26 +15690,26 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 478, + "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 483, + "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536" }, { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 498, + "line": 551, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551" } ], "signatures": [ { - "id": 367, + "id": 388, "name": "textSearch", "variant": "signature", "kind": 4096, @@ -15085,14 +15717,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 478, + "line": 531, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531" } ], "typeParameters": [ { - "id": 368, + "id": 389, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -15105,21 +15737,21 @@ ], "parameters": [ { - "id": 369, + "id": 390, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 368, + "target": 389, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 370, + "id": 391, "name": "query", "variant": "param", "kind": 32768, @@ -15130,7 +15762,7 @@ } }, { - "id": 371, + "id": 392, "name": "options", "variant": "param", "kind": 32768, @@ -15140,14 +15772,14 @@ "type": { "type": "reflection", "declaration": { - "id": 372, + "id": 393, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 373, + "id": 394, "name": "config", "variant": "declaration", "kind": 1024, @@ -15157,9 +15789,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 481, + "line": 534, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L534" } ], "type": { @@ -15168,7 +15800,7 @@ } }, { - "id": 374, + "id": 395, "name": "type", "variant": "declaration", "kind": 1024, @@ -15178,9 +15810,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 481, + "line": 534, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L534" } ], "type": { @@ -15205,15 +15837,15 @@ "groups": [ { "title": "Properties", - "children": [373, 374] + "children": [394, 395] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 481, + "line": 534, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L534" } ] } @@ -15226,7 +15858,7 @@ } }, { - "id": 375, + "id": 396, "name": "textSearch", "variant": "signature", "kind": 4096, @@ -15234,14 +15866,14 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 483, + "line": 536, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536" } ], "parameters": [ { - "id": 376, + "id": 397, "name": "column", "variant": "param", "kind": 32768, @@ -15252,7 +15884,7 @@ } }, { - "id": 377, + "id": 398, "name": "query", "variant": "param", "kind": 32768, @@ -15263,7 +15895,7 @@ } }, { - "id": 378, + "id": 399, "name": "options", "variant": "param", "kind": 32768, @@ -15273,14 +15905,14 @@ "type": { "type": "reflection", "declaration": { - "id": 379, + "id": 400, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 380, + "id": 401, "name": "config", "variant": "declaration", "kind": 1024, @@ -15290,9 +15922,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 486, + "line": 539, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ], "type": { @@ -15301,7 +15933,7 @@ } }, { - "id": 381, + "id": 402, "name": "type", "variant": "declaration", "kind": 1024, @@ -15311,9 +15943,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 486, + "line": 539, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ], "type": { @@ -15338,15 +15970,15 @@ "groups": [ { "title": "Properties", - "children": [380, 381] + "children": [401, 402] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 486, + "line": 539, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L539" } ] } @@ -15361,7 +15993,7 @@ ] }, { - "id": 519, + "id": 540, "name": "then", "variant": "declaration", "kind": 2048, @@ -15373,12 +16005,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "signatures": [ { - "id": 520, + "id": 541, "name": "then", "variant": "signature", "kind": 4096, @@ -15409,19 +16041,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "typeParameters": [ { - "id": 521, + "id": 542, "name": "TResult1", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", @@ -15437,7 +16069,7 @@ } }, { - "id": 522, + "id": 543, "name": "TResult2", "variant": "typeParam", "kind": 131072, @@ -15450,7 +16082,7 @@ ], "parameters": [ { - "id": 523, + "id": 544, "name": "onfulfilled", "variant": "param", "kind": 32768, @@ -15475,7 +16107,7 @@ { "type": "reflection", "declaration": { - "id": 524, + "id": 545, "name": "__type", "variant": "declaration", "kind": 65536, @@ -15485,12 +16117,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "signatures": [ { - "id": 525, + "id": 546, "name": "__type", "variant": "signature", "kind": 4096, @@ -15500,19 +16132,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "parameters": [ { - "id": 526, + "id": 547, "name": "value", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", @@ -15533,7 +16165,7 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -15547,7 +16179,7 @@ "typeArguments": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -15566,7 +16198,7 @@ } }, { - "id": 527, + "id": 548, "name": "onrejected", "variant": "param", "kind": 32768, @@ -15591,7 +16223,7 @@ { "type": "reflection", "declaration": { - "id": 528, + "id": 549, "name": "__type", "variant": "declaration", "kind": 65536, @@ -15601,12 +16233,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "signatures": [ { - "id": 529, + "id": 550, "name": "__type", "variant": "signature", "kind": 4096, @@ -15616,12 +16248,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "parameters": [ { - "id": 530, + "id": 551, "name": "reason", "variant": "param", "kind": 32768, @@ -15637,7 +16269,7 @@ "types": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -15651,7 +16283,7 @@ "typeArguments": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -15682,14 +16314,14 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -15702,19 +16334,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 679, + "target": 700, "name": "default.then" } } ], "inheritedFrom": { "type": "reference", - "target": 678, + "target": 699, "name": "default.then" } }, { - "id": 513, + "id": 534, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -15726,12 +16358,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "signatures": [ { - "id": 514, + "id": 535, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -15757,7 +16389,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -15830,7 +16462,7 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", @@ -15861,14 +16493,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 673, + "target": 694, "name": "default.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 672, + "target": 693, "name": "default.throwOnError" } } @@ -15880,41 +16512,41 @@ }, { "title": "Properties", - "children": [501, 504, 499, 512, 497, 500, 502, 503, 498] + "children": [522, 525, 520, 533, 518, 521, 523, 524, 519] }, { "title": "Methods", "children": [ - 466, 310, 302, 475, 198, 479, 405, 477, 209, 217, 265, 273, 281, 297, 289, 241, 249, - 257, 451, 225, 233, 382, 494, 472, 204, 388, 398, 420, 358, 531, 458, 350, 318, 326, - 334, 342, 491, 489, 415, 515, 469, 366, 519, 513 + 487, 331, 323, 496, 198, 500, 426, 498, 209, 217, 265, 273, 281, 318, 305, 313, 241, + 249, 257, 472, 225, 233, 403, 515, 493, 204, 409, 419, 441, 379, 552, 479, 371, 339, + 347, 355, 363, 297, 289, 512, 510, 436, 536, 490, 387, 540, 534 ] } ], "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts", - "line": 76, + "line": 79, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L79" } ], "typeParameters": [ { - "id": 539, + "id": 560, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 540, + "id": 561, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -15930,7 +16562,7 @@ } }, { - "id": 541, + "id": 562, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -15956,14 +16588,14 @@ } }, { - "id": 542, + "id": 563, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 543, + "id": 564, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -15974,7 +16606,7 @@ } }, { - "id": 544, + "id": 565, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -15985,7 +16617,7 @@ } }, { - "id": 545, + "id": 566, "name": "Method", "variant": "typeParam", "kind": 131072, @@ -15999,7 +16631,7 @@ "extendedTypes": [ { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", @@ -16081,7 +16713,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" } ], "signatures": [ @@ -16115,7 +16747,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37" } ], "typeParameters": [ @@ -16127,7 +16759,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -16225,7 +16857,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ], "type": { @@ -16251,7 +16883,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ] } @@ -16318,7 +16950,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 46, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46" } ], "type": { @@ -16547,7 +17179,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 44, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44" } ], "type": { @@ -16574,7 +17206,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 45, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45" } ], "type": { @@ -16594,7 +17226,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 43, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43" } ] } @@ -16666,7 +17298,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22" } ], "type": { @@ -16893,7 +17525,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19" } ], "type": { @@ -16919,7 +17551,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20" } ], "type": { @@ -16940,7 +17572,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21" } ], "type": { @@ -16964,7 +17596,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18" } ], "type": { @@ -16986,9 +17618,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 429, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L478" } ], "signatures": [ @@ -17017,9 +17649,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 429, + "line": 478, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L478" } ], "parameters": [ @@ -17097,9 +17729,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 432, + "line": 481, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L481" } ], "type": { @@ -17130,9 +17762,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 431, + "line": 480, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L480" } ] } @@ -17316,19 +17948,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189" } ], "signatures": [ @@ -17343,7 +17975,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 134, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134" } ], "typeParameters": [ @@ -17419,7 +18051,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 137, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137" } ], "type": { @@ -17452,7 +18084,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 136, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136" } ] } @@ -17535,7 +18167,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148" } ], "typeParameters": [ @@ -17614,7 +18246,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 151, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151" } ], "type": { @@ -17648,7 +18280,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 152, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152" } ], "type": { @@ -17668,7 +18300,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 150, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150" } ] } @@ -17753,7 +18385,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "signatures": [ @@ -17776,7 +18408,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 76, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76" } ], "typeParameters": [ @@ -17803,7 +18435,7 @@ "flags": {}, "default": { "type": "reference", - "target": 811, + "target": 832, "typeArguments": [ { "type": "reference", @@ -17972,7 +18604,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 90, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90" } ], "type": { @@ -18030,7 +18662,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 89, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89" } ], "type": { @@ -18050,7 +18682,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 88, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88" } ] } @@ -18139,9 +18771,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 379, + "line": 428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L428" } ], "signatures": [ @@ -18170,9 +18802,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 379, + "line": 428, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L428" } ], "typeParameters": [ @@ -18300,9 +18932,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 384, + "line": 433, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L384" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L433" } ], "type": { @@ -18333,9 +18965,9 @@ "sources": [ { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 383, + "line": 432, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L383" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432" } ] } @@ -18603,6 +19235,26 @@ "text": ". This also only applies when doing bulk upserts." } ] + }, + { + "tag": "@example", + "name": "Upsert a single row using a unique key", + "content": [ + { + "kind": "code", + "text": "```ts\n// Upserting a single row, overwriting based on the 'username' unique column\nconst { data, error } = await supabase\n .from('users')\n .upsert({ username: 'supabot' }, { onConflict: 'username' })\n\n// Example response:\n// {\n// data: [\n// { id: 4, message: 'bar', username: 'supabot' }\n// ],\n// error: null\n// }\n```" + } + ] + }, + { + "tag": "@example", + "name": "Upsert with conflict resolution and exact row counting", + "content": [ + { + "kind": "code", + "text": "```ts\n// Upserting and returning exact count\nconst { data, error, count } = await supabase\n .from('users')\n .upsert(\n {\n id: 3,\n message: 'foo',\n username: 'supabot'\n },\n {\n onConflict: 'username',\n count: 'exact'\n }\n )\n\n// Example response:\n// {\n// data: [\n// {\n// id: 42,\n// handle: \"saoirse\",\n// display_name: \"Saoirse\"\n// }\n// ],\n// count: 1,\n// error: null\n// }\n```" + } + ] } ] }, @@ -18611,19 +19263,19 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" }, { "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", - "line": 306, + "line": 355, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L306" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L355" } ], "signatures": [ @@ -18638,7 +19290,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 235, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235" } ], "typeParameters": [ @@ -18714,7 +19366,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 240, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240" } ], "type": { @@ -18748,7 +19400,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 239, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239" } ], "type": { @@ -18769,7 +19421,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 238, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238" } ], "type": { @@ -18789,7 +19441,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 237, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237" } ] } @@ -18872,7 +19524,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251" } ], "typeParameters": [ @@ -18951,7 +19603,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 256, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256" } ], "type": { @@ -18985,7 +19637,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 257, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257" } ], "type": { @@ -19006,7 +19658,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 255, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255" } ], "type": { @@ -19027,7 +19679,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 254, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254" } ], "type": { @@ -19047,7 +19699,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 253, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253" } ] } @@ -19141,7 +19793,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 11, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11" } ], "typeParameters": [ @@ -19153,7 +19805,7 @@ "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -19251,7 +19903,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ], "type": { @@ -19271,7 +19923,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts", "line": 16, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16" } ] } @@ -19295,14 +19947,14 @@ ] }, { - "id": 546, + "id": 567, "name": "PostgrestTransformBuilder", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 547, + "id": 568, "name": "constructor", "variant": "declaration", "kind": 512, @@ -19312,12 +19964,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "signatures": [ { - "id": 548, + "id": 569, "name": "PostgrestTransformBuilder", "variant": "signature", "kind": 16384, @@ -19346,25 +19998,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ], "typeParameters": [ { - "id": 549, + "id": 570, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 550, + "id": 571, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -19380,7 +20032,7 @@ } }, { - "id": 551, + "id": 572, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -19406,14 +20058,14 @@ } }, { - "id": 552, + "id": 573, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 553, + "id": 574, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -19424,7 +20076,7 @@ } }, { - "id": 554, + "id": 575, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -19435,7 +20087,7 @@ } }, { - "id": 555, + "id": 576, "name": "Method", "variant": "typeParam", "kind": 131072, @@ -19448,7 +20100,7 @@ ], "parameters": [ { - "id": 556, + "id": 577, "name": "builder", "variant": "param", "kind": 32768, @@ -19456,14 +20108,14 @@ "type": { "type": "reflection", "declaration": { - "id": 557, + "id": 578, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 562, + "id": 583, "name": "body", "variant": "declaration", "kind": 1024, @@ -19475,7 +20127,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 49, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49" } ], "type": { @@ -19484,7 +20136,7 @@ } }, { - "id": 565, + "id": 586, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -19496,13 +20148,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 52, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52" } ], "type": { "type": "reflection", "declaration": { - "id": 566, + "id": 587, "name": "__type", "variant": "declaration", "kind": 65536, @@ -19521,7 +20173,7 @@ ], "signatures": [ { - "id": 567, + "id": 588, "name": "__type", "variant": "signature", "kind": 4096, @@ -19543,7 +20195,7 @@ ], "parameters": [ { - "id": 568, + "id": 589, "name": "input", "variant": "param", "kind": 32768, @@ -19573,7 +20225,7 @@ } }, { - "id": 569, + "id": 590, "name": "init", "variant": "param", "kind": 32768, @@ -19613,7 +20265,7 @@ } }, { - "id": 570, + "id": 591, "name": "__type", "variant": "signature", "kind": 4096, @@ -19635,7 +20287,7 @@ ], "parameters": [ { - "id": 571, + "id": 592, "name": "input", "variant": "param", "kind": 32768, @@ -19669,7 +20321,7 @@ } }, { - "id": 572, + "id": 593, "name": "init", "variant": "param", "kind": 32768, @@ -19713,7 +20365,7 @@ } }, { - "id": 560, + "id": 581, "name": "headers", "variant": "declaration", "kind": 1024, @@ -19723,7 +20375,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 47, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47" } ], "type": { @@ -19737,7 +20389,7 @@ } }, { - "id": 573, + "id": 594, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -19749,7 +20401,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 53, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53" } ], "type": { @@ -19758,7 +20410,7 @@ } }, { - "id": 558, + "id": 579, "name": "method", "variant": "declaration", "kind": 1024, @@ -19768,7 +20420,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 45, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45" } ], "type": { @@ -19798,7 +20450,7 @@ } }, { - "id": 561, + "id": 582, "name": "schema", "variant": "declaration", "kind": 1024, @@ -19810,7 +20462,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 48, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48" } ], "type": { @@ -19819,7 +20471,7 @@ } }, { - "id": 563, + "id": 584, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -19831,7 +20483,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 50, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50" } ], "type": { @@ -19840,7 +20492,7 @@ } }, { - "id": 564, + "id": 585, "name": "signal", "variant": "declaration", "kind": 1024, @@ -19852,7 +20504,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 51, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51" } ], "type": { @@ -19866,7 +20518,7 @@ } }, { - "id": 559, + "id": 580, "name": "url", "variant": "declaration", "kind": 1024, @@ -19876,7 +20528,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 46, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46" } ], "type": { @@ -19893,7 +20545,7 @@ "groups": [ { "title": "Properties", - "children": [562, 565, 560, 573, 558, 561, 563, 564, 559] + "children": [583, 586, 581, 594, 579, 582, 584, 585, 580] } ], "sources": [ @@ -19901,7 +20553,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 44, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44" } ] } @@ -19910,11 +20562,11 @@ ], "type": { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -19922,7 +20574,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -19930,7 +20582,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -19938,7 +20590,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -19946,7 +20598,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -19954,7 +20606,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -19962,7 +20614,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -19975,19 +20627,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 707, + "target": 728, "name": "default.constructor" } } ], "inheritedFrom": { "type": "reference", - "target": 706, + "target": 727, "name": "default.constructor" } }, { - "id": 660, + "id": 681, "name": "body", "variant": "declaration", "kind": 1024, @@ -20001,7 +20653,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 25, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25" } ], "type": { @@ -20010,12 +20662,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 733, + "target": 754, "name": "default.body" } }, { - "id": 663, + "id": 684, "name": "fetch", "variant": "declaration", "kind": 1024, @@ -20028,13 +20680,13 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28" } ], "type": { "type": "reflection", "declaration": { - "id": 664, + "id": 685, "name": "__type", "variant": "declaration", "kind": 65536, @@ -20053,7 +20705,7 @@ ], "signatures": [ { - "id": 665, + "id": 686, "name": "__type", "variant": "signature", "kind": 4096, @@ -20075,7 +20727,7 @@ ], "parameters": [ { - "id": 666, + "id": 687, "name": "input", "variant": "param", "kind": 32768, @@ -20105,7 +20757,7 @@ } }, { - "id": 667, + "id": 688, "name": "init", "variant": "param", "kind": 32768, @@ -20145,7 +20797,7 @@ } }, { - "id": 668, + "id": 689, "name": "__type", "variant": "signature", "kind": 4096, @@ -20167,7 +20819,7 @@ ], "parameters": [ { - "id": 669, + "id": 690, "name": "input", "variant": "param", "kind": 32768, @@ -20201,7 +20853,7 @@ } }, { - "id": 670, + "id": 691, "name": "init", "variant": "param", "kind": 32768, @@ -20245,12 +20897,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 736, + "target": 757, "name": "default.fetch" } }, { - "id": 658, + "id": 679, "name": "headers", "variant": "declaration", "kind": 1024, @@ -20263,7 +20915,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 23, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23" } ], "type": { @@ -20277,12 +20929,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 731, + "target": 752, "name": "default.headers" } }, { - "id": 671, + "id": 692, "name": "isMaybeSingle", "variant": "declaration", "kind": 1024, @@ -20295,7 +20947,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29" } ], "type": { @@ -20304,12 +20956,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 744, + "target": 765, "name": "default.isMaybeSingle" } }, { - "id": 656, + "id": 677, "name": "method", "variant": "declaration", "kind": 1024, @@ -20322,7 +20974,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 21, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21" } ], "type": { @@ -20352,12 +21004,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 729, + "target": 750, "name": "default.method" } }, { - "id": 659, + "id": 680, "name": "schema", "variant": "declaration", "kind": 1024, @@ -20371,7 +21023,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 24, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24" } ], "type": { @@ -20380,12 +21032,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 732, + "target": 753, "name": "default.schema" } }, { - "id": 661, + "id": 682, "name": "shouldThrowOnError", "variant": "declaration", "kind": 1024, @@ -20398,7 +21050,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 26, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26" } ], "type": { @@ -20408,12 +21060,12 @@ "defaultValue": "false", "inheritedFrom": { "type": "reference", - "target": 734, + "target": 755, "name": "default.shouldThrowOnError" } }, { - "id": 662, + "id": 683, "name": "signal", "variant": "declaration", "kind": 1024, @@ -20427,7 +21079,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 27, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27" } ], "type": { @@ -20441,12 +21093,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 735, + "target": 756, "name": "default.signal" } }, { - "id": 657, + "id": 678, "name": "url", "variant": "declaration", "kind": 1024, @@ -20459,7 +21111,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22" } ], "type": { @@ -20473,12 +21125,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 730, + "target": 751, "name": "default.url" } }, { - "id": 625, + "id": 646, "name": "abortSignal", "variant": "declaration", "kind": 2048, @@ -20488,12 +21140,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "signatures": [ { - "id": 626, + "id": 647, "name": "abortSignal", "variant": "signature", "kind": 4096, @@ -20511,12 +21163,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 200, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200" } ], "parameters": [ { - "id": 627, + "id": 648, "name": "signal", "variant": "param", "kind": 32768, @@ -20548,7 +21200,7 @@ ] }, { - "id": 634, + "id": 655, "name": "csv", "variant": "declaration", "kind": 2048, @@ -20558,12 +21210,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "signatures": [ { - "id": 635, + "id": 656, "name": "csv", "variant": "signature", "kind": 4096, @@ -20589,16 +21241,16 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 242, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -20617,7 +21269,7 @@ ] }, { - "id": 638, + "id": 659, "name": "explain", "variant": "declaration", "kind": 2048, @@ -20627,12 +21279,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "signatures": [ { - "id": 639, + "id": 660, "name": "explain", "variant": "signature", "kind": 4096, @@ -20658,12 +21310,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 280, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280" } ], "parameters": [ { - "id": 640, + "id": 661, "name": "options", "variant": "param", "kind": 32768, @@ -20679,14 +21331,14 @@ "type": { "type": "reflection", "declaration": { - "id": 641, + "id": 662, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 642, + "id": 663, "name": "analyze", "variant": "declaration", "kind": 1024, @@ -20714,7 +21366,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 288, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288" } ], "type": { @@ -20724,7 +21376,7 @@ "defaultValue": "false" }, { - "id": 645, + "id": 666, "name": "buffers", "variant": "declaration", "kind": 1024, @@ -20752,7 +21404,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 291, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291" } ], "type": { @@ -20762,7 +21414,7 @@ "defaultValue": "false" }, { - "id": 647, + "id": 668, "name": "format", "variant": "declaration", "kind": 1024, @@ -20794,7 +21446,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 293, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293" } ], "type": { @@ -20813,7 +21465,7 @@ "defaultValue": "'text'" }, { - "id": 644, + "id": 665, "name": "settings", "variant": "declaration", "kind": 1024, @@ -20841,7 +21493,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 290, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290" } ], "type": { @@ -20851,7 +21503,7 @@ "defaultValue": "false" }, { - "id": 643, + "id": 664, "name": "verbose", "variant": "declaration", "kind": 1024, @@ -20887,7 +21539,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 289, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289" } ], "type": { @@ -20897,7 +21549,7 @@ "defaultValue": "false" }, { - "id": 646, + "id": 667, "name": "wal", "variant": "declaration", "kind": 1024, @@ -20925,7 +21577,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 292, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292" } ], "type": { @@ -20938,7 +21590,7 @@ "groups": [ { "title": "Properties", - "children": [642, 645, 647, 644, 643, 646] + "children": [663, 666, 668, 665, 664, 667] } ], "sources": [ @@ -20946,7 +21598,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 287, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287" } ] } @@ -20959,11 +21611,11 @@ "types": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -20984,11 +21636,11 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -21031,7 +21683,7 @@ ] }, { - "id": 636, + "id": 657, "name": "geojson", "variant": "declaration", "kind": 2048, @@ -21041,12 +21693,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "signatures": [ { - "id": 637, + "id": 658, "name": "geojson", "variant": "signature", "kind": 4096, @@ -21072,16 +21724,16 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250" } ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -21115,7 +21767,7 @@ ] }, { - "id": 610, + "id": 631, "name": "limit", "variant": "declaration", "kind": 2048, @@ -21125,12 +21777,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "signatures": [ { - "id": 611, + "id": 632, "name": "limit", "variant": "signature", "kind": 4096, @@ -21156,12 +21808,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 151, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151" } ], "parameters": [ { - "id": 612, + "id": 633, "name": "count", "variant": "param", "kind": 32768, @@ -21180,7 +21832,7 @@ } }, { - "id": 613, + "id": 634, "name": "options", "variant": "param", "kind": 32768, @@ -21196,14 +21848,14 @@ "type": { "type": "reflection", "declaration": { - "id": 614, + "id": 635, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 615, + "id": 636, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -21231,7 +21883,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -21240,7 +21892,7 @@ } }, { - "id": 616, + "id": 637, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -21260,7 +21912,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ], "type": { @@ -21273,7 +21925,7 @@ "groups": [ { "title": "Properties", - "children": [615, 616] + "children": [636, 637] } ], "sources": [ @@ -21281,7 +21933,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 156, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156" } ] } @@ -21297,7 +21949,7 @@ ] }, { - "id": 653, + "id": 674, "name": "maxAffected", "variant": "declaration", "kind": 2048, @@ -21307,12 +21959,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "signatures": [ { - "id": 654, + "id": 675, "name": "maxAffected", "variant": "signature", "kind": 4096, @@ -21330,12 +21982,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 359, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359" } ], "parameters": [ { - "id": 655, + "id": 676, "name": "value", "variant": "param", "kind": 32768, @@ -21371,7 +22023,7 @@ }, "objectType": { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -21390,7 +22042,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -21415,11 +22067,11 @@ }, "trueType": { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -21427,7 +22079,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -21435,7 +22087,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -21443,7 +22095,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -21451,7 +22103,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -21459,7 +22111,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -21467,7 +22119,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -21514,7 +22166,7 @@ ] }, { - "id": 631, + "id": 652, "name": "maybeSingle", "variant": "declaration", "kind": 2048, @@ -21524,12 +22176,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "signatures": [ { - "id": 632, + "id": 653, "name": "maybeSingle", "variant": "signature", "kind": 4096, @@ -21563,12 +22215,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 225, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225" } ], "typeParameters": [ { - "id": 633, + "id": 654, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -21577,7 +22229,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -21615,11 +22267,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -21634,7 +22286,7 @@ }, { "type": "reference", - "target": 474, + "target": 495, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -21650,7 +22302,7 @@ ] }, { - "id": 579, + "id": 600, "name": "order", "variant": "declaration", "kind": 2048, @@ -21794,36 +22446,36 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115" } ], "signatures": [ { - "id": 580, + "id": 601, "name": "order", "variant": "signature", "kind": 4096, @@ -21833,12 +22485,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 75, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75" } ], "typeParameters": [ { - "id": 581, + "id": 602, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -21851,21 +22503,21 @@ ], "parameters": [ { - "id": 582, + "id": 603, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 422, + "target": 443, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 583, + "id": 604, "name": "options", "variant": "param", "kind": 32768, @@ -21875,14 +22527,14 @@ "type": { "type": "reflection", "declaration": { - "id": 584, + "id": 605, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 585, + "id": 606, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -21894,7 +22546,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -21903,7 +22555,7 @@ } }, { - "id": 586, + "id": 607, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -21915,7 +22567,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -21924,7 +22576,7 @@ } }, { - "id": 587, + "id": 608, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -21936,7 +22588,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ], "type": { @@ -21948,7 +22600,7 @@ "groups": [ { "title": "Properties", - "children": [585, 586, 587] + "children": [606, 607, 608] } ], "sources": [ @@ -21956,7 +22608,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 77, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77" } ] } @@ -21969,7 +22621,7 @@ } }, { - "id": 588, + "id": 609, "name": "order", "variant": "signature", "kind": 4096, @@ -21979,12 +22631,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79" } ], "parameters": [ { - "id": 589, + "id": 610, "name": "column", "variant": "param", "kind": 32768, @@ -21995,7 +22647,7 @@ } }, { - "id": 590, + "id": 611, "name": "options", "variant": "param", "kind": 32768, @@ -22005,14 +22657,14 @@ "type": { "type": "reflection", "declaration": { - "id": 591, + "id": 612, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 592, + "id": 613, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -22024,7 +22676,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -22033,7 +22685,7 @@ } }, { - "id": 593, + "id": 614, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -22045,7 +22697,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -22054,7 +22706,7 @@ } }, { - "id": 594, + "id": 615, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -22066,7 +22718,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ], "type": { @@ -22078,7 +22730,7 @@ "groups": [ { "title": "Properties", - "children": [592, 593, 594] + "children": [613, 614, 615] } ], "sources": [ @@ -22086,7 +22738,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 81, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81" } ] } @@ -22099,7 +22751,7 @@ } }, { - "id": 595, + "id": 616, "name": "order", "variant": "signature", "kind": 4096, @@ -22135,12 +22787,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86" } ], "typeParameters": [ { - "id": 596, + "id": 617, "name": "ColumnName", "variant": "typeParam", "kind": 131072, @@ -22153,21 +22805,21 @@ ], "parameters": [ { - "id": 597, + "id": 618, "name": "column", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 437, + "target": 458, "name": "ColumnName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true } }, { - "id": 598, + "id": 619, "name": "options", "variant": "param", "kind": 32768, @@ -22177,14 +22829,14 @@ "type": { "type": "reflection", "declaration": { - "id": 599, + "id": 620, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 600, + "id": 621, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -22196,7 +22848,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -22205,7 +22857,7 @@ } }, { - "id": 602, + "id": 623, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -22217,7 +22869,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -22226,7 +22878,7 @@ } }, { - "id": 601, + "id": 622, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -22238,7 +22890,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ], "type": { @@ -22250,7 +22902,7 @@ "groups": [ { "title": "Properties", - "children": [600, 602, 601] + "children": [621, 623, 622] } ], "sources": [ @@ -22258,7 +22910,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 88, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88" } ] } @@ -22271,7 +22923,7 @@ } }, { - "id": 603, + "id": 624, "name": "order", "variant": "signature", "kind": 4096, @@ -22307,12 +22959,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 93, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93" } ], "parameters": [ { - "id": 604, + "id": 625, "name": "column", "variant": "param", "kind": 32768, @@ -22323,7 +22975,7 @@ } }, { - "id": 605, + "id": 626, "name": "options", "variant": "param", "kind": 32768, @@ -22333,14 +22985,14 @@ "type": { "type": "reflection", "declaration": { - "id": 606, + "id": 627, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 607, + "id": 628, "name": "ascending", "variant": "declaration", "kind": 1024, @@ -22352,7 +23004,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -22361,7 +23013,7 @@ } }, { - "id": 609, + "id": 630, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -22373,7 +23025,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -22382,7 +23034,7 @@ } }, { - "id": 608, + "id": 629, "name": "nullsFirst", "variant": "declaration", "kind": 1024, @@ -22394,7 +23046,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 37, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ], "type": { @@ -22406,7 +23058,7 @@ "groups": [ { "title": "Properties", - "children": [607, 609, 608] + "children": [628, 630, 629] } ], "sources": [ @@ -22414,7 +23066,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 95, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95" } ] } @@ -22429,7 +23081,7 @@ ] }, { - "id": 690, + "id": 711, "name": "overrideTypes", "variant": "declaration", "kind": 2048, @@ -22441,12 +23093,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "signatures": [ { - "id": 691, + "id": 712, "name": "overrideTypes", "variant": "signature", "kind": 4096, @@ -22494,12 +23146,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 309, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309" } ], "typeParameters": [ { - "id": 692, + "id": 713, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -22514,7 +23166,7 @@ } }, { - "id": 693, + "id": 714, "name": "Options", "variant": "typeParam", "kind": 131072, @@ -22530,14 +23182,14 @@ "type": { "type": "reflection", "declaration": { - "id": 694, + "id": 715, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 695, + "id": 716, "name": "merge", "variant": "declaration", "kind": 1024, @@ -22549,7 +23201,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 22, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -22561,7 +23213,7 @@ "groups": [ { "title": "Properties", - "children": [695] + "children": [716] } ], "sources": [ @@ -22569,7 +23221,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -22577,14 +23229,14 @@ "default": { "type": "reflection", "declaration": { - "id": 696, + "id": 717, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 697, + "id": 718, "name": "merge", "variant": "declaration", "kind": 1024, @@ -22594,7 +23246,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 44, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ], "type": { @@ -22606,7 +23258,7 @@ "groups": [ { "title": "Properties", - "children": [697] + "children": [718] } ], "sources": [ @@ -22614,7 +23266,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 311, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311" } ] } @@ -22623,11 +23275,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -22644,7 +23296,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -22652,7 +23304,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -22684,7 +23336,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -22714,7 +23366,7 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -22728,7 +23380,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -22740,7 +23392,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -22760,14 +23412,14 @@ "typeArguments": [ { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -22775,7 +23427,7 @@ }, { "type": "reference", - "target": 534, + "target": 555, "name": "Options", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -22794,7 +23446,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -22802,7 +23454,7 @@ }, { "type": "reference", - "target": 533, + "target": 554, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -22823,19 +23475,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 767, + "target": 788, "name": "default.overrideTypes" } } ], "inheritedFrom": { "type": "reference", - "target": 766, + "target": 787, "name": "default.overrideTypes" } }, { - "id": 617, + "id": 638, "name": "range", "variant": "declaration", "kind": 2048, @@ -22845,12 +23497,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "signatures": [ { - "id": 618, + "id": 639, "name": "range", "variant": "signature", "kind": 4096, @@ -22908,12 +23560,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 178, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178" } ], "parameters": [ { - "id": 619, + "id": 640, "name": "from", "variant": "param", "kind": 32768, @@ -22932,7 +23584,7 @@ } }, { - "id": 620, + "id": 641, "name": "to", "variant": "param", "kind": 32768, @@ -22951,7 +23603,7 @@ } }, { - "id": 621, + "id": 642, "name": "options", "variant": "param", "kind": 32768, @@ -22967,14 +23619,14 @@ "type": { "type": "reflection", "declaration": { - "id": 622, + "id": 643, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 623, + "id": 644, "name": "foreignTable", "variant": "declaration", "kind": 1024, @@ -23002,7 +23654,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -23011,7 +23663,7 @@ } }, { - "id": 624, + "id": 645, "name": "referencedTable", "variant": "declaration", "kind": 1024, @@ -23031,7 +23683,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 32, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ], "type": { @@ -23044,7 +23696,7 @@ "groups": [ { "title": "Properties", - "children": [623, 624] + "children": [644, 645] } ], "sources": [ @@ -23052,7 +23704,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 184, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184" } ] } @@ -23068,7 +23720,7 @@ ] }, { - "id": 650, + "id": 671, "name": "returns", "variant": "declaration", "kind": 2048, @@ -23078,12 +23730,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" } ], "signatures": [ { - "id": 651, + "id": 672, "name": "returns", "variant": "signature", "kind": 4096, @@ -23120,12 +23772,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 333, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333" } ], "typeParameters": [ { - "id": 652, + "id": 673, "name": "NewResult", "variant": "typeParam", "kind": 131072, @@ -23142,11 +23794,11 @@ ], "type": { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -23154,7 +23806,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -23162,7 +23814,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -23177,7 +23829,7 @@ "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -23185,7 +23837,7 @@ }, { "type": "reference", - "target": 493, + "target": 514, "name": "NewResult", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23196,7 +23848,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -23204,7 +23856,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -23212,7 +23864,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -23225,19 +23877,19 @@ }, "overwrites": { "type": "reference", - "target": 764, + "target": 785, "name": "default.returns" } } ], "overwrites": { "type": "reference", - "target": 763, + "target": 784, "name": "default.returns" } }, { - "id": 648, + "id": 669, "name": "rollback", "variant": "declaration", "kind": 2048, @@ -23247,12 +23899,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "signatures": [ { - "id": 649, + "id": 670, "name": "rollback", "variant": "signature", "kind": 4096, @@ -23278,7 +23930,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 322, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322" } ], "type": { @@ -23289,7 +23941,7 @@ ] }, { - "id": 574, + "id": 595, "name": "select", "variant": "declaration", "kind": 2048, @@ -23299,12 +23951,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "signatures": [ { - "id": 575, + "id": 596, "name": "select", "variant": "signature", "kind": 4096, @@ -23362,12 +24014,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26" } ], "typeParameters": [ { - "id": 576, + "id": 597, "name": "Query", "variant": "typeParam", "kind": 131072, @@ -23382,18 +24034,18 @@ } }, { - "id": 577, + "id": 598, "name": "NewResultOne", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 811, + "target": 832, "typeArguments": [ { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -23401,7 +24053,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -23409,7 +24061,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -23417,7 +24069,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -23425,14 +24077,14 @@ }, { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -23446,7 +24098,7 @@ ], "parameters": [ { - "id": 578, + "id": 599, "name": "columns", "variant": "param", "kind": 32768, @@ -23463,7 +24115,7 @@ }, "type": { "type": "reference", - "target": 417, + "target": 438, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23476,7 +24128,7 @@ "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -23484,7 +24136,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -23492,7 +24144,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -23502,7 +24154,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -23516,7 +24168,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -23533,7 +24185,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23541,7 +24193,7 @@ }, "falseType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23551,7 +24203,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 418, + "target": 439, "name": "NewResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23560,7 +24212,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -23568,7 +24220,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -23576,7 +24228,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -23591,7 +24243,7 @@ ] }, { - "id": 674, + "id": 695, "name": "setHeader", "variant": "declaration", "kind": 2048, @@ -23603,12 +24255,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "signatures": [ { - "id": 675, + "id": 696, "name": "setHeader", "variant": "signature", "kind": 4096, @@ -23628,12 +24280,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 85, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85" } ], "parameters": [ { - "id": 676, + "id": 697, "name": "name", "variant": "param", "kind": 32768, @@ -23644,7 +24296,7 @@ } }, { - "id": 677, + "id": 698, "name": "value", "variant": "param", "kind": 32768, @@ -23661,19 +24313,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 748, + "target": 769, "name": "default.setHeader" } } ], "inheritedFrom": { "type": "reference", - "target": 747, + "target": 768, "name": "default.setHeader" } }, { - "id": 628, + "id": 649, "name": "single", "variant": "declaration", "kind": 2048, @@ -23683,12 +24335,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "signatures": [ { - "id": 629, + "id": 650, "name": "single", "variant": "signature", "kind": 4096, @@ -23722,12 +24374,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 211, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211" } ], "typeParameters": [ { - "id": 630, + "id": 651, "name": "ResultOne", "variant": "typeParam", "kind": 131072, @@ -23736,7 +24388,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -23774,11 +24426,11 @@ ], "type": { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -23786,7 +24438,7 @@ }, { "type": "reference", - "target": 471, + "target": 492, "name": "ResultOne", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23800,7 +24452,7 @@ ] }, { - "id": 678, + "id": 699, "name": "then", "variant": "declaration", "kind": 2048, @@ -23812,12 +24464,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "signatures": [ { - "id": 679, + "id": 700, "name": "then", "variant": "signature", "kind": 4096, @@ -23848,23 +24500,23 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 91, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91" } ], "typeParameters": [ { - "id": 680, + "id": 701, "name": "TResult1", "variant": "typeParam", "kind": 131072, "flags": {}, "default": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -23876,7 +24528,7 @@ } }, { - "id": 681, + "id": 702, "name": "TResult2", "variant": "typeParam", "kind": 131072, @@ -23889,7 +24541,7 @@ ], "parameters": [ { - "id": 682, + "id": 703, "name": "onfulfilled", "variant": "param", "kind": 32768, @@ -23914,7 +24566,7 @@ { "type": "reflection", "declaration": { - "id": 683, + "id": 704, "name": "__type", "variant": "declaration", "kind": 65536, @@ -23924,12 +24576,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "signatures": [ { - "id": 684, + "id": 705, "name": "__type", "variant": "signature", "kind": 4096, @@ -23939,23 +24591,23 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 98, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98" } ], "parameters": [ { - "id": 685, + "id": 706, "name": "value", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -23972,7 +24624,7 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -23986,7 +24638,7 @@ "typeArguments": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24005,7 +24657,7 @@ } }, { - "id": 686, + "id": 707, "name": "onrejected", "variant": "param", "kind": 32768, @@ -24030,7 +24682,7 @@ { "type": "reflection", "declaration": { - "id": 687, + "id": 708, "name": "__type", "variant": "declaration", "kind": 65536, @@ -24040,12 +24692,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "signatures": [ { - "id": 688, + "id": 709, "name": "__type", "variant": "signature", "kind": 4096, @@ -24055,12 +24707,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 105, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105" } ], "parameters": [ { - "id": 689, + "id": 710, "name": "reason", "variant": "param", "kind": 32768, @@ -24076,7 +24728,7 @@ "types": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24090,7 +24742,7 @@ "typeArguments": [ { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24121,14 +24773,14 @@ "types": [ { "type": "reference", - "target": 521, + "target": 542, "name": "TResult1", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 522, + "target": 543, "name": "TResult2", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24141,19 +24793,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 752, + "target": 773, "name": "default.then" } } ], "inheritedFrom": { "type": "reference", - "target": 751, + "target": 772, "name": "default.then" } }, { - "id": 672, + "id": 693, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -24165,12 +24817,12 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "signatures": [ { - "id": 673, + "id": 694, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -24196,7 +24848,7 @@ "fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts", "line": 77, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77" } ], "type": { @@ -24204,11 +24856,11 @@ "types": [ { "type": "reference", - "target": 546, + "target": 567, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -24216,7 +24868,7 @@ }, { "type": "reference", - "target": 550, + "target": 571, "name": "Schema", "package": "@supabase/postgrest-js", "qualifiedName": "default.Schema", @@ -24224,7 +24876,7 @@ }, { "type": "reference", - "target": 551, + "target": 572, "name": "Row", "package": "@supabase/postgrest-js", "qualifiedName": "default.Row", @@ -24232,7 +24884,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -24240,7 +24892,7 @@ }, { "type": "reference", - "target": 553, + "target": 574, "name": "RelationName", "package": "@supabase/postgrest-js", "qualifiedName": "default.RelationName", @@ -24248,7 +24900,7 @@ }, { "type": "reference", - "target": 554, + "target": 575, "name": "Relationships", "package": "@supabase/postgrest-js", "qualifiedName": "default.Relationships", @@ -24256,7 +24908,7 @@ }, { "type": "reference", - "target": 555, + "target": 576, "name": "Method", "package": "@supabase/postgrest-js", "qualifiedName": "default.Method", @@ -24269,11 +24921,11 @@ }, { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -24281,7 +24933,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -24300,14 +24952,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 746, + "target": 767, "name": "default.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 745, + "target": 766, "name": "default.throwOnError" } } @@ -24315,16 +24967,16 @@ "groups": [ { "title": "Constructors", - "children": [547] + "children": [568] }, { "title": "Properties", - "children": [660, 663, 658, 671, 656, 659, 661, 662, 657] + "children": [681, 684, 679, 692, 677, 680, 682, 683, 678] }, { "title": "Methods", "children": [ - 625, 634, 638, 636, 610, 653, 631, 579, 690, 617, 650, 648, 574, 674, 628, 678, 672 + 646, 655, 659, 657, 631, 674, 652, 600, 711, 638, 671, 669, 595, 695, 649, 699, 693 ] } ], @@ -24333,25 +24985,25 @@ "fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8" } ], "typeParameters": [ { - "id": 698, + "id": 719, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } }, { - "id": 699, + "id": 720, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -24367,7 +25019,7 @@ } }, { - "id": 700, + "id": 721, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -24393,14 +25045,14 @@ } }, { - "id": 701, + "id": 722, "name": "Result", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 702, + "id": 723, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -24411,7 +25063,7 @@ } }, { - "id": 703, + "id": 724, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -24422,7 +25074,7 @@ } }, { - "id": 704, + "id": 725, "name": "Method", "variant": "typeParam", "kind": 131072, @@ -24436,11 +25088,11 @@ "extendedTypes": [ { "type": "reference", - "target": 705, + "target": 726, "typeArguments": [ { "type": "reference", - "target": 549, + "target": 570, "name": "ClientOptions", "package": "@supabase/postgrest-js", "qualifiedName": "default.ClientOptions", @@ -24448,7 +25100,7 @@ }, { "type": "reference", - "target": 552, + "target": 573, "name": "Result", "package": "@supabase/postgrest-js", "qualifiedName": "default.Result", @@ -24468,14 +25120,14 @@ ] }, { - "id": 791, + "id": 812, "name": "PostgrestResponseFailure", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 794, + "id": 815, "name": "count", "variant": "declaration", "kind": 1024, @@ -24485,7 +25137,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L23" } ], "type": { @@ -24494,7 +25146,7 @@ } }, { - "id": 793, + "id": 814, "name": "data", "variant": "declaration", "kind": 1024, @@ -24504,7 +25156,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L22" } ], "type": { @@ -24513,7 +25165,7 @@ } }, { - "id": 792, + "id": 813, "name": "error", "variant": "declaration", "kind": 1024, @@ -24523,19 +25175,19 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L21" } ], "type": { "type": "reference", - "target": 777, + "target": 798, "name": "PostgrestError", "package": "@supabase/postgrest-js", "qualifiedName": "default" } }, { - "id": 795, + "id": 816, "name": "status", "variant": "declaration", "kind": 1024, @@ -24547,7 +25199,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -24561,7 +25213,7 @@ } }, { - "id": 796, + "id": 817, "name": "statusText", "variant": "declaration", "kind": 1024, @@ -24573,7 +25225,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -24590,7 +25242,7 @@ "groups": [ { "title": "Properties", - "children": [794, 793, 792, 795, 796] + "children": [815, 814, 813, 816, 817] } ], "sources": [ @@ -24598,7 +25250,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 20, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L20" } ], "extendedTypes": [ @@ -24614,14 +25266,14 @@ ] }, { - "id": 797, + "id": 818, "name": "PostgrestResponseSuccess", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 800, + "id": 821, "name": "count", "variant": "declaration", "kind": 1024, @@ -24631,7 +25283,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L18" } ], "type": { @@ -24649,7 +25301,7 @@ } }, { - "id": 799, + "id": 820, "name": "data", "variant": "declaration", "kind": 1024, @@ -24659,12 +25311,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L17" } ], "type": { "type": "reference", - "target": 803, + "target": 824, "name": "T", "package": "@supabase/postgrest-js", "qualifiedName": "PostgrestResponseSuccess.T", @@ -24672,7 +25324,7 @@ } }, { - "id": 798, + "id": 819, "name": "error", "variant": "declaration", "kind": 1024, @@ -24682,7 +25334,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L16" } ], "type": { @@ -24691,7 +25343,7 @@ } }, { - "id": 801, + "id": 822, "name": "status", "variant": "declaration", "kind": 1024, @@ -24703,7 +25355,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L12" } ], "type": { @@ -24717,7 +25369,7 @@ } }, { - "id": 802, + "id": 823, "name": "statusText", "variant": "declaration", "kind": 1024, @@ -24729,7 +25381,7 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L13" } ], "type": { @@ -24746,7 +25398,7 @@ "groups": [ { "title": "Properties", - "children": [800, 799, 798, 801, 802] + "children": [821, 820, 819, 822, 823] } ], "sources": [ @@ -24754,12 +25406,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 15, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L15" } ], "typeParameters": [ { - "id": 803, + "id": 824, "name": "T", "variant": "typeParam", "kind": 131072, @@ -24779,7 +25431,7 @@ ] }, { - "id": 808, + "id": 829, "name": "PostgrestClientOptions", "variant": "declaration", "kind": 2097152, @@ -24789,20 +25441,20 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 54, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/common/common.ts#L54" } ], "type": { "type": "reflection", "declaration": { - "id": 809, + "id": 830, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 810, + "id": 831, "name": "PostgrestVersion", "variant": "declaration", "kind": 1024, @@ -24814,7 +25466,7 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/common/common.ts#L55" } ], "type": { @@ -24826,7 +25478,7 @@ "groups": [ { "title": "Properties", - "children": [810] + "children": [831] } ], "sources": [ @@ -24834,14 +25486,14 @@ "fileName": "packages/core/postgrest-js/src/types/common/common.ts", "line": 54, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/common/common.ts#L54" } ] } } }, { - "id": 806, + "id": 827, "name": "PostgrestMaybeSingleResponse", "variant": "declaration", "kind": 2097152, @@ -24851,12 +25503,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L30" } ], "typeParameters": [ { - "id": 807, + "id": 828, "name": "T", "variant": "typeParam", "kind": 131072, @@ -24865,14 +25517,14 @@ ], "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "union", "types": [ { "type": "reference", - "target": 807, + "target": 828, "name": "T", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24889,7 +25541,7 @@ } }, { - "id": 789, + "id": 810, "name": "PostgrestResponse", "variant": "declaration", "kind": 2097152, @@ -24899,12 +25551,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 31, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L31" } ], "typeParameters": [ { - "id": 790, + "id": 811, "name": "T", "variant": "typeParam", "kind": 131072, @@ -24913,13 +25565,13 @@ ], "type": { "type": "reference", - "target": 804, + "target": 825, "typeArguments": [ { "type": "array", "elementType": { "type": "reference", - "target": 790, + "target": 811, "name": "T", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24931,7 +25583,7 @@ } }, { - "id": 804, + "id": 825, "name": "PostgrestSingleResponse", "variant": "declaration", "kind": 2097152, @@ -24941,12 +25593,12 @@ "fileName": "packages/core/postgrest-js/src/types/types.ts", "line": 29, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/types/types.ts#L29" } ], "typeParameters": [ { - "id": 805, + "id": 826, "name": "T", "variant": "typeParam", "kind": 131072, @@ -24958,11 +25610,11 @@ "types": [ { "type": "reference", - "target": 797, + "target": 818, "typeArguments": [ { "type": "reference", - "target": 805, + "target": 826, "name": "T", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -24973,7 +25625,7 @@ }, { "type": "reference", - "target": 791, + "target": 812, "name": "PostgrestResponseFailure", "package": "@supabase/postgrest-js" } @@ -24981,7 +25633,7 @@ } }, { - "id": 811, + "id": 832, "name": "UnstableGetResult", "variant": "declaration", "kind": 2097152, @@ -24999,12 +25651,12 @@ "fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/select-query-parser/result.ts#L38" } ], "typeParameters": [ { - "id": 812, + "id": 833, "name": "Schema", "variant": "typeParam", "kind": 131072, @@ -25028,7 +25680,7 @@ } }, { - "id": 813, + "id": 834, "name": "Row", "variant": "typeParam", "kind": 131072, @@ -25062,7 +25714,7 @@ } }, { - "id": 814, + "id": 835, "name": "RelationName", "variant": "typeParam", "kind": 131072, @@ -25077,7 +25729,7 @@ } }, { - "id": 815, + "id": 836, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -25092,7 +25744,7 @@ } }, { - "id": 816, + "id": 837, "name": "Query", "variant": "typeParam", "kind": 131072, @@ -25111,14 +25763,14 @@ } }, { - "id": 817, + "id": 838, "name": "ClientOptions", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 808, + "target": 829, "name": "ClientServerOptions", "package": "@supabase/postgrest-js" } @@ -25135,7 +25787,7 @@ "typeArguments": [ { "type": "reference", - "target": 812, + "target": 833, "name": "Schema", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25159,7 +25811,7 @@ "typeArguments": [ { "type": "reference", - "target": 816, + "target": 837, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25200,7 +25852,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25255,7 +25907,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 815, + "target": 836, "name": "Relationships", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25275,7 +25927,7 @@ "typeArguments": [ { "type": "reference", - "target": 816, + "target": 837, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25333,7 +25985,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25344,7 +25996,7 @@ }, "trueType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25356,7 +26008,7 @@ }, { "type": "reference", - "target": 813, + "target": 834, "name": "Row", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25378,7 +26030,7 @@ }, "falseType": { "type": "reference", - "target": 813, + "target": 834, "name": "Row", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25395,7 +26047,7 @@ "typeArguments": [ { "type": "reference", - "target": 816, + "target": 837, "name": "Query", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25436,7 +26088,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25449,7 +26101,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 815, + "target": 836, "name": "Relationships", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25475,35 +26127,35 @@ "typeArguments": [ { "type": "reference", - "target": 817, + "target": 838, "name": "ClientOptions", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 812, + "target": 833, "name": "Schema", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 813, + "target": 834, "name": "Row", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 814, + "target": 835, "name": "RelationName", "package": "@supabase/postgrest-js", "refersToTypeParameter": true }, { "type": "reference", - "target": 815, + "target": 836, "name": "Relationships", "package": "@supabase/postgrest-js", "refersToTypeParameter": true @@ -25584,7 +26236,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L17" } ], "type": { @@ -25607,14 +26259,14 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L22" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 705, + "target": 726, "name": "default", "package": "@supabase/postgrest-js" } @@ -25631,7 +26283,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L18" } ], "type": { @@ -25655,14 +26307,14 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L23" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 777, + "target": 798, "name": "default", "package": "@supabase/postgrest-js" } @@ -25679,7 +26331,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L20" } ], "type": { @@ -25703,7 +26355,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L19" } ], "type": { @@ -25727,14 +26379,14 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L21" } ], "type": { "type": "query", "queryType": { "type": "reference", - "target": 546, + "target": 567, "name": "default", "package": "@supabase/postgrest-js" } @@ -25752,7 +26404,7 @@ "fileName": "packages/core/postgrest-js/src/index.ts", "line": 17, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/postgrest-js/src/index.ts#L17" } ] } @@ -25762,15 +26414,15 @@ "groups": [ { "title": "Classes", - "children": [705, 9, 777, 170, 75, 546] + "children": [726, 9, 798, 170, 75, 567] }, { "title": "Interfaces", - "children": [791, 797] + "children": [812, 818] }, { "title": "Type Aliases", - "children": [808, 806, 789, 804, 811] + "children": [829, 827, 810, 825, 832] }, { "title": "Variables", @@ -27128,11 +27780,11 @@ }, "289": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.is" + "qualifiedName": "default.regexMatch" }, "290": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.is" + "qualifiedName": "default.regexMatch" }, "291": { "sourceFileName": "src/PostgrestFilterBuilder.ts", @@ -27144,2101 +27796,2185 @@ }, "293": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "value" + "qualifiedName": "pattern" }, "294": { "sourceFileName": "src/PostgrestFilterBuilder.ts", - "qualifiedName": "default.is" + "qualifiedName": "default.regexMatch" }, "295": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "296": { + "296": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "pattern" + }, + "297": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.regexIMatch" + }, + "298": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.regexIMatch" + }, + "299": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ColumnName" + }, + "300": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "301": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "pattern" + }, + "302": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.regexIMatch" + }, + "303": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "304": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "pattern" + }, + "305": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.is" + }, + "306": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.is" + }, + "307": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ColumnName" + }, + "308": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "309": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "value" + }, + "310": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.is" + }, + "311": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "312": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "value" + }, + "313": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.isDistinct" + }, + "314": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "default.isDistinct" + }, + "315": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "ColumnName" + }, + "316": { + "sourceFileName": "src/PostgrestFilterBuilder.ts", + "qualifiedName": "column" + }, + "317": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "297": { + "318": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.in" }, - "298": { + "319": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.in" }, - "299": { + "320": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "300": { + "321": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "301": { + "322": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "values" }, - "302": { + "323": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.contains" }, - "303": { + "324": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.contains" }, - "304": { + "325": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "305": { + "326": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "306": { + "327": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "307": { + "328": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.contains" }, - "308": { + "329": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "309": { + "330": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "310": { + "331": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.containedBy" }, - "311": { + "332": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.containedBy" }, - "312": { + "333": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "313": { + "334": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "314": { + "335": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "315": { + "336": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.containedBy" }, - "316": { + "337": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "317": { + "338": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "318": { + "339": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGt" }, - "319": { + "340": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGt" }, - "320": { + "341": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "321": { + "342": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "322": { + "343": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "323": { + "344": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGt" }, - "324": { + "345": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "325": { + "346": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "326": { + "347": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGte" }, - "327": { + "348": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGte" }, - "328": { + "349": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "329": { + "350": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "330": { + "351": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "331": { + "352": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeGte" }, - "332": { + "353": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "333": { + "354": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "334": { + "355": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLt" }, - "335": { + "356": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLt" }, - "336": { + "357": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "337": { + "358": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "338": { + "359": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "339": { + "360": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLt" }, - "340": { + "361": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "341": { + "362": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "342": { + "363": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLte" }, - "343": { + "364": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLte" }, - "344": { + "365": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "345": { + "366": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "346": { + "367": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "347": { + "368": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeLte" }, - "348": { + "369": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "349": { + "370": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "350": { + "371": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeAdjacent" }, - "351": { + "372": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeAdjacent" }, - "352": { + "373": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "353": { + "374": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "354": { + "375": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "355": { + "376": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.rangeAdjacent" }, - "356": { + "377": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "357": { + "378": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "range" }, - "358": { + "379": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.overlaps" }, - "359": { + "380": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.overlaps" }, - "360": { + "381": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "361": { + "382": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "362": { + "383": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "363": { + "384": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.overlaps" }, - "364": { + "385": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "365": { + "386": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "366": { + "387": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.textSearch" }, - "367": { + "388": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.textSearch" }, - "368": { + "389": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "369": { + "390": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "370": { + "391": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "query" }, - "371": { + "392": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "options" }, - "372": { + "393": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type" }, - "373": { + "394": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.config" }, - "374": { + "395": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.type" }, - "375": { + "396": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.textSearch" }, - "376": { + "397": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "377": { + "398": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "query" }, - "378": { + "399": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "options" }, - "379": { + "400": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type" }, - "380": { + "401": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.config" }, - "381": { + "402": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.type" }, - "382": { + "403": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.match" }, - "383": { + "404": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.match" }, - "384": { + "405": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "385": { + "406": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "query" }, - "386": { + "407": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.match" }, - "387": { + "408": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "query" }, - "388": { + "409": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.not" }, - "389": { + "410": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.not" }, - "390": { + "411": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "391": { + "412": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "392": { + "413": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "operator" }, - "393": { + "414": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "394": { + "415": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.not" }, - "395": { + "416": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "396": { + "417": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "operator" }, - "397": { + "418": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "398": { + "419": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.or" }, - "399": { + "420": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.or" }, - "400": { + "421": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "filters" }, - "401": { + "422": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__1" }, - "402": { + "423": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type" }, - "403": { + "424": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "404": { + "425": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "405": { + "426": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.filter" }, - "406": { + "427": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.filter" }, - "407": { + "428": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "ColumnName" }, - "408": { + "429": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "409": { + "430": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "operator" }, - "410": { + "431": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "411": { + "432": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.filter" }, - "412": { + "433": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "column" }, - "413": { + "434": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "operator" }, - "414": { + "435": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "value" }, - "415": { + "436": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "416": { + "437": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "417": { + "438": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "Query" }, - "418": { + "439": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResultOne" }, - "419": { + "440": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "columns" }, - "420": { + "441": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "421": { + "442": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "422": { + "443": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "423": { + "444": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "424": { + "445": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "425": { + "446": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "426": { + "447": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "427": { + "448": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "428": { + "449": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "429": { + "450": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "430": { + "451": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "431": { + "452": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "432": { + "453": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "433": { + "454": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "434": { + "455": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "435": { + "456": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "436": { + "457": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "437": { + "458": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "438": { + "459": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "439": { + "460": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "440": { + "461": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "441": { + "462": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "442": { + "463": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "443": { + "464": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "444": { + "465": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "445": { + "466": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "446": { + "467": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "447": { + "468": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "448": { + "469": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "449": { + "470": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "450": { + "471": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "451": { + "472": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "452": { + "473": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "453": { + "474": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "count" }, - "454": { + "475": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__1" }, - "455": { + "476": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "456": { + "477": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "457": { + "478": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "458": { + "479": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "459": { + "480": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "460": { + "481": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "from" }, - "461": { + "482": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "to" }, - "462": { + "483": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__2" }, - "463": { + "484": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "464": { + "485": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "465": { + "486": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "466": { + "487": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "467": { + "488": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "468": { + "489": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "signal" }, - "469": { + "490": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "470": { + "491": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "471": { + "492": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "472": { + "493": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "473": { + "494": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "474": { + "495": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "475": { + "496": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "476": { + "497": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "477": { + "498": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "478": { + "499": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "479": { + "500": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "480": { + "501": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "481": { + "502": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__0" }, - "482": { + "503": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "483": { + "504": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.analyze" }, - "484": { + "505": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.verbose" }, - "485": { + "506": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.settings" }, - "486": { + "507": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.buffers" }, - "487": { + "508": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.wal" }, - "488": { + "509": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.format" }, - "489": { + "510": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "490": { + "511": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "491": { + "512": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "492": { + "513": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "493": { + "514": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResult" }, - "494": { + "515": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "495": { + "516": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "496": { + "517": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "value" }, - "497": { + "518": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.method" }, - "498": { + "519": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.url" }, - "499": { + "520": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.headers" }, - "500": { + "521": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.schema" }, - "501": { + "522": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.body" }, - "502": { + "523": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.shouldThrowOnError" }, - "503": { + "524": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.signal" }, - "504": { + "525": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.fetch" }, - "505": { + "526": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "506": { + "527": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "507": { + "528": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "508": { + "529": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "509": { + "530": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "510": { + "531": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "511": { + "532": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "512": { + "533": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.isMaybeSingle" }, - "513": { + "534": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "514": { + "535": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "515": { + "536": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "516": { + "537": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "517": { + "538": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "name" }, - "518": { + "539": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "519": { + "540": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "520": { + "541": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "521": { + "542": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult1" }, - "522": { + "543": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult2" }, - "523": { + "544": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onfulfilled" }, - "524": { + "545": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "525": { + "546": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "526": { + "547": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "527": { + "548": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onrejected" }, - "528": { + "549": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "529": { + "550": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "530": { + "551": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "reason" }, - "531": { + "552": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "532": { + "553": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "533": { + "554": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "534": { + "555": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "Options" }, - "535": { + "556": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "536": { + "557": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "537": { + "558": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "538": { + "559": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "539": { + "560": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "540": { + "561": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Schema" }, - "541": { + "562": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Row" }, - "542": { + "563": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Result" }, - "543": { + "564": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.RelationName" }, - "544": { + "565": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Relationships" }, - "545": { + "566": { "sourceFileName": "src/PostgrestFilterBuilder.ts", "qualifiedName": "default.Method" }, - "546": { + "567": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default" }, - "547": { + "568": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.__constructor" }, - "548": { + "569": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default" }, - "549": { + "570": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "550": { + "571": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Schema" }, - "551": { + "572": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Row" }, - "552": { + "573": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Result" }, - "553": { + "574": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.RelationName" }, - "554": { + "575": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Relationships" }, - "555": { + "576": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Method" }, - "556": { + "577": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "builder" }, - "557": { + "578": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "558": { + "579": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.method" }, - "559": { + "580": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.url" }, - "560": { + "581": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.headers" }, - "561": { + "582": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.schema" }, - "562": { + "583": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.body" }, - "563": { + "584": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.shouldThrowOnError" }, - "564": { + "585": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.signal" }, - "565": { + "586": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.fetch" }, - "566": { + "587": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "567": { + "588": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "568": { + "589": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "569": { + "590": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "570": { + "591": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "571": { + "592": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "572": { + "593": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "573": { + "594": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.isMaybeSingle" }, - "574": { + "595": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "575": { + "596": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.select" }, - "576": { + "597": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "Query" }, - "577": { + "598": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResultOne" }, - "578": { + "599": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "columns" }, - "579": { + "600": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "580": { + "601": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "581": { + "602": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "582": { + "603": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "583": { + "604": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "584": { + "605": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "585": { + "606": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "586": { + "607": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "587": { + "608": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "588": { + "609": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "589": { + "610": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "590": { + "611": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "591": { + "612": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "592": { + "613": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "593": { + "614": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "594": { + "615": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "595": { + "616": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "596": { + "617": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ColumnName" }, - "597": { + "618": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "598": { + "619": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "599": { + "620": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "600": { + "621": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "601": { + "622": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "602": { + "623": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "603": { + "624": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.order" }, - "604": { + "625": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "column" }, - "605": { + "626": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "options" }, - "606": { + "627": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "607": { + "628": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.ascending" }, - "608": { + "629": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.nullsFirst" }, - "609": { + "630": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "610": { + "631": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "611": { + "632": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.limit" }, - "612": { + "633": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "count" }, - "613": { + "634": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__1" }, - "614": { + "635": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "615": { + "636": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "616": { + "637": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "617": { + "638": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "618": { + "639": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.range" }, - "619": { + "640": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "from" }, - "620": { + "641": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "to" }, - "621": { + "642": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__2" }, - "622": { + "643": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "623": { + "644": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.foreignTable" }, - "624": { + "645": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.referencedTable" }, - "625": { + "646": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "626": { + "647": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.abortSignal" }, - "627": { + "648": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "signal" }, - "628": { + "649": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "629": { + "650": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.single" }, - "630": { + "651": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "631": { + "652": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "632": { + "653": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maybeSingle" }, - "633": { + "654": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "ResultOne" }, - "634": { + "655": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "635": { + "656": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.csv" }, - "636": { + "657": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "637": { + "658": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.geojson" }, - "638": { + "659": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "639": { + "660": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.explain" }, - "640": { + "661": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__0" }, - "641": { + "662": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type" }, - "642": { + "663": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.analyze" }, - "643": { + "664": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.verbose" }, - "644": { + "665": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.settings" }, - "645": { + "666": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.buffers" }, - "646": { + "667": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.wal" }, - "647": { + "668": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "__type.format" }, - "648": { + "669": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "649": { + "670": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.rollback" }, - "650": { + "671": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "651": { + "672": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.returns" }, - "652": { + "673": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "NewResult" }, - "653": { + "674": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "654": { + "675": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.maxAffected" }, - "655": { + "676": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "value" }, - "656": { + "677": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.method" }, - "657": { + "678": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.url" }, - "658": { + "679": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.headers" }, - "659": { + "680": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.schema" }, - "660": { + "681": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.body" }, - "661": { + "682": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.shouldThrowOnError" }, - "662": { + "683": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.signal" }, - "663": { + "684": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.fetch" }, - "664": { + "685": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "665": { + "686": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "666": { + "687": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "667": { + "688": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "668": { + "689": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "669": { + "690": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "670": { + "691": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "671": { + "692": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.isMaybeSingle" }, - "672": { + "693": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "673": { + "694": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "674": { + "695": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "675": { + "696": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "676": { + "697": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "name" }, - "677": { + "698": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "678": { + "699": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "679": { + "700": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "680": { + "701": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult1" }, - "681": { + "702": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult2" }, - "682": { + "703": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onfulfilled" }, - "683": { + "704": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "684": { + "705": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "685": { + "706": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "686": { + "707": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onrejected" }, - "687": { + "708": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "688": { + "709": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "689": { + "710": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "reason" }, - "690": { + "711": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "691": { + "712": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "692": { + "713": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "693": { + "714": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "Options" }, - "694": { + "715": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "695": { + "716": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "696": { + "717": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "697": { + "718": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "698": { + "719": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "699": { + "720": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Schema" }, - "700": { + "721": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Row" }, - "701": { + "722": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Result" }, - "702": { + "723": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.RelationName" }, - "703": { + "724": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Relationships" }, - "704": { + "725": { "sourceFileName": "src/PostgrestTransformBuilder.ts", "qualifiedName": "default.Method" }, - "705": { + "726": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default" }, - "706": { + "727": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.__constructor" }, - "707": { + "728": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default" }, - "708": { + "729": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "709": { + "730": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.Result" }, - "710": { + "731": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ThrowOnError" }, - "711": { + "732": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "builder" }, - "712": { + "733": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "713": { + "734": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.method" }, - "714": { + "735": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.url" }, - "715": { + "736": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.headers" }, - "716": { + "737": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.schema" }, - "717": { + "738": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.body" }, - "718": { + "739": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.shouldThrowOnError" }, - "719": { + "740": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.signal" }, - "720": { + "741": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.fetch" }, - "721": { + "742": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "722": { + "743": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "723": { + "744": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "724": { + "745": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "725": { + "746": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "726": { + "747": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "727": { + "748": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "728": { + "749": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.isMaybeSingle" }, - "729": { + "750": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.method" }, - "730": { + "751": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.url" }, - "731": { + "752": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.headers" }, - "732": { + "753": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.schema" }, - "733": { + "754": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.body" }, - "734": { + "755": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.shouldThrowOnError" }, - "735": { + "756": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.signal" }, - "736": { + "757": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.fetch" }, - "737": { + "758": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "738": { + "759": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "739": { + "760": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "740": { + "761": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "741": { + "762": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "742": { + "763": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "743": { + "764": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "744": { + "765": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.isMaybeSingle" }, - "745": { + "766": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "746": { + "767": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.throwOnError" }, - "747": { + "768": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "748": { + "769": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.setHeader" }, - "749": { + "770": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "name" }, - "750": { + "771": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "751": { + "772": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "752": { + "773": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.then" }, - "753": { + "774": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult1" }, - "754": { + "775": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "TResult2" }, - "755": { + "776": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onfulfilled" }, - "756": { + "777": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "757": { + "778": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "758": { + "779": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "value" }, - "759": { + "780": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "onrejected" }, - "760": { + "781": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "761": { + "782": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "762": { + "783": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "reason" }, - "763": { + "784": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.returns" }, - "764": { + "785": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.returns" }, - "765": { + "786": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "766": { + "787": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "767": { + "788": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.overrideTypes" }, - "768": { + "789": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "NewResult" }, - "769": { + "790": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "Options" }, - "770": { + "791": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "771": { + "792": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "772": { + "793": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type" }, - "773": { + "794": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "__type.merge" }, - "774": { + "795": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ClientOptions" }, - "775": { + "796": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.Result" }, - "776": { + "797": { "sourceFileName": "src/PostgrestBuilder.ts", "qualifiedName": "default.ThrowOnError" }, - "777": { + "798": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default" }, - "778": { + "799": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.__constructor" }, - "779": { + "800": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default" }, - "780": { + "801": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "context" }, - "781": { + "802": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type" }, - "782": { + "803": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.message" }, - "783": { + "804": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.details" }, - "784": { + "805": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.hint" }, - "785": { + "806": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "__type.code" }, - "786": { + "807": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.details" }, - "787": { + "808": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.hint" }, - "788": { + "809": { "sourceFileName": "src/PostgrestError.ts", "qualifiedName": "default.code" }, - "789": { + "810": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponse" }, - "790": { + "811": { "sourceFileName": "src/types/types.ts", "qualifiedName": "T" }, - "791": { + "812": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure" }, - "792": { + "813": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure.error" }, - "793": { + "814": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure.data" }, - "794": { + "815": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseFailure.count" }, - "795": { + "816": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.status" }, - "796": { + "817": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.statusText" }, - "797": { + "818": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess" }, - "798": { + "819": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.error" }, - "799": { + "820": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.data" }, - "800": { + "821": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.count" }, - "801": { + "822": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.status" }, - "802": { + "823": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseBase.statusText" }, - "803": { + "824": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestResponseSuccess.T" }, - "804": { + "825": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestSingleResponse" }, - "805": { + "826": { "sourceFileName": "src/types/types.ts", "qualifiedName": "T" }, - "806": { + "827": { "sourceFileName": "src/types/types.ts", "qualifiedName": "PostgrestMaybeSingleResponse" }, - "807": { + "828": { "sourceFileName": "src/types/types.ts", "qualifiedName": "T" }, - "808": { + "829": { "sourceFileName": "src/types/common/common.ts", "qualifiedName": "ClientServerOptions" }, - "809": { + "830": { "sourceFileName": "src/types/common/common.ts", "qualifiedName": "__type" }, - "810": { + "831": { "sourceFileName": "src/types/common/common.ts", "qualifiedName": "__type.PostgrestVersion" }, - "811": { + "832": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "GetResult" }, - "812": { + "833": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Schema" }, - "813": { + "834": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Row" }, - "814": { + "835": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "RelationName" }, - "815": { + "836": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Relationships" }, - "816": { + "837": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "Query" }, - "817": { + "838": { "sourceFileName": "src/select-query-parser/result.ts", "qualifiedName": "ClientOptions" } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/realtime.json b/apps/docs/spec/enrichments/tsdoc_v2/realtime.json index f3aa7fbdfe9d2..9988bce232c13 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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L487" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L612" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L613" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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 f3aa7fbdfe9d2..9988bce232c13 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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L134" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L170" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L167" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L174" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L524" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L462" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L465" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L464" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L461" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L467" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L475" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L478" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L477" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L480" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L474" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L488" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L489" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L487" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L498" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L506" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L507" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L505" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L515" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L516" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L514" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L612" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L613" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L611" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L610" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L614" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L104" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L105" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L107" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L121" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L126" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L127" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L131" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L132" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L129" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L2" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L76" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L110" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L122" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L96" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L95" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L91" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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 8b5a87ac18d30..a615ab9abf803 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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -521,7 +521,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L26" } ], "signatures": [ @@ -564,7 +564,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L26" } ], "parameters": [ @@ -598,7 +598,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 28, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L28" } ], "indexSignatures": [ @@ -613,7 +613,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 28, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L28" } ], "parameters": [ @@ -904,9 +904,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/StorageClient.ts", - "line": 90, + "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L79" } ], "getSignature": { @@ -940,24 +940,16 @@ "text": "A StorageAnalyticsClient instance configured with the current storage settings." } ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = createClient(url, key)\nconst analytics = client.storage.analytics\n\n// Create an analytics bucket\nawait analytics.createBucket('my-analytics-bucket')\n\n// List all analytics buckets\nconst { data: buckets } = await analytics.listBuckets()\n\n// Delete an analytics bucket\nawait analytics.deleteBucket('old-analytics-bucket')\n```" - } - ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/StorageClient.ts", - "line": 90, + "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L79" } ], "type": { @@ -980,7 +972,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 61, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L61" } ], "getSignature": { @@ -1023,7 +1015,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 61, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L61" } ], "type": { @@ -1047,7 +1039,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "signatures": [ @@ -1081,7 +1073,7 @@ "content": [ { "kind": "text", - "text": "Promise with newly created bucket id or error" + "text": "Promise with response containing newly created bucket name or error" } ] }, @@ -1110,7 +1102,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "parameters": [ @@ -1169,7 +1161,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" } ], "type": { @@ -1210,7 +1202,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -1250,7 +1242,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -1291,7 +1283,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 207, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" } ], "type": { @@ -1313,7 +1305,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -1351,7 +1343,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 213, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" } ], "type": { @@ -1387,7 +1379,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" } ], "type": { @@ -1407,7 +1399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 212, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" } ] } @@ -1432,7 +1424,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 217, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" } ], "type": { @@ -1451,7 +1443,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 218, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" } ], "type": { @@ -1473,7 +1465,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 216, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" } ] } @@ -1510,7 +1502,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "signatures": [ @@ -1581,7 +1573,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "parameters": [ @@ -1635,7 +1627,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -1658,7 +1650,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -1678,7 +1670,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ] } @@ -1695,7 +1687,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 408, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" } ], "type": { @@ -1715,7 +1707,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 406, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" } ] } @@ -1740,7 +1732,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" } ], "type": { @@ -1759,7 +1751,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 412, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" } ], "type": { @@ -1781,7 +1773,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 410, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" } ] } @@ -1818,7 +1810,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "signatures": [ @@ -1881,7 +1873,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "parameters": [ @@ -1935,7 +1927,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -1958,7 +1950,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -1978,7 +1970,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ] } @@ -1995,7 +1987,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 353, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" } ], "type": { @@ -2015,7 +2007,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 351, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" } ] } @@ -2040,7 +2032,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" } ], "type": { @@ -2059,7 +2051,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 357, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" } ], "type": { @@ -2081,7 +2073,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 355, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" } ] } @@ -2116,7 +2108,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L46" } ], "signatures": [ @@ -2148,7 +2140,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst avatars = storage.from('avatars')\n```" + "text": "```typescript\nconst avatars = supabase.storage.from('avatars')\n```" } ] } @@ -2159,7 +2151,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L46" } ], "parameters": [ @@ -2206,7 +2198,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "signatures": [ @@ -2240,7 +2232,7 @@ "content": [ { "kind": "text", - "text": "Promise with bucket details or error" + "text": "Promise with response containing bucket details or error" } ] }, @@ -2269,7 +2261,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "parameters": [ @@ -2323,7 +2315,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" } ], "type": { @@ -2344,7 +2336,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" } ], "type": { @@ -2364,7 +2356,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 140, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" } ] } @@ -2389,7 +2381,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" } ], "type": { @@ -2408,7 +2400,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 146, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" } ], "type": { @@ -2430,7 +2422,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" } ] } @@ -2467,7 +2459,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "signatures": [ @@ -2501,7 +2493,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets or error" + "text": "Promise with response containing array of buckets or error" } ] }, @@ -2532,7 +2524,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "parameters": [ @@ -2622,7 +2614,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 80, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" } ], "type": { @@ -2646,7 +2638,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 81, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" } ], "type": { @@ -2666,7 +2658,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" } ] } @@ -2691,7 +2683,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 84, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" } ], "type": { @@ -2710,7 +2702,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 85, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" } ], "type": { @@ -2732,7 +2724,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 83, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" } ] } @@ -2770,7 +2762,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "signatures": [ @@ -2806,7 +2798,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "type": { @@ -2839,7 +2831,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "signatures": [ @@ -2873,7 +2865,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -2902,7 +2894,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "parameters": [ @@ -2961,7 +2953,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 288, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" } ], "type": { @@ -3002,7 +2994,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 287, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" } ], "type": { @@ -3042,7 +3034,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" } ], "type": { @@ -3062,7 +3054,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 285, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" } ] } @@ -3099,7 +3091,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -3122,7 +3114,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -3142,7 +3134,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ] } @@ -3159,7 +3151,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 293, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" } ], "type": { @@ -3179,7 +3171,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 291, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" } ] } @@ -3204,7 +3196,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 296, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" } ], "type": { @@ -3223,7 +3215,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 297, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" } ], "type": { @@ -3245,7 +3237,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 295, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" } ] } @@ -3303,7 +3295,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L11" } ], "extendedTypes": [ @@ -3333,7 +3325,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 4, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L4" } ], "signatures": [ @@ -3348,7 +3340,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 4, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L4" } ], "parameters": [ @@ -3395,7 +3387,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 1, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L1" } ], "extendedTypes": [ @@ -3440,7 +3432,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L38" } ], "signatures": [ @@ -3455,7 +3447,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L38" } ], "parameters": [ @@ -3512,7 +3504,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L36" } ], "type": { @@ -3536,7 +3528,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 35, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L35" } ], "extendedTypes": [ @@ -3574,7 +3566,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L30" } ], "signatures": [ @@ -3589,7 +3581,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L30" } ], "parameters": [ @@ -3657,7 +3649,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L27" } ], "type": { @@ -3676,7 +3668,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L28" } ], "type": { @@ -3695,7 +3687,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L37" } ], "signatures": [ @@ -3710,7 +3702,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L37" } ], "type": { @@ -3733,7 +3725,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 40, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L40" } ], "type": { @@ -3753,7 +3745,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 39, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L39" } ], "type": { @@ -3773,7 +3765,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 41, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L41" } ], "type": { @@ -3793,7 +3785,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L42" } ], "type": { @@ -3814,7 +3806,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 38, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L38" } ] } @@ -3842,7 +3834,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 26, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L26" } ], "extendedTypes": [ @@ -3864,19 +3856,11 @@ "summary": [ { "kind": "text", - "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", - "text": "```typescript\nimport { StorageClient } from '@supabase/storage-js'\n\nconst storageClient = new StorageClient(url, headers)\nconst vectors = storageClient.vectors\n\n// Use vector operations\nawait vectors.createBucket('embeddings-prod')\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({ ... })\n```" - }, - { - "kind": "text", - "text": "\n\n2. **Standalone (for vector-only applications):**\n" + "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\n" }, { "kind": "code", - "text": "```typescript\nimport { StorageVectorsClient } from '@supabase/storage-js'\n\nconst vectorsClient = new StorageVectorsClient('https://api.example.com', {\n headers: { 'Authorization': 'Bearer token' }\n})\n\n// Access bucket operations\nawait vectorsClient.createBucket('embeddings-prod')\n\n// Access index operations via buckets\nconst bucket = vectorsClient.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine'\n})\n\n// Access vector operations via index\nconst index = bucket.index('documents')\nawait index.putVectors({\n vectors: [\n { key: 'doc-1', data: { float32: [...] }, metadata: { title: 'Intro' } }\n ]\n})\n\n// Query similar vectors\nconst { data } = await index.queryVectors({\n queryVector: { float32: [...] },\n topK: 5,\n returnDistance: true\n})\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .createBucket('embeddings-prod')\n\n// Access index operations via buckets\nconst bucket = supabase.storage.vectors.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"] @@ -3891,9 +3875,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 112, + "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98" } ], "signatures": [ @@ -3935,9 +3919,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 112, + "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98" } ], "parameters": [ @@ -4013,42 +3997,38 @@ }, "overwrites": { "type": "reference", - "target": 907, - "name": "default.constructor" + "target": -1, + "name": "VectorBucketApi.constructor" } } ], "overwrites": { "type": "reference", - "target": 906, - "name": "default.constructor" + "target": -1, + "name": "VectorBucketApi.constructor" } }, { - "id": 776, + "id": 760, "name": "createBucket", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" } ], "signatures": [ { - "id": 777, + "id": 761, "name": "createBucket", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { @@ -4075,45 +4055,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if bucket already exists (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorMaxBucketsExceeded`" - }, - { - "kind": "text", - "text": " if quota exceeded (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.createBucket('embeddings-prod')\nif (error) {\n console.error('Failed to create bucket:', error.message)\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .createBucket('embeddings-prod')\n```" } ] } @@ -4122,15 +4069,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" } ], "parameters": [ { - "id": 778, + "id": 762, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -4172,49 +4119,45 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 938, - "name": "default.createBucket" + "target": -1, + "name": "VectorBucketApi.createBucket" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 937, - "name": "default.createBucket" + "target": -1, + "name": "VectorBucketApi.createBucket" } }, { - "id": 787, + "id": 771, "name": "deleteBucket", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L226" } ], "signatures": [ { - "id": 788, + "id": 772, "name": "deleteBucket", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "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." + "text": "Deletes a vector bucket (bucket must be empty)\nAll indexes must be deleted before deleting 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": [ @@ -4236,45 +4179,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorBucketNotEmpty`" - }, - { - "kind": "text", - "text": " if bucket contains indexes (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\n// Delete all indexes first, then delete bucket\nconst { error } = await client.deleteBucket('old-bucket')\nif (error?.statusCode === 'S3VectorBucketNotEmpty') {\n console.error('Must delete all indexes first')\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .deleteBucket('embeddings-old')\n```" } ] } @@ -4283,15 +4193,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L226" } ], "parameters": [ { - "id": 789, + "id": 773, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -4333,17 +4243,17 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 949, - "name": "default.deleteBucket" + "target": -1, + "name": "VectorBucketApi.deleteBucket" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 948, - "name": "default.deleteBucket" + "target": -1, + "name": "VectorBucketApi.deleteBucket" } }, { @@ -4355,9 +4265,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 145, + "line": 120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L120" } ], "signatures": [ @@ -4398,7 +4308,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\n\n// Create an index in this bucket\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine'\n})\n\n// List indexes in this bucket\nconst { data } = await bucket.listIndexes()\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\n```" } ] } @@ -4408,9 +4318,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 145, + "line": 120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L120" } ], "parameters": [ @@ -4444,35 +4354,31 @@ ] }, { - "id": 779, + "id": 763, "name": "getBucket", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ], "signatures": [ { - "id": 780, + "id": 764, "name": "getBucket", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "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." + "text": "Retrieves metadata for a specific vector bucket\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type." } ], "blockTags": [ @@ -4494,37 +4400,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getBucket('embeddings-prod')\nif (data) {\n console.log('Bucket created at:', new Date(data.vectorBucket.creationTime! * 1000))\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .getBucket('embeddings-prod')\n\nconsole.log('Bucket created:', data?.vectorBucket.creationTime)\n```" } ] } @@ -4533,15 +4414,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ], "parameters": [ { - "id": 781, + "id": 765, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -4550,7 +4431,7 @@ "summary": [ { "kind": "text", - "text": "Name of the vector bucket to retrieve" + "text": "Name of the vector bucket" } ] }, @@ -4574,24 +4455,24 @@ { "type": "reflection", "declaration": { - "id": 782, + "id": 766, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 783, + "id": 767, "name": "vectorBucket", "variant": "declaration", "kind": 1024, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ], "type": { @@ -4605,15 +4486,15 @@ "groups": [ { "title": "Properties", - "children": [783] + "children": [767] } ], "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ] } @@ -4626,49 +4507,45 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 941, - "name": "default.getBucket" + "target": -1, + "name": "VectorBucketApi.getBucket" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 940, - "name": "default.getBucket" + "target": -1, + "name": "VectorBucketApi.getBucket" } }, { - "id": 784, + "id": 768, "name": "listBuckets", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 199, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L199" } ], "signatures": [ { - "id": 785, + "id": 769, "name": "listBuckets", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "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." + "text": "Lists all vector buckets with optional filtering and pagination\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type." } ], "blockTags": [ @@ -4686,24 +4563,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets and pagination token" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" + "text": "Promise with list of buckets or error" } ] }, @@ -4712,7 +4572,7 @@ "content": [ { "kind": "code", - "text": "```typescript\n// List all buckets with prefix 'prod-'\nconst { data, error } = await client.listBuckets({ prefix: 'prod-' })\nif (data) {\n console.log('Found buckets:', data.buckets.length)\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listBuckets({ nextToken: data.nextToken })\n }\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .listBuckets({ prefix: 'embeddings-' })\n\ndata?.vectorBuckets.forEach(bucket => {\n console.log(bucket.vectorBucketName)\n})\n```" } ] } @@ -4721,15 +4581,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 199, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L199" } ], "parameters": [ { - "id": 786, + "id": 770, "name": "options", "variant": "param", "kind": 32768, @@ -4738,7 +4598,7 @@ "summary": [ { "kind": "text", - "text": "Listing options" + "text": "Optional filters (prefix, maxResults, nextToken)" } ] }, @@ -4746,27 +4606,7 @@ "type": "reference", "target": 1085, "name": "ListVectorBucketsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "prefix": [ - { - "kind": "text", - "text": "Filter buckets by name prefix" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 100)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ] - } + "package": "@supabase/storage-js" }, "defaultValue": "{}" } @@ -4796,21 +4636,21 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 946, - "name": "default.listBuckets" + "target": -1, + "name": "VectorBucketApi.listBuckets" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 945, - "name": "default.listBuckets" + "target": -1, + "name": "VectorBucketApi.listBuckets" } }, { - "id": 774, + "id": 788, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -4821,14 +4661,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, + "line": 31, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L31" } ], "signatures": [ { - "id": 775, + "id": 789, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -4839,36 +4679,7 @@ "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**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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createBucket('my-bucket') // throws on error\n```" - } - ] + "text": "Enable throwing errors instead of returning them in the response" } ], "modifierTags": ["@alpha"] @@ -4876,9 +4687,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, + "line": 31, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L31" } ], "type": { @@ -4887,15 +4698,15 @@ }, "inheritedFrom": { "type": "reference", - "target": 936, - "name": "default.throwOnError" + "target": -1, + "name": "VectorBucketApi.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 935, - "name": "default.throwOnError" + "target": -1, + "name": "VectorBucketApi.throwOnError" } } ], @@ -4906,27 +4717,31 @@ }, { "title": "Methods", - "children": [776, 787, 757, 779, 784, 774] + "children": [760, 771, 757, 763, 768, 788] } ], "categories": [ { - "title": "Vector Buckets", - "children": [753, 776, 787, 757, 779, 784, 774] - } + "title": "Other", + "children": [788] + }, + { + "title": "Vector Buckets", + "children": [753, 760, 771, 757, 763, 768] + } ], "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 94, + "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L80" } ], "extendedTypes": [ { "type": "reference", - "target": 905, + "target": -1, "name": "default", "package": "@supabase/storage-js" } @@ -4958,7 +4773,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L7" } ], "signatures": [ @@ -4973,7 +4788,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L7" } ], "parameters": [ @@ -5020,7 +4835,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 4, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L4" } ], "extendedTypes": [ @@ -5073,7 +4888,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L54" } ], "signatures": [ @@ -5088,7 +4903,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L54" } ], "parameters": [ @@ -5145,7 +4960,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L52" } ], "type": { @@ -5169,7 +4984,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 51, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L51" } ], "extendedTypes": [ @@ -5182,8 +4997,8 @@ ] }, { - "id": 905, - "name": "VectorBucketApi", + "id": 790, + "name": "VectorBucketScope", "variant": "declaration", "kind": 128, "flags": {}, @@ -5191,30 +5006,30 @@ "summary": [ { "kind": "text", - "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." + "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": [ { - "id": 906, + "id": 791, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L256" } ], "signatures": [ { - "id": 907, - "name": "VectorBucketApi", + "id": 792, + "name": "VectorBucketScope", "variant": "signature", "kind": 16384, "flags": {}, @@ -5222,7 +5037,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -5240,7 +5055,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\n```" } ] } @@ -5249,80 +5064,64 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L256" } ], "parameters": [ { - "id": 908, + "id": 793, "name": "url", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The base URL for the storage vectors API" - } - ] - }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 909, + "id": 794, "name": "headers", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "HTTP headers to include in requests" - } - ] - }, "type": { "type": "reflection", "declaration": { - "id": 910, + "id": 795, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, - "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 258, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L258" } ], "indexSignatures": [ { - "id": 911, + "id": 796, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, - "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 258, + "character": 15, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L258" } ], "parameters": [ { - "id": 912, + "id": 797, "name": "key", "variant": "param", "kind": 32768, @@ -5340,29 +5139,31 @@ } ] } - }, - "defaultValue": "{}" + } + }, + { + "id": 798, + "name": "vectorBucketName", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } }, { - "id": 913, + "id": 799, "name": "fetch", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Optional custom fetch implementation" - } - ] - }, "type": { "type": "reflection", "declaration": { - "id": 914, + "id": 800, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5381,7 +5182,7 @@ ], "signatures": [ { - "id": 915, + "id": 801, "name": "__type", "variant": "signature", "kind": 4096, @@ -5403,7 +5204,7 @@ ], "parameters": [ { - "id": 916, + "id": 802, "name": "input", "variant": "param", "kind": 32768, @@ -5433,7 +5234,7 @@ } }, { - "id": 917, + "id": 803, "name": "init", "variant": "param", "kind": 32768, @@ -5473,7 +5274,7 @@ } }, { - "id": 918, + "id": 804, "name": "__type", "variant": "signature", "kind": 4096, @@ -5495,7 +5296,7 @@ ], "parameters": [ { - "id": 919, + "id": 805, "name": "input", "variant": "param", "kind": 32768, @@ -5529,7 +5330,7 @@ } }, { - "id": 920, + "id": 806, "name": "init", "variant": "param", "kind": 32768, @@ -5575,32 +5376,41 @@ ], "type": { "type": "reference", - "target": 905, - "name": "VectorBucketApi", - "package": "@supabase/storage-js", - "qualifiedName": "default" + "target": 790, + "name": "VectorBucketScope", + "package": "@supabase/storage-js" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.constructor" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.constructor" + } }, { - "id": 937, - "name": "createBucket", + "id": 808, + "name": "createIndex", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 293, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L293" } ], "signatures": [ { - "id": 938, - "name": "createBucket", + "id": 809, + "name": "createIndex", "variant": "signature", "kind": 4096, "flags": {}, @@ -5608,7 +5418,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -5630,45 +5440,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if bucket already exists (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorMaxBucketsExceeded`" - }, - { - "kind": "text", - "text": " if quota exceeded (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.createBucket('embeddings-prod')\nif (error) {\n console.error('Failed to create bucket:', error.message)\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('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```" } ] } @@ -5677,16 +5454,16 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 293, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L293" } ], "parameters": [ { - "id": 939, - "name": "vectorBucketName", + "id": 810, + "name": "options", "variant": "param", "kind": 32768, "flags": {}, @@ -5694,13 +5471,30 @@ "summary": [ { "kind": "text", - "text": "Unique name for the vector bucket" + "text": "Index configuration (vectorBucketName is automatically set)" } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1046, + "name": "CreateIndexOptions", + "package": "@supabase/storage-js" + }, + { + "type": "literal", + "value": "vectorBucketName" + } + ], + "name": "Omit", + "package": "typescript" } } ], @@ -5726,28 +5520,38 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.createIndex" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.createIndex" + } }, { - "id": 948, - "name": "deleteBucket", + "id": 819, + "name": "deleteIndex", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 369, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L369" } ], "signatures": [ { - "id": 949, - "name": "deleteBucket", + "id": 820, + "name": "deleteIndex", "variant": "signature", "kind": 4096, "flags": {}, @@ -5755,7 +5559,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -5777,45 +5581,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorBucketNotEmpty`" - }, - { - "kind": "text", - "text": " if bucket contains indexes (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\n// Delete all indexes first, then delete bucket\nconst { error } = await client.deleteBucket('old-bucket')\nif (error?.statusCode === 'S3VectorBucketNotEmpty') {\n console.error('Must delete all indexes first')\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\nawait bucket.deleteIndex('old-index')\n```" } ] } @@ -5824,16 +5595,16 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 369, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L369" } ], "parameters": [ { - "id": 950, - "name": "vectorBucketName", + "id": 821, + "name": "indexName", "variant": "param", "kind": 32768, "flags": {}, @@ -5841,7 +5612,7 @@ "summary": [ { "kind": "text", - "text": "Name of the vector bucket to delete" + "text": "Name of the index to delete" } ] }, @@ -5873,28 +5644,38 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.deleteIndex" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.deleteIndex" + } }, { - "id": 940, - "name": "getBucket", + "id": 814, + "name": "getIndex", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 346, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L346" } ], "signatures": [ { - "id": 941, - "name": "getBucket", + "id": 815, + "name": "getIndex", "variant": "signature", "kind": 4096, "flags": {}, @@ -5902,7 +5683,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -5920,32 +5701,7 @@ "content": [ { "kind": "text", - "text": "Promise with bucket metadata or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" + "text": "Promise with index metadata or error" } ] }, @@ -5954,7 +5710,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getBucket('embeddings-prod')\nif (data) {\n console.log('Bucket created at:', new Date(data.vectorBucket.creationTime! * 1000))\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\nconst { data } = await bucket.getIndex('documents-openai')\nconsole.log('Dimension:', data?.index.dimension)\n```" } ] } @@ -5963,16 +5719,16 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 346, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L346" } ], "parameters": [ { - "id": 942, - "name": "vectorBucketName", + "id": 816, + "name": "indexName", "variant": "param", "kind": 32768, "flags": {}, @@ -5980,7 +5736,7 @@ "summary": [ { "kind": "text", - "text": "Name of the vector bucket to retrieve" + "text": "Name of the index to retrieve" } ] }, @@ -6004,30 +5760,30 @@ { "type": "reflection", "declaration": { - "id": 943, + "id": 817, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 944, - "name": "vectorBucket", + "id": 818, + "name": "index", "variant": "declaration", "kind": 1024, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", + "line": 77, + "character": 27, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L77" } ], "type": { "type": "reference", - "target": 1053, - "name": "VectorBucket", + "target": 1057, + "name": "VectorIndex", "package": "@supabase/storage-js" } } @@ -6035,15 +5791,15 @@ "groups": [ { "title": "Properties", - "children": [944] + "children": [818] } ], "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", + "line": 77, + "character": 25, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L77" } ] } @@ -6055,28 +5811,38 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.getIndex" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.getIndex" + } }, { - "id": 945, - "name": "listBuckets", + "id": 822, + "name": "index", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 404, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L404" } ], "signatures": [ { - "id": 946, - "name": "listBuckets", + "id": 823, + "name": "index", "variant": "signature", "kind": 4096, "flags": {}, @@ -6084,7 +5850,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -6102,24 +5868,104 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets and pagination token" + "text": "Index-scoped client with vector data operations" } ] }, { - "tag": "@throws", + "tag": "@example", "content": [ + { + "kind": "code", + "text": "```typescript\nconst index = supabase.storage.vectors.from('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```" + } + ] + } + ], + "modifierTags": ["@alpha"] + }, + "sources": [ + { + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 404, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L404" + } + ], + "parameters": [ + { + "id": 824, + "name": "indexName", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ { "kind": "text", - "text": "With code:\n- " - }, + "text": "Name of the index" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "target": 841, + "name": "VectorIndexScope", + "package": "@supabase/storage-js" + } + } + ] + }, + { + "id": 811, + "name": "listIndexes", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 319, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L319" + } + ], + "signatures": [ + { + "id": 812, + "name": "listIndexes", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name\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": "code", - "text": "`InternalError`" - }, + "kind": "text", + "text": "Vector Buckets" + } + ] + }, + { + "tag": "@returns", + "content": [ { "kind": "text", - "text": " for server errors (HTTP 500)" + "text": "Promise with response containing indexes array and pagination token or error" } ] }, @@ -6128,7 +5974,7 @@ "content": [ { "kind": "code", - "text": "```typescript\n// List all buckets with prefix 'prod-'\nconst { data, error } = await client.listBuckets({ prefix: 'prod-' })\nif (data) {\n console.log('Found buckets:', data.buckets.length)\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listBuckets({ nextToken: data.nextToken })\n }\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\nconst { data } = await bucket.listIndexes({ prefix: 'documents-' })\n```" } ] } @@ -6137,15 +5983,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 319, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L319" } ], "parameters": [ { - "id": 947, + "id": 813, "name": "options", "variant": "param", "kind": 32768, @@ -6154,35 +6000,30 @@ "summary": [ { "kind": "text", - "text": "Listing options" + "text": "Listing options (vectorBucketName is automatically set)" } ] }, "type": { "type": "reference", - "target": 1085, - "name": "ListVectorBucketsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "prefix": [ - { - "kind": "text", - "text": "Filter buckets by name prefix" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 100)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ] - } + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1094, + "name": "ListIndexesOptions", + "package": "@supabase/storage-js" + }, + { + "type": "literal", + "value": "vectorBucketName" + } + ], + "name": "Omit", + "package": "typescript" }, "defaultValue": "{}" } @@ -6200,8 +6041,8 @@ "typeArguments": [ { "type": "reference", - "target": 1089, - "name": "ListVectorBucketsResponse", + "target": 1099, + "name": "ListIndexesResponse", "package": "@supabase/storage-js" } ], @@ -6211,122 +6052,121 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.listIndexes" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.listIndexes" + } }, { - "id": 935, + "id": 839, "name": "throwOnError", "variant": "declaration", "kind": 2048, "flags": { - "isPublic": true + "isPublic": true, + "isInherited": true }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, + "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", + "line": 50, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50" } ], "signatures": [ { - "id": 936, + "id": 840, "name": "throwOnError", "variant": "signature", "kind": 4096, - "flags": {}, + "flags": { + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createBucket('my-bucket') // throws on error\n```" - } - ] + "text": "Enable throwing errors instead of returning them in the response" } ], "modifierTags": ["@alpha"] }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, + "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", + "line": 50, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50" } ], "type": { "type": "intrinsic", "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.throwOnError" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.throwOnError" + } } ], "groups": [ { "title": "Constructors", - "children": [906] + "children": [791] }, { "title": "Methods", - "children": [937, 948, 940, 945, 935] + "children": [808, 819, 814, 822, 811, 839] } ], "categories": [ + { + "title": "Other", + "children": [839] + }, { "title": "Vector Buckets", - "children": [906, 937, 948, 940, 945, 935] + "children": [791, 808, 819, 814, 822, 811] } ], "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 21, - "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L21" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 240, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L240" } ], - "extendedBy": [ + "extendedTypes": [ { "type": "reference", - "target": 752, - "name": "StorageVectorsClient" + "target": -1, + "name": "default", + "package": "@supabase/storage-js" } ] }, { - "id": 790, - "name": "VectorBucketScope", + "id": 841, + "name": "VectorIndexScope", "variant": "declaration", "kind": 128, "flags": {}, @@ -6334,14 +6174,14 @@ "summary": [ { "kind": "text", - "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." + "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": [ { - "id": 791, + "id": 842, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6349,15 +6189,15 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 175, + "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L442" } ], "signatures": [ { - "id": 792, - "name": "VectorBucketScope", + "id": 843, + "name": "VectorIndexScope", "variant": "signature", "kind": 16384, "flags": {}, @@ -6365,7 +6205,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -6383,7 +6223,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\n```" } ] } @@ -6393,14 +6233,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 175, + "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L442" } ], "parameters": [ { - "id": 793, + "id": 844, "name": "url", "variant": "param", "kind": 32768, @@ -6411,7 +6251,7 @@ } }, { - "id": 794, + "id": 845, "name": "headers", "variant": "param", "kind": 32768, @@ -6419,7 +6259,7 @@ "type": { "type": "reflection", "declaration": { - "id": 795, + "id": 846, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6427,14 +6267,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 177, + "line": 444, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L444" } ], "indexSignatures": [ { - "id": 796, + "id": 847, "name": "__index", "variant": "signature", "kind": 8192, @@ -6442,14 +6282,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 177, + "line": 444, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L444" } ], "parameters": [ { - "id": 797, + "id": 848, "name": "key", "variant": "param", "kind": 32768, @@ -6470,7 +6310,7 @@ } }, { - "id": 798, + "id": 849, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -6481,7 +6321,18 @@ } }, { - "id": 799, + "id": 850, + "name": "indexName", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 851, "name": "fetch", "variant": "param", "kind": 32768, @@ -6491,7 +6342,7 @@ "type": { "type": "reflection", "declaration": { - "id": 800, + "id": 852, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6510,7 +6361,7 @@ ], "signatures": [ { - "id": 801, + "id": 853, "name": "__type", "variant": "signature", "kind": 4096, @@ -6532,7 +6383,7 @@ ], "parameters": [ { - "id": 802, + "id": 854, "name": "input", "variant": "param", "kind": 32768, @@ -6562,7 +6413,7 @@ } }, { - "id": 803, + "id": 855, "name": "init", "variant": "param", "kind": 32768, @@ -6602,7 +6453,7 @@ } }, { - "id": 804, + "id": 856, "name": "__type", "variant": "signature", "kind": 4096, @@ -6624,7 +6475,7 @@ ], "parameters": [ { - "id": 805, + "id": 857, "name": "input", "variant": "param", "kind": 32768, @@ -6658,7 +6509,7 @@ } }, { - "id": 806, + "id": 858, "name": "init", "variant": "param", "kind": 32768, @@ -6704,41 +6555,41 @@ ], "type": { "type": "reference", - "target": 790, - "name": "VectorBucketScope", + "target": 841, + "name": "VectorIndexScope", "package": "@supabase/storage-js" }, "overwrites": { "type": "reference", - "target": 953, - "name": "default.constructor" + "target": -1, + "name": "VectorDataApi.constructor" } } ], "overwrites": { "type": "reference", - "target": 952, - "name": "default.constructor" + "target": -1, + "name": "VectorDataApi.constructor" } }, { - "id": 808, - "name": "createIndex", + "id": 873, + "name": "deleteVectors", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 212, + "line": 607, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L607" } ], "signatures": [ { - "id": 809, - "name": "createIndex", + "id": 874, + "name": "deleteVectors", "variant": "signature", "kind": 4096, "flags": {}, @@ -6746,7 +6597,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -6773,7 +6624,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n metadataConfiguration: {\n nonFilterableMetadataKeys: ['raw_text']\n }\n})\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\nawait index.deleteVectors({\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\n```" } ] } @@ -6783,14 +6634,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 212, + "line": 607, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L607" } ], "parameters": [ { - "id": 810, + "id": 875, "name": "options", "variant": "param", "kind": 32768, @@ -6799,7 +6650,7 @@ "summary": [ { "kind": "text", - "text": "Index configuration (vectorBucketName is automatically set)" + "text": "Deletion options (bucket and index names automatically set)" } ] }, @@ -6812,13 +6663,22 @@ "typeArguments": [ { "type": "reference", - "target": 1046, - "name": "CreateIndexOptions", + "target": 1116, + "name": "DeleteVectorsOptions", "package": "@supabase/storage-js" }, { - "type": "literal", - "value": "vectorBucketName" + "type": "union", + "types": [ + { + "type": "literal", + "value": "vectorBucketName" + }, + { + "type": "literal", + "value": "indexName" + } + ] } ], "name": "Omit", @@ -6851,35 +6711,35 @@ }, "overwrites": { "type": "reference", - "target": 984, - "name": "default.createIndex" + "target": -1, + "name": "VectorDataApi.deleteVectors" } } ], "overwrites": { "type": "reference", - "target": 983, - "name": "default.createIndex" + "target": -1, + "name": "VectorDataApi.deleteVectors" } }, { - "id": 819, - "name": "deleteIndex", + "id": 864, + "name": "getVectors", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 288, + "line": 511, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L511" } ], "signatures": [ { - "id": 820, - "name": "deleteIndex", + "id": 865, + "name": "getVectors", "variant": "signature", "kind": 4096, "flags": {}, @@ -6887,7 +6747,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -6905,7 +6765,7 @@ "content": [ { "kind": "text", - "text": "Promise with empty response on success or error" + "text": "Promise with response containing vectors array or error" } ] }, @@ -6914,7 +6774,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nawait bucket.deleteIndex('old-index')\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\nconst { data } = await index.getVectors({\n keys: ['doc-1', 'doc-2'],\n returnMetadata: true\n})\n```" } ] } @@ -6924,15 +6784,15 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 288, + "line": 511, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L511" } ], "parameters": [ { - "id": 821, - "name": "indexName", + "id": 866, + "name": "options", "variant": "param", "kind": 32768, "flags": {}, @@ -6940,13 +6800,39 @@ "summary": [ { "kind": "text", - "text": "Name of the index to delete" + "text": "Vector retrieval options (bucket and index names automatically set)" } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1108, + "name": "GetVectorsOptions", + "package": "@supabase/storage-js" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "vectorBucketName" + }, + { + "type": "literal", + "value": "indexName" + } + ] + } + ], + "name": "Omit", + "package": "typescript" } } ], @@ -6962,8 +6848,10 @@ "target": 1142, "typeArguments": [ { - "type": "intrinsic", - "name": "undefined" + "type": "reference", + "target": 1114, + "name": "GetVectorsResponse", + "package": "@supabase/storage-js" } ], "name": "ApiResponse", @@ -6975,35 +6863,35 @@ }, "overwrites": { "type": "reference", - "target": 996, - "name": "default.deleteIndex" + "target": -1, + "name": "VectorDataApi.getVectors" } } ], "overwrites": { "type": "reference", - "target": 995, - "name": "default.deleteIndex" + "target": -1, + "name": "VectorDataApi.getVectors" } }, { - "id": 814, - "name": "getIndex", + "id": 867, + "name": "listVectors", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 265, + "line": 541, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L541" } ], "signatures": [ { - "id": 815, - "name": "getIndex", + "id": 868, + "name": "listVectors", "variant": "signature", "kind": 4096, "flags": {}, @@ -7011,7 +6899,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -7029,7 +6917,7 @@ "content": [ { "kind": "text", - "text": "Promise with index metadata or error" + "text": "Promise with response containing vectors array and pagination token or error" } ] }, @@ -7038,7 +6926,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nconst { data } = await bucket.getIndex('documents-openai')\nconsole.log('Dimension:', data?.index.dimension)\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\nconst { data } = await index.listVectors({\n maxResults: 500,\n returnMetadata: true\n})\n```" } ] } @@ -7048,15 +6936,15 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 265, + "line": 541, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L541" } ], "parameters": [ { - "id": 816, - "name": "indexName", + "id": 869, + "name": "options", "variant": "param", "kind": 32768, "flags": {}, @@ -7064,14 +6952,41 @@ "summary": [ { "kind": "text", - "text": "Name of the index to retrieve" + "text": "Listing options (bucket and index names automatically set)" } ] }, "type": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1120, + "name": "ListVectorsOptions", + "package": "@supabase/storage-js" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "vectorBucketName" + }, + { + "type": "literal", + "value": "indexName" + } + ] + } + ], + "name": "Omit", + "package": "typescript" + }, + "defaultValue": "{}" } ], "type": { @@ -7086,51 +7001,10 @@ "target": 1142, "typeArguments": [ { - "type": "reflection", - "declaration": { - "id": 817, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 818, - "name": "index", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, - "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" - } - ], - "type": { - "type": "reference", - "target": 1057, - "name": "VectorIndex", - "package": "@supabase/storage-js" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [818] - } - ], - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, - "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" - } - ] - } + "type": "reference", + "target": 1129, + "name": "ListVectorsResponse", + "package": "@supabase/storage-js" } ], "name": "ApiResponse", @@ -7142,35 +7016,35 @@ }, "overwrites": { "type": "reference", - "target": 987, - "name": "default.getIndex" + "target": -1, + "name": "VectorDataApi.listVectors" } } ], "overwrites": { "type": "reference", - "target": 986, - "name": "default.getIndex" + "target": -1, + "name": "VectorDataApi.listVectors" } }, { - "id": 822, - "name": "index", + "id": 861, + "name": "putVectors", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 323, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323" + "line": 481, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L481" } ], "signatures": [ { - "id": 823, - "name": "index", + "id": 862, + "name": "putVectors", "variant": "signature", "kind": 4096, "flags": {}, @@ -7178,7 +7052,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -7196,7 +7070,7 @@ "content": [ { "kind": "text", - "text": "Index-scoped client with vector data operations" + "text": "Promise with empty response on success or error" } ] }, @@ -7205,7 +7079,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\n\n// Insert vectors\nawait index.putVectors({\n vectors: [\n { key: 'doc-1', data: { float32: [...] }, metadata: { title: 'Intro' } }\n ]\n})\n\n// Query similar vectors\nconst { data } = await index.queryVectors({\n queryVector: { float32: [...] },\n topK: 5\n})\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('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```" } ] } @@ -7215,15 +7089,15 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 323, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323" + "line": 481, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L481" } ], "parameters": [ { - "id": 824, - "name": "indexName", + "id": 863, + "name": "options", "variant": "param", "kind": 32768, "flags": {}, @@ -7231,43 +7105,96 @@ "summary": [ { "kind": "text", - "text": "Name of the index" + "text": "Vector insertion options (bucket and index names automatically set)" } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1104, + "name": "PutVectorsOptions", + "package": "@supabase/storage-js" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "vectorBucketName" + }, + { + "type": "literal", + "value": "indexName" + } + ] + } + ], + "name": "Omit", + "package": "typescript" } } ], "type": { "type": "reference", - "target": 841, - "name": "VectorIndexScope", - "package": "@supabase/storage-js" + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1142, + "typeArguments": [ + { + "type": "intrinsic", + "name": "undefined" + } + ], + "name": "ApiResponse", + "package": "@supabase/storage-js" + } + ], + "name": "Promise", + "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorDataApi.putVectors" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorDataApi.putVectors" + } }, { - "id": 811, - "name": "listIndexes", + "id": 870, + "name": "queryVectors", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 238, + "line": 576, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L576" } ], "signatures": [ { - "id": 812, - "name": "listIndexes", + "id": 871, + "name": "queryVectors", "variant": "signature", "kind": 4096, "flags": {}, @@ -7275,7 +7202,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -7293,7 +7220,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of indexes or error" + "text": "Promise with response containing matches array of similar vectors ordered by distance or error" } ] }, @@ -7302,7 +7229,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nconst { data } = await bucket.listIndexes({ prefix: 'documents-' })\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('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```" } ] } @@ -7312,14 +7239,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 238, + "line": 576, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L576" } ], "parameters": [ { - "id": 813, + "id": 872, "name": "options", "variant": "param", "kind": 32768, @@ -7328,7 +7255,7 @@ "summary": [ { "kind": "text", - "text": "Listing options (vectorBucketName is automatically set)" + "text": "Query options (bucket and index names automatically set)" } ] }, @@ -7341,19 +7268,27 @@ "typeArguments": [ { "type": "reference", - "target": 1094, - "name": "ListIndexesOptions", + "target": 1132, + "name": "QueryVectorsOptions", "package": "@supabase/storage-js" }, { - "type": "literal", - "value": "vectorBucketName" + "type": "union", + "types": [ + { + "type": "literal", + "value": "vectorBucketName" + }, + { + "type": "literal", + "value": "indexName" + } + ] } ], "name": "Omit", "package": "typescript" - }, - "defaultValue": "{}" + } } ], "type": { @@ -7369,8 +7304,8 @@ "typeArguments": [ { "type": "reference", - "target": 1099, - "name": "ListIndexesResponse", + "target": 1140, + "name": "QueryVectorsResponse", "package": "@supabase/storage-js" } ], @@ -7383,19 +7318,19 @@ }, "overwrites": { "type": "reference", - "target": 993, - "name": "default.listIndexes" + "target": -1, + "name": "VectorDataApi.queryVectors" } } ], "overwrites": { "type": "reference", - "target": 992, - "name": "default.listIndexes" + "target": -1, + "name": "VectorDataApi.queryVectors" } }, { - "id": 839, + "id": 890, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -7405,15 +7340,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, + "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", + "line": 36, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L36" } ], "signatures": [ { - "id": 840, + "id": 891, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -7424,46 +7359,17 @@ "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**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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createIndex(options) // throws on error\n```" - } - ] + "text": "Enable throwing errors instead of returning them in the response" } ], "modifierTags": ["@alpha"] }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, + "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", + "line": 36, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L36" } ], "type": { @@ -7472,4047 +7378,117 @@ }, "inheritedFrom": { "type": "reference", - "target": 982, - "name": "default.throwOnError" + "target": -1, + "name": "VectorDataApi.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 981, - "name": "default.throwOnError" + "target": -1, + "name": "VectorDataApi.throwOnError" } } ], "groups": [ { "title": "Constructors", - "children": [791] + "children": [842] }, { "title": "Methods", - "children": [808, 819, 814, 822, 811, 839] + "children": [873, 864, 867, 861, 870, 890] } ], "categories": [ + { + "title": "Other", + "children": [890] + }, { "title": "Vector Buckets", - "children": [791, 808, 819, 814, 822, 811, 839] + "children": [842, 873, 864, 867, 861, 870] } ], "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 159, + "line": 424, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L424" } ], "extendedTypes": [ { "type": "reference", - "target": 951, + "target": -1, "name": "default", "package": "@supabase/storage-js" } ] }, { - "id": 999, - "name": "VectorDataApi", + "id": 631, + "name": "AnalyticBucket", "variant": "declaration", - "kind": 128, + "kind": 256, "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "API class for managing Vector Data within Vector Indexes\nProvides methods for inserting, querying, listing, and deleting vector embeddings\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type." + "text": "Represents an Analytics Bucket using Apache Iceberg table format.\nAnalytics buckets are optimized for analytical queries and data processing." } - ], - "modifierTags": ["@alpha"] + ] }, "children": [ { - "id": 1000, - "name": "constructor", + "id": 635, + "name": "created_at", "variant": "declaration", - "kind": 512, + "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ISO 8601 timestamp of bucket creation" + } + ] + }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 50, + "fileName": "packages/core/storage-js/src/lib/types.ts", + "line": 42, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L42" } ], - "signatures": [ - { - "id": 1001, - "name": "VectorDataApi", - "variant": "signature", - "kind": 16384, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "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": 50, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" - } - ], - "parameters": [ - { - "id": 1002, - "name": "url", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Base URL for the Storage Vectors API." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1003, - "name": "headers", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Default headers (for example authentication tokens)." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1004, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 50, - "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" - } - ], - "indexSignatures": [ - { - "id": 1005, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 50, - "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" - } - ], - "parameters": [ - { - "id": 1006, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - } - }, - "defaultValue": "{}" - }, - { - "id": 1007, - "name": "fetch", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Optional custom " - }, - { - "kind": "code", - "text": "`fetch`" - }, - { - "kind": "text", - "text": " implementation for non-browser runtimes." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1008, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - }, - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "signatures": [ - { - "id": 1009, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - } - ], - "parameters": [ - { - "id": 1010, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInfo" - }, - "name": "RequestInfo", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 1011, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 1012, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "parameters": [ - { - "id": 1013, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Request" - }, - "name": "Request", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 1014, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": 999, - "name": "VectorDataApi", - "package": "@supabase/storage-js", - "qualifiedName": "default" - } - } - ] - }, - { - "id": 1043, - "name": "deleteVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 379, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379" - } - ], - "signatures": [ - { - "id": 1044, - "name": "deleteVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletes vectors by their keys in batch\nAccepts 1-500 keys per request\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { error } = await client.deleteVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\nif (!error) {\n console.log('Vectors deleted successfully')\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 379, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379" - } - ], - "parameters": [ - { - "id": 1045, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector deletion options" - } - ] - }, - "type": { - "type": "reference", - "target": 1116, - "name": "DeleteVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "keys": [ - { - "kind": "text", - "text": "Array of vector keys to delete (1-500 items)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1034, - "name": "getVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 179, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179" - } - ], - "signatures": [ - { - "id": 1035, - "name": "getVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Retrieves vectors by their keys in batch\nOptionally includes vector data and/or metadata in response\nAdditional permissions required when returning data or metadata\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": [ - { - "kind": "text", - "text": "Promise with array of vectors or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n keys: ['doc-1', 'doc-2', 'doc-3'],\n returnData: false, // Don't return embeddings\n returnMetadata: true // Return metadata only\n})\nif (data) {\n data.vectors.forEach(v => console.log(v.key, v.metadata))\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 179, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179" - } - ], - "parameters": [ - { - "id": 1036, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector retrieval options" - } - ] - }, - "type": { - "type": "reference", - "target": 1108, - "name": "GetVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "keys": [ - { - "kind": "text", - "text": "Array of vector keys to retrieve" - } - ], - "returnData": [ - { - "kind": "text", - "text": "Whether to include vector embeddings (requires permission)" - } - ], - "returnMetadata": [ - { - "kind": "text", - "text": "Whether to include metadata (requires permission)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1114, - "name": "GetVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1037, - "name": "listVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 253, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253" - } - ], - "signatures": [ - { - "id": 1038, - "name": "listVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lists/scans vectors in an index with pagination\nSupports parallel scanning via segment configuration for high-throughput scenarios\nAdditional permissions required when returning data or metadata\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": [ - { - "kind": "text", - "text": "Promise with array of vectors, pagination token, or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// Simple pagination\nlet nextToken: string | undefined\ndo {\n const { data, error } = await client.listVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n maxResults: 500,\n nextToken,\n returnMetadata: true\n })\n if (error) break\n console.log('Batch:', data.vectors.length)\n nextToken = data.nextToken\n} while (nextToken)\n\n// Parallel scanning (4 concurrent workers)\nconst workers = [0, 1, 2, 3].map(async (segmentIndex) => {\n const { data } = await client.listVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n segmentCount: 4,\n segmentIndex,\n returnMetadata: true\n })\n return data?.vectors || []\n})\nconst results = await Promise.all(workers)\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 253, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253" - } - ], - "parameters": [ - { - "id": 1039, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector listing options" - } - ] - }, - "type": { - "type": "reference", - "target": 1120, - "name": "ListVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 500, max: 1000)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ], - "returnData": [ - { - "kind": "text", - "text": "Whether to include vector embeddings (requires permission)" - } - ], - "returnMetadata": [ - { - "kind": "text", - "text": "Whether to include metadata (requires permission)" - } - ], - "segmentCount": [ - { - "kind": "text", - "text": "Total parallel segments (1-16) for distributed scanning" - } - ], - "segmentIndex": [ - { - "kind": "text", - "text": "Zero-based segment index (0 to segmentCount-1)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1129, - "name": "ListVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1031, - "name": "putVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 120, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120" - } - ], - "signatures": [ - { - "id": 1032, - "name": "putVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inserts or updates vectors in batch (upsert operation)\nAccepts 1-500 vectors per request. Larger batches should be split\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if duplicate key conflict occurs (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.putVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3, ...] }, // 1536 dimensions\n metadata: { title: 'Introduction', page: 1 }\n },\n {\n key: 'doc-2',\n data: { float32: [0.4, 0.5, 0.6, ...] },\n metadata: { title: 'Conclusion', page: 42 }\n }\n ]\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 120, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120" - } - ], - "parameters": [ - { - "id": 1033, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector insertion options" - } - ] - }, - "type": { - "type": "reference", - "target": 1104, - "name": "PutVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the target index" - } - ], - "vectors": [ - { - "kind": "text", - "text": "Array of vectors to insert/update (1-500 items)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1040, - "name": "queryVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 330, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330" - } - ], - "signatures": [ - { - "id": 1041, - "name": "queryVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Queries for similar vectors using approximate nearest neighbor (ANN) search\nReturns top-K most similar vectors based on the configured distance metric\nSupports optional metadata filtering (requires GetVectors permission)\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": [ - { - "kind": "text", - "text": "Promise with array of similar vectors ordered by distance" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// Semantic search with filtering\nconst { data, error } = await client.queryVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n queryVector: { float32: [0.1, 0.2, 0.3, ...] }, // 1536 dimensions\n topK: 5,\n filter: {\n category: 'technical',\n published: true\n },\n returnDistance: true,\n returnMetadata: true\n})\nif (data) {\n data.matches.forEach(match => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 330, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330" - } - ], - "parameters": [ - { - "id": 1042, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Query options" - } - ] - }, - "type": { - "type": "reference", - "target": 1132, - "name": "QueryVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "queryVector": [ - { - "kind": "text", - "text": "Query embedding to find similar vectors" - } - ], - "topK": [ - { - "kind": "text", - "text": "Number of nearest neighbors to return (default: 10)" - } - ], - "filter": [ - { - "kind": "text", - "text": "Optional JSON filter for metadata (requires GetVectors permission)" - } - ], - "returnDistance": [ - { - "kind": "text", - "text": "Whether to include similarity distances" - } - ], - "returnMetadata": [ - { - "kind": "text", - "text": "Whether to include metadata (requires GetVectors permission)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1140, - "name": "QueryVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1029, - "name": "throwOnError", - "variant": "declaration", - "kind": 2048, - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" - } - ], - "signatures": [ - { - "id": 1030, - "name": "throwOnError", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorDataApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.putVectors(options) // throws on error\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "this" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "children": [1000] - }, - { - "title": "Methods", - "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": 26, - "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L26" - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 841, - "name": "VectorIndexScope" - } - ] - }, - { - "id": 951, - "name": "VectorIndexApi", - "variant": "declaration", - "kind": 128, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "API class for managing Vector Indexes within Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector indexes\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": [ - { - "id": 952, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 65, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" - } - ], - "signatures": [ - { - "id": 953, - "name": "VectorIndexApi", - "variant": "signature", - "kind": 16384, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "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": 65, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" - } - ], - "parameters": [ - { - "id": 954, - "name": "url", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Base URL for the Storage Vectors API." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 955, - "name": "headers", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Default headers sent with each request." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 956, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 65, - "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" - } - ], - "indexSignatures": [ - { - "id": 957, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 65, - "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" - } - ], - "parameters": [ - { - "id": 958, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - } - }, - "defaultValue": "{}" - }, - { - "id": 959, - "name": "fetch", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Optional custom " - }, - { - "kind": "code", - "text": "`fetch`" - }, - { - "kind": "text", - "text": " implementation for non-browser runtimes." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 960, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - }, - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "signatures": [ - { - "id": 961, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - } - ], - "parameters": [ - { - "id": 962, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInfo" - }, - "name": "RequestInfo", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 963, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 964, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "parameters": [ - { - "id": 965, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Request" - }, - "name": "Request", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 966, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": 951, - "name": "VectorIndexApi", - "package": "@supabase/storage-js", - "qualifiedName": "default" - } - } - ] - }, - { - "id": 983, - "name": "createIndex", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 133, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133" - } - ], - "signatures": [ - { - "id": 984, - "name": "createIndex", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Creates a new vector index within a bucket\nDefines the schema for vectors including dimensionality, distance metric, and metadata config\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if index already exists (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorMaxIndexesExceeded`" - }, - { - "kind": "text", - "text": " if quota exceeded (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.createIndex({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n metadataConfiguration: {\n nonFilterableMetadataKeys: ['raw_text', 'internal_id']\n }\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 133, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133" - } - ], - "parameters": [ - { - "id": 985, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Index configuration" - } - ] - }, - "type": { - "type": "reference", - "target": 1046, - "name": "CreateIndexOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Unique name for the index within the bucket" - } - ], - "dataType": [ - { - "kind": "text", - "text": "Data type for vector components (currently only 'float32')" - } - ], - "dimension": [ - { - "kind": "text", - "text": "Dimensionality of vectors (e.g., 384, 768, 1536)" - } - ], - "distanceMetric": [ - { - "kind": "text", - "text": "Similarity metric ('cosine', 'euclidean', 'dotproduct')" - } - ], - "metadataConfiguration": [ - { - "kind": "text", - "text": "Optional config for non-filterable metadata keys" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 995, - "name": "deleteIndex", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 284, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284" - } - ], - "signatures": [ - { - "id": 996, - "name": "deleteIndex", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletes a vector index and all its data\nThis operation removes the index schema and all vectors stored in the index\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if index or bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// Delete an index and all its vectors\nconst { error } = await client.deleteIndex('embeddings-prod', 'old-index')\nif (!error) {\n console.log('Index deleted successfully')\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 284, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284" - } - ], - "parameters": [ - { - "id": 997, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 998, - "name": "indexName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the index to delete" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 986, - "name": "getIndex", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 177, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177" - } - ], - "signatures": [ - { - "id": 987, - "name": "getIndex", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Retrieves metadata for a specific vector index\nReturns index configuration including dimension, distance metric, and metadata settings\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": [ - { - "kind": "text", - "text": "Promise with index metadata or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if index or bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getIndex('embeddings-prod', 'documents-openai-small')\nif (data) {\n console.log('Index dimension:', data.index.dimension)\n console.log('Distance metric:', data.index.distanceMetric)\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 177, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177" - } - ], - "parameters": [ - { - "id": 988, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 989, - "name": "indexName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the index to retrieve" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 990, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 991, - "name": "index", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, - "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" - } - ], - "type": { - "type": "reference", - "target": 1057, - "name": "VectorIndex", - "package": "@supabase/storage-js" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [991] - } - ], - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, - "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" - } - ] - } - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 992, - "name": "listIndexes", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 240, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240" - } - ], - "signatures": [ - { - "id": 993, - "name": "listIndexes", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lists vector indexes within a bucket with optional filtering and pagination\nSupports prefix-based filtering and paginated results\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": [ - { - "kind": "text", - "text": "Promise with list of indexes and pagination token" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// List all indexes in a bucket\nconst { data, error } = await client.listIndexes({\n vectorBucketName: 'embeddings-prod',\n prefix: 'documents-'\n})\nif (data) {\n console.log('Found indexes:', data.indexes.map(i => i.indexName))\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listIndexes({\n vectorBucketName: 'embeddings-prod',\n nextToken: data.nextToken\n })\n }\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 240, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240" - } - ], - "parameters": [ - { - "id": 994, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Listing options" - } - ] - }, - "type": { - "type": "reference", - "target": 1094, - "name": "ListIndexesOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "prefix": [ - { - "kind": "text", - "text": "Filter indexes by name prefix" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 100)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1099, - "name": "ListIndexesResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 981, - "name": "throwOnError", - "variant": "declaration", - "kind": 2048, - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" - } - ], - "signatures": [ - { - "id": 982, - "name": "throwOnError", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createIndex(options) // throws on error\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "this" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "children": [952] - }, - { - "title": "Methods", - "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": 41, - "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L41" - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 790, - "name": "VectorBucketScope" - } - ] - }, - { - "id": 841, - "name": "VectorIndexScope", - "variant": "declaration", - "kind": 128, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Scoped client for operations within a specific vector index\nProvides vector data operations (put, get, list, query, delete)\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": [ - { - "id": 842, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 361, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361" - } - ], - "signatures": [ - { - "id": 843, - "name": "VectorIndexScope", - "variant": "signature", - "kind": 16384, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "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": 361, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361" - } - ], - "parameters": [ - { - "id": 844, - "name": "url", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 845, - "name": "headers", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 846, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 363, - "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363" - } - ], - "indexSignatures": [ - { - "id": 847, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 363, - "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363" - } - ], - "parameters": [ - { - "id": 848, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - } - } - }, - { - "id": 849, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 850, - "name": "indexName", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 851, - "name": "fetch", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 852, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - }, - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "signatures": [ - { - "id": 853, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - } - ], - "parameters": [ - { - "id": 854, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInfo" - }, - "name": "RequestInfo", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 855, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 856, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "parameters": [ - { - "id": 857, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Request" - }, - "name": "Request", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 858, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": 841, - "name": "VectorIndexScope", - "package": "@supabase/storage-js" - }, - "overwrites": { - "type": "reference", - "target": 1001, - "name": "default.constructor" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1000, - "name": "default.constructor" - } - }, - { - "id": 873, - "name": "deleteVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 526, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526" - } - ], - "signatures": [ - { - "id": 874, - "name": "deleteVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletes vectors by keys from this index\nConvenience method that automatically includes bucket and index names\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nawait index.deleteVectors({\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 526, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526" - } - ], - "parameters": [ - { - "id": 875, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletion options (bucket and index names automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1116, - "name": "DeleteVectorsOptions", - "package": "@supabase/storage-js" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "vectorBucketName" - }, - { - "type": "literal", - "value": "indexName" - } - ] - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 1044, - "name": "default.deleteVectors" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1043, - "name": "default.deleteVectors" - } - }, - { - "id": 864, - "name": "getVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 430, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430" - } - ], - "signatures": [ - { - "id": 865, - "name": "getVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Retrieves vectors by keys from this index\nConvenience method that automatically includes bucket and index names\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": [ - { - "kind": "text", - "text": "Promise with array of vectors or error" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.getVectors({\n keys: ['doc-1', 'doc-2'],\n returnMetadata: true\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 430, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430" - } - ], - "parameters": [ - { - "id": 866, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector retrieval options (bucket and index names automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1108, - "name": "GetVectorsOptions", - "package": "@supabase/storage-js" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "vectorBucketName" - }, - { - "type": "literal", - "value": "indexName" - } - ] - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1114, - "name": "GetVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 1035, - "name": "default.getVectors" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1034, - "name": "default.getVectors" - } - }, - { - "id": 867, - "name": "listVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 460, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460" - } - ], - "signatures": [ - { - "id": 868, - "name": "listVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lists vectors in this index with pagination\nConvenience method that automatically includes bucket and index names\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": [ - { - "kind": "text", - "text": "Promise with array of vectors and pagination token" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.listVectors({\n maxResults: 500,\n returnMetadata: true\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 460, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460" - } - ], - "parameters": [ - { - "id": 869, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Listing options (bucket and index names automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1120, - "name": "ListVectorsOptions", - "package": "@supabase/storage-js" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "vectorBucketName" - }, - { - "type": "literal", - "value": "indexName" - } - ] - } - ], - "name": "Omit", - "package": "typescript" - }, - "defaultValue": "{}" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1129, - "name": "ListVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 1038, - "name": "default.listVectors" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1037, - "name": "default.listVectors" - } - }, - { - "id": 861, - "name": "putVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 400, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400" - } - ], - "signatures": [ - { - "id": 862, - "name": "putVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inserts or updates vectors in this index\nConvenience method that automatically includes bucket and index names\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, ...] },\n metadata: { title: 'Introduction', page: 1 }\n }\n ]\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 400, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400" - } - ], - "parameters": [ - { - "id": 863, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector insertion options (bucket and index names automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1104, - "name": "PutVectorsOptions", - "package": "@supabase/storage-js" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "vectorBucketName" - }, - { - "type": "literal", - "value": "indexName" - } - ] - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 1032, - "name": "default.putVectors" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1031, - "name": "default.putVectors" - } - }, - { - "id": 870, - "name": "queryVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 495, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495" - } - ], - "signatures": [ - { - "id": 871, - "name": "queryVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Queries for similar vectors in this index\nConvenience method that automatically includes bucket and index names\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": [ - { - "kind": "text", - "text": "Promise with array of similar vectors ordered by distance" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.queryVectors({\n queryVector: { float32: [0.1, 0.2, ...] },\n topK: 5,\n filter: { category: 'technical' },\n returnDistance: true,\n returnMetadata: true\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 495, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495" - } - ], - "parameters": [ - { - "id": 872, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Query options (bucket and index names automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1132, - "name": "QueryVectorsOptions", - "package": "@supabase/storage-js" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "vectorBucketName" - }, - { - "type": "literal", - "value": "indexName" - } - ] - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1140, - "name": "QueryVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 1041, - "name": "default.queryVectors" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1040, - "name": "default.queryVectors" - } - }, - { - "id": 890, - "name": "throwOnError", - "variant": "declaration", - "kind": 2048, - "flags": { - "isPublic": true, - "isInherited": true - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" - } - ], - "signatures": [ - { - "id": 891, - "name": "throwOnError", - "variant": "signature", - "kind": 4096, - "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorDataApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.putVectors(options) // throws on error\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "this" - }, - "inheritedFrom": { - "type": "reference", - "target": 1030, - "name": "default.throwOnError" - } - } - ], - "inheritedFrom": { - "type": "reference", - "target": 1029, - "name": "default.throwOnError" - } - } - ], - "groups": [ - { - "title": "Constructors", - "children": [842] - }, - { - "title": "Methods", - "children": [873, 864, 867, 861, 870, 890] - } - ], - "categories": [ - { - "title": "Vector Buckets", - "children": [842, 873, 864, 867, 861, 870, 890] - } - ], - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 343, - "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L343" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 999, - "name": "default", - "package": "@supabase/storage-js" - } - ] - }, - { - "id": 631, - "name": "AnalyticBucket", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Represents an Analytics Bucket using Apache Iceberg table format.\nAnalytics buckets are optimized for analytical queries and data processing." - } - ] - }, - "children": [ - { - "id": 635, - "name": "created_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ISO 8601 timestamp of bucket creation" - } - ] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/types.ts", - "line": 42, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L42" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 634, - "name": "format", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Storage format used (e.g., 'iceberg')" - } - ] - }, - "sources": [ + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 634, + "name": "format", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Storage format used (e.g., 'iceberg')" + } + ] + }, + "sources": [ { "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L40" } ], "type": { @@ -11539,7 +7515,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L36" } ], "type": { @@ -11566,7 +7542,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L38" } ], "type": { @@ -11593,7 +7569,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L44" } ], "type": { @@ -11613,7 +7589,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 34, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L34" } ] }, @@ -11637,7 +7613,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L16" } ], "type": { @@ -11659,7 +7635,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L17" } ], "type": { @@ -11680,7 +7656,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L15" } ], "type": { @@ -11699,7 +7675,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L11" } ], "type": { @@ -11718,7 +7694,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L13" } ], "type": { @@ -11737,7 +7713,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L14" } ], "type": { @@ -11756,7 +7732,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L19" } ], "type": { @@ -11777,7 +7753,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L12" } ], "type": { @@ -11798,7 +7774,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L18" } ], "type": { @@ -11818,7 +7794,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 10, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L10" } ] }, @@ -11851,9 +7827,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 26, + "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25" } ], "type": { @@ -11874,9 +7850,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 27, + "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26" } ], "type": { @@ -11897,9 +7873,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 28, + "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L27" } ], "type": { @@ -11922,9 +7898,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 25, + "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24" } ], "type": { @@ -11947,9 +7923,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 29, + "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L28" } ], "type": { @@ -11972,9 +7948,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 24, + "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23" } ], "type": { @@ -11992,9 +7968,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 23, + "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L22" } ] }, @@ -12032,7 +8008,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L196" } ], "type": { @@ -12059,7 +8035,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 197, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L197" } ], "type": { @@ -12089,7 +8065,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L195" } ], "type": { @@ -12109,7 +8085,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 194, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L194" } ] }, @@ -12133,7 +8109,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L112" } ], "type": { @@ -12153,7 +8129,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 111, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L111" } ] }, @@ -12193,7 +8169,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L9" } ], "type": { @@ -12222,7 +8198,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L10" } ], "type": { @@ -12242,7 +8218,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 8, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L8" } ] }, @@ -12280,7 +8256,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L291" } ], "type": { @@ -12307,7 +8283,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L292" } ], "type": { @@ -12329,7 +8305,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 290, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L290" } ] }, @@ -12369,7 +8345,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" } ], "type": { @@ -12385,7 +8361,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" } ], "indexSignatures": [ @@ -12400,7 +8376,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 14, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L14" } ], "parameters": [ @@ -12446,7 +8422,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L16" } ], "type": { @@ -12466,7 +8442,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 12, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L12" } ] }, @@ -12498,7 +8474,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 204, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L204" } ], "type": { @@ -12523,7 +8499,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 200, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L200" } ] }, @@ -12545,7 +8521,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 49, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L49" } ], "type": { @@ -12564,7 +8540,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L57" } ], "type": { @@ -12585,7 +8561,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L53" } ], "type": { @@ -12604,7 +8580,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 51, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L51" } ], "type": { @@ -12632,7 +8608,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L55" } ], "type": { @@ -12651,7 +8627,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L56" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L56" } ], "type": { @@ -12685,7 +8661,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 48, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L48" } ], "type": { @@ -12704,7 +8680,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L50" } ], "type": { @@ -12723,7 +8699,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L52" } ], "type": { @@ -12743,7 +8719,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 47, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L47" } ] }, @@ -12765,7 +8741,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 64, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L64" } ], "type": { @@ -12786,7 +8762,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L70" } ], "type": { @@ -12807,7 +8783,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L71" } ], "type": { @@ -12826,7 +8802,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L66" } ], "type": { @@ -12847,7 +8823,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L72" } ], "type": { @@ -12866,7 +8842,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L61" } ], "type": { @@ -12894,7 +8870,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L68" } ], "type": { @@ -12915,7 +8891,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L73" } ], "type": { @@ -12936,7 +8912,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L74" } ], "type": { @@ -12970,7 +8946,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L63" } ], "type": { @@ -12991,7 +8967,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 69, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L69" } ], "type": { @@ -13010,7 +8986,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L65" } ], "type": { @@ -13029,7 +9005,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L62" } ], "type": { @@ -13049,7 +9025,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 60, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L60" } ] }, @@ -13089,7 +9065,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L86" } ], "type": { @@ -13166,7 +9142,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L90" } ], "type": { @@ -13195,7 +9171,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L98" } ], "type": { @@ -13224,7 +9200,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L108" } ], "type": { @@ -13268,7 +9244,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L103" } ], "type": { @@ -13312,7 +9288,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L94" } ], "type": { @@ -13332,7 +9308,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 82, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L82" } ] }, @@ -13370,7 +9346,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L162" } ], "type": { @@ -13397,7 +9373,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L163" } ], "type": { @@ -13429,7 +9405,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L164" } ], "type": { @@ -13458,7 +9434,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 165, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L165" } ], "type": { @@ -13485,7 +9461,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 161, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L161" } ], "type": { @@ -13505,7 +9481,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 160, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L160" } ] }, @@ -13543,7 +9519,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 173, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L173" } ], "type": { @@ -13568,7 +9544,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 172, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L172" } ] }, @@ -13592,7 +9568,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L23" } ], "type": { @@ -13613,7 +9589,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L24" } ], "type": { @@ -13634,7 +9610,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L27" } ], "type": { @@ -13655,7 +9631,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L25" } ], "type": { @@ -13693,7 +9669,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L26" } ], "type": { @@ -13722,7 +9698,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L22" } ] }, @@ -13762,7 +9738,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L138" } ], "type": { @@ -13791,7 +9767,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L139" } ], "type": { @@ -13820,7 +9796,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L137" } ], "type": { @@ -13847,7 +9823,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 136, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L136" } ], "type": { @@ -13867,7 +9843,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 135, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L135" } ] }, @@ -13905,7 +9881,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L148" } ], "type": { @@ -13930,7 +9906,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 148, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L148" } ], "type": { @@ -13950,7 +9926,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 148, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L148" } ] } @@ -13978,7 +9954,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 149, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L149" } ], "type": { @@ -13998,7 +9974,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 147, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L147" } ] }, @@ -14038,7 +10014,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L114" } ], "type": { @@ -14067,7 +10043,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L115" } ], "type": { @@ -14096,7 +10072,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L113" } ], "type": { @@ -14116,7 +10092,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 112, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L112" } ] }, @@ -14156,7 +10132,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L125" } ], "type": { @@ -14183,7 +10159,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 124, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L124" } ], "type": { @@ -14208,7 +10184,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 124, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L124" } ], "type": { @@ -14228,7 +10204,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 124, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L124" } ] } @@ -14247,7 +10223,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 123, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L123" } ] }, @@ -14285,7 +10261,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 214, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L214" } ], "type": { @@ -14314,7 +10290,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L215" } ], "type": { @@ -14343,7 +10319,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L216" } ], "type": { @@ -14372,7 +10348,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L217" } ], "type": { @@ -14401,7 +10377,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L218" } ], "type": { @@ -14430,7 +10406,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 219, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L219" } ], "type": { @@ -14459,7 +10435,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 220, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L220" } ], "type": { @@ -14486,7 +10462,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L213" } ], "type": { @@ -14506,7 +10482,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 212, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L212" } ] }, @@ -14546,7 +10522,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L230" } ], "type": { @@ -14573,7 +10549,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L229" } ], "type": { @@ -14598,7 +10574,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 228, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L228" } ] }, @@ -14620,7 +10596,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 209, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L209" } ], "type": { @@ -14640,7 +10616,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 208, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L208" } ] }, @@ -14680,7 +10656,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L31" } ], "type": { @@ -14703,7 +10679,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 30, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L30" } ] }, @@ -14741,7 +10717,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L184" } ], "type": { @@ -14768,7 +10744,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 183, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L183" } ], "type": { @@ -14795,7 +10771,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 185, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L185" } ], "type": { @@ -14820,7 +10796,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 182, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L182" } ] }, @@ -14860,7 +10836,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L254" } ], "type": { @@ -14889,7 +10865,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L251" } ], "type": { @@ -14916,7 +10892,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L252" } ], "type": { @@ -14947,7 +10923,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L255" } ], "type": { @@ -14976,7 +10952,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L256" } ], "type": { @@ -15005,7 +10981,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L253" } ], "type": { @@ -15032,7 +11008,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L250" } ], "type": { @@ -15052,7 +11028,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 249, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L249" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L249" } ] }, @@ -15090,7 +11066,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L264" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L264" } ], "type": { @@ -15115,7 +11091,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 263, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L263" } ] }, @@ -15158,7 +11134,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L120" } ], "type": { @@ -15187,7 +11163,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L125" } ], "type": { @@ -15216,7 +11192,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L135" } ], "type": { @@ -15245,7 +11221,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L130" } ], "type": { @@ -15267,7 +11243,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 115, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L115" } ] }, @@ -15289,7 +11265,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 183, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L183" } ], "type": { @@ -15308,7 +11284,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L179" } ], "type": { @@ -15327,7 +11303,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L180" } ], "type": { @@ -15355,7 +11331,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L188" } ], "type": { @@ -15374,7 +11350,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L184" } ], "type": { @@ -15408,7 +11384,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L181" } ], "type": { @@ -15427,7 +11403,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L182" } ], "type": { @@ -15447,7 +11423,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 178, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L178" } ] }, @@ -15479,7 +11455,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L158" } ], "type": { @@ -15519,7 +11495,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L148" } ], "type": { @@ -15548,7 +11524,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L153" } ], "type": { @@ -15588,7 +11564,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 175, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L175" } ], "type": { @@ -15646,7 +11622,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 169, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L169" } ], "type": { @@ -15666,7 +11642,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 143, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L143" } ] }, @@ -15688,7 +11664,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L195" } ], "type": { @@ -15712,7 +11688,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 194, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L194" } ], "type": { @@ -15733,7 +11709,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 197, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L197" } ], "type": { @@ -15752,7 +11728,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L196" } ], "type": { @@ -15777,7 +11753,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 193, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L193" } ] }, @@ -15801,7 +11777,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L78" } ], "type": { @@ -15822,7 +11798,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L79" } ], "type": { @@ -15842,7 +11818,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 77, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L77" } ] }, @@ -15864,7 +11840,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L139" } ], "type": { @@ -15898,7 +11874,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L140" } ], "type": { @@ -15927,7 +11903,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 138, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L138" } ] }, @@ -15951,7 +11927,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L8" } ], "type": { @@ -15971,7 +11947,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 7, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L7" } ] }, @@ -16011,9 +11987,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 31, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L35" } ], "type": { @@ -16249,9 +12225,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 26, + "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L30" } ], "type": { @@ -16265,9 +12241,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 26, + "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L30" } ], "indexSignatures": [ @@ -16280,9 +12256,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 26, + "line": 30, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L30" } ], "parameters": [ @@ -16317,9 +12293,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 22, + "line": 26, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" } ] }, @@ -16357,7 +12333,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 281, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L281" } ], "type": { @@ -16388,7 +12364,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 282, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L282" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L282" } ], "type": { @@ -16408,7 +12384,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 280, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L280" } ], "typeParameters": [ @@ -16449,7 +12425,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L240" } ], "type": { @@ -16478,7 +12454,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 220, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L220" } ], "type": { @@ -16507,7 +12483,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L233" } ], "type": { @@ -16536,7 +12512,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L227" } ], "type": { @@ -16578,7 +12554,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L216" } ], "type": { @@ -16598,7 +12574,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 212, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L212" } ] }, @@ -16638,7 +12614,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L21" } ], "type": { @@ -16667,7 +12643,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L22" } ], "type": { @@ -16696,7 +12672,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L20" } ], "type": { @@ -16716,7 +12692,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 19, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L19" } ] }, @@ -16754,7 +12730,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L71" } ], "type": { @@ -16777,7 +12753,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 70, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L70" } ] }, @@ -16817,7 +12793,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 272, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L272" } ], "type": { @@ -16842,7 +12818,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 271, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L271" } ] }, @@ -16882,7 +12858,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L62" } ], "type": { @@ -16909,7 +12885,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L58" } ], "type": { @@ -16936,7 +12912,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L59" } ], "type": { @@ -16963,7 +12939,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 60, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L60" } ], "type": { @@ -16992,7 +12968,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L56" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L56" } ], "type": { @@ -17021,7 +12997,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L61" } ], "type": { @@ -17050,7 +13026,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L57" } ], "type": { @@ -17070,7 +13046,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 55, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L55" } ] }, @@ -17110,7 +13086,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L101" } ], "type": { @@ -17141,7 +13117,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L103" } ], "type": { @@ -17168,7 +13144,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L100" } ], "type": { @@ -17197,7 +13173,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L102" } ], "type": { @@ -17219,7 +13195,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 99, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L99" } ] }, @@ -17257,7 +13233,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L88" } ], "type": { @@ -17286,7 +13262,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 87, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L87" } ], "type": { @@ -17315,7 +13291,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L89" } ], "type": { @@ -17337,7 +13313,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 86, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L86" } ] }, @@ -17360,7 +13336,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 299, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L299" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L299" } ], "typeParameters": [ @@ -17418,7 +13394,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L8" } ], "type": { @@ -17446,7 +13422,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 247, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L247" } ], "typeParameters": [ @@ -17549,7 +13525,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 43, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L43" } ], "type": { @@ -17581,7 +13557,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 251, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L251" } ], "typeParameters": [ @@ -17616,7 +13592,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 253, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L253" } ], "type": { @@ -17638,7 +13614,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 254, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L254" } ], "type": { @@ -17658,7 +13634,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 252, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L252" } ] } @@ -17683,7 +13659,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 257, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L257" } ], "type": { @@ -17702,7 +13678,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 258, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L258" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L258" } ], "type": { @@ -17724,7 +13700,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 256, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L256" } ] } @@ -17743,7 +13719,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 5, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L5" } ], "type": { @@ -17775,7 +13751,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L22" } ], "type": { @@ -17811,7 +13787,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 191, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L191" } ], "type": { @@ -17868,7 +13844,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L38" } ], "type": { @@ -17895,7 +13871,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 237, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L237" } ], "type": { @@ -17937,7 +13913,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L78" } ], "type": { @@ -17990,7 +13966,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 35, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" } ], "signatures": [ @@ -18019,7 +13995,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 35, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" } ], "parameters": [ @@ -18061,7 +14037,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 10, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L10" } ], "signatures": [ @@ -18076,7 +14052,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 10, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L10" } ], "parameters": [ @@ -18117,7 +14093,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 18, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L18" } ], "signatures": [ @@ -18151,7 +14127,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 18, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L18" } ], "parameters": [ @@ -18208,7 +14184,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" } ], "signatures": [ @@ -18237,7 +14213,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 57, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" } ], "parameters": [ @@ -18293,7 +14269,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 10, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" } ], "signatures": [ @@ -18322,7 +14298,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 10, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" } ], "parameters": [ @@ -18790,7 +14766,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 23, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" } ], "signatures": [ @@ -18819,7 +14795,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 23, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" } ], "type": { @@ -18944,7 +14920,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 70, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" } ], "signatures": [ @@ -18959,7 +14935,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 70, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" } ], "parameters": [ @@ -18997,7 +14973,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 71, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" } ], "type": { @@ -19020,7 +14996,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 71, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" } ] } @@ -19066,7 +15042,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 3, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/index.ts#L3" } ], "target": 47 @@ -19079,7 +15055,7 @@ }, { "title": "Classes", - "children": [729, 500, 724, 745, 1158, 752, 1153, 1174, 905, 790, 999, 951, 841] + "children": [729, 500, 724, 745, 1158, 752, 1153, 1174, 790, 841] }, { "title": "Interfaces", @@ -19107,7 +15083,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/index.ts#L1" } ] }, @@ -19136,7 +15112,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "signatures": [ @@ -19151,7 +15127,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "parameters": [ @@ -19174,7 +15150,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "signatures": [ @@ -19189,7 +15165,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "type": { @@ -19252,7 +15228,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" } ], "type": { @@ -19277,7 +15253,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "signatures": [ @@ -19292,7 +15268,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "type": { @@ -19316,7 +15292,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "signatures": [ @@ -19350,7 +15326,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "typeParameters": [ @@ -19403,7 +15379,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "signatures": [ @@ -19418,7 +15394,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "parameters": [ @@ -19536,7 +15512,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -19570,7 +15546,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "parameters": [ @@ -19610,7 +15586,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -19625,7 +15601,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "type": { @@ -19692,7 +15668,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "signatures": [ @@ -19726,7 +15702,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "typeParameters": [ @@ -19803,7 +15779,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "signatures": [ @@ -19818,7 +15794,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "parameters": [ @@ -19920,7 +15896,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "signatures": [ @@ -19935,7 +15911,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "parameters": [ @@ -20052,7 +16028,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 5, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" } ], "implementedTypes": [ @@ -20098,7 +16074,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" } ] }, @@ -20133,9 +16109,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "signatures": [ @@ -20171,14 +16147,15 @@ } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "parameters": [ @@ -20226,9 +16203,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "indexSignatures": [ @@ -20241,9 +16218,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "parameters": [ @@ -20518,9 +16495,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 80, + "line": 90, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L90" } ], "signatures": [ @@ -20552,7 +16529,7 @@ "content": [ { "kind": "text", - "text": "Promise with newly created bucket name or error" + "text": "Promise with response containing newly created analytics bucket or error" } ] }, @@ -20570,18 +16547,19 @@ }, { "kind": "code", - "text": "```json\n{\n \"data\": {\n \"name\": \"analytics-data\"\n },\n \"error\": null\n}\n```" + "text": "```json\n{\n \"data\": {\n \"name\": \"analytics-data\",\n \"type\": \"ANALYTICS\",\n \"format\": \"iceberg\",\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n },\n \"error\": null\n}\n```" } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 80, + "line": 90, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L90" } ], "parameters": [ @@ -20633,9 +16611,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 82, + "line": 92, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L92" } ], "type": { @@ -20654,9 +16632,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 83, + "line": 93, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" } ], "type": { @@ -20674,9 +16652,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 81, + "line": 91, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L91" } ] } @@ -20699,9 +16677,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 86, + "line": 96, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" } ], "type": { @@ -20718,9 +16696,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 87, + "line": 97, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L97" } ], "type": { @@ -20740,9 +16718,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 85, + "line": 95, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ] } @@ -20765,9 +16743,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 221, + "line": 235, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" } ], "signatures": [ @@ -20799,7 +16777,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -20821,14 +16799,15 @@ } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 221, + "line": 235, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" } ], "parameters": [ @@ -20880,9 +16859,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 223, + "line": 237, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L237" } ], "type": { @@ -20903,9 +16882,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 223, + "line": 237, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L237" } ], "type": { @@ -20923,9 +16902,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 223, + "line": 237, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L237" } ] } @@ -20940,9 +16919,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 224, + "line": 238, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L238" } ], "type": { @@ -20960,9 +16939,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 222, + "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L236" } ] } @@ -20985,9 +16964,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 227, + "line": 241, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L241" } ], "type": { @@ -21004,9 +16983,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 228, + "line": 242, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L242" } ], "type": { @@ -21026,9 +17005,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 226, + "line": 240, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L240" } ] } @@ -21051,9 +17030,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 149, + "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "signatures": [ @@ -21085,7 +17064,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of analytics buckets or error" + "text": "Promise with response containing array of analytics buckets or error" } ] }, @@ -21103,18 +17082,19 @@ }, { "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```" + "text": "```json\n{\n \"data\": [\n {\n \"name\": \"analytics-data\",\n \"type\": \"ANALYTICS\",\n \"format\": \"iceberg\",\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```" } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 149, + "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "parameters": [ @@ -21162,9 +17142,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 150, + "line": 162, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" } ], "type": { @@ -21191,9 +17171,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 151, + "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" } ], "type": { @@ -21220,9 +17200,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 154, + "line": 166, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" } ], "type": { @@ -21242,25 +17222,21 @@ "summary": [ { "kind": "text", - "text": "Column to sort by ('id', 'name', 'created_at', 'updated_at')" + "text": "Column to sort by ('name', 'created_at', 'updated_at')" } ] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 152, + "line": 164, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L164" } ], "type": { "type": "union", "types": [ - { - "type": "literal", - "value": "id" - }, { "type": "literal", "value": "name" @@ -21295,9 +17271,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 153, + "line": 165, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" } ], "type": { @@ -21324,9 +17300,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 149, + "line": 161, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ] } @@ -21361,9 +17337,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 157, + "line": 169, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" } ], "type": { @@ -21385,9 +17361,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 158, + "line": 170, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" } ], "type": { @@ -21405,9 +17381,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 156, + "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L168" } ] } @@ -21430,9 +17406,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 161, + "line": 173, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L173" } ], "type": { @@ -21449,9 +17425,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 162, + "line": 174, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L174" } ], "type": { @@ -21471,9 +17447,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 160, + "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L172" } ] } @@ -21498,9 +17474,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 47, + "line": 51, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L51" } ], "signatures": [ @@ -21536,14 +17512,15 @@ } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 47, + "line": 51, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L51" } ], "type": { @@ -21575,7 +17552,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 11, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L11" } ] } @@ -21591,7 +17568,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" } ] }, @@ -21620,7 +17597,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" } ], "signatures": [ @@ -21635,7 +17612,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" } ], "parameters": [ @@ -21669,7 +17646,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 16, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" } ], "indexSignatures": [ @@ -21684,7 +17661,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 16, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" } ], "parameters": [ @@ -21968,7 +17945,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "signatures": [ @@ -22000,7 +17977,7 @@ "content": [ { "kind": "text", - "text": "Promise with newly created bucket id or error" + "text": "Promise with response containing newly created bucket name or error" } ] }, @@ -22029,7 +18006,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "parameters": [ @@ -22088,7 +18065,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" } ], "type": { @@ -22129,7 +18106,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -22169,7 +18146,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -22210,7 +18187,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 207, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" } ], "type": { @@ -22232,7 +18209,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -22270,7 +18247,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 213, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" } ], "type": { @@ -22306,7 +18283,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" } ], "type": { @@ -22326,7 +18303,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 212, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" } ] } @@ -22351,7 +18328,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 217, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" } ], "type": { @@ -22370,7 +18347,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 218, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" } ], "type": { @@ -22392,7 +18369,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 216, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" } ] } @@ -22417,7 +18394,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "signatures": [ @@ -22486,7 +18463,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "parameters": [ @@ -22540,7 +18517,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -22563,7 +18540,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -22583,7 +18560,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ] } @@ -22600,7 +18577,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 408, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" } ], "type": { @@ -22620,7 +18597,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 406, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" } ] } @@ -22645,7 +18622,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" } ], "type": { @@ -22664,7 +18641,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 412, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" } ], "type": { @@ -22686,7 +18663,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 410, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" } ] } @@ -22711,7 +18688,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "signatures": [ @@ -22772,7 +18749,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "parameters": [ @@ -22826,7 +18803,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -22849,7 +18826,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -22869,7 +18846,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ] } @@ -22886,7 +18863,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 353, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" } ], "type": { @@ -22906,7 +18883,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 351, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" } ] } @@ -22931,7 +18908,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" } ], "type": { @@ -22950,7 +18927,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 357, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" } ], "type": { @@ -22972,7 +18949,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 355, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" } ] } @@ -22997,7 +18974,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "signatures": [ @@ -23029,7 +19006,7 @@ "content": [ { "kind": "text", - "text": "Promise with bucket details or error" + "text": "Promise with response containing bucket details or error" } ] }, @@ -23058,7 +19035,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "parameters": [ @@ -23112,7 +19089,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" } ], "type": { @@ -23133,7 +19110,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" } ], "type": { @@ -23153,7 +19130,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 140, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" } ] } @@ -23178,7 +19155,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" } ], "type": { @@ -23197,7 +19174,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 146, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" } ], "type": { @@ -23219,7 +19196,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" } ] } @@ -23244,7 +19221,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "signatures": [ @@ -23276,7 +19253,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets or error" + "text": "Promise with response containing array of buckets or error" } ] }, @@ -23307,7 +19284,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "parameters": [ @@ -23397,7 +19374,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 80, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" } ], "type": { @@ -23421,7 +19398,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 81, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" } ], "type": { @@ -23441,7 +19418,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" } ] } @@ -23466,7 +19443,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 84, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" } ], "type": { @@ -23485,7 +19462,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 85, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" } ], "type": { @@ -23507,7 +19484,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 83, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" } ] } @@ -23534,7 +19511,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "signatures": [ @@ -23568,7 +19545,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "type": { @@ -23589,7 +19566,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "signatures": [ @@ -23621,7 +19598,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -23650,7 +19627,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "parameters": [ @@ -23709,7 +19686,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 288, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" } ], "type": { @@ -23750,7 +19727,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 287, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" } ], "type": { @@ -23790,7 +19767,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" } ], "type": { @@ -23810,7 +19787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 285, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" } ] } @@ -23847,7 +19824,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -23870,7 +19847,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -23890,7 +19867,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ] } @@ -23907,7 +19884,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 293, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" } ], "type": { @@ -23927,7 +19904,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 291, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" } ] } @@ -23952,7 +19929,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 296, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" } ], "type": { @@ -23971,7 +19948,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 297, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" } ], "type": { @@ -23993,7 +19970,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 295, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" } ] } @@ -24033,7 +20010,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" } ], "extendedBy": [ @@ -24056,7 +20033,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" } ] }, @@ -24085,7 +20062,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "signatures": [ @@ -24100,7 +20077,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "parameters": [ @@ -24134,7 +20111,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 54, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" } ], "indexSignatures": [ @@ -24149,7 +20126,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 54, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" } ], "parameters": [ @@ -24431,7 +20408,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 556, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" } ], "signatures": [ @@ -24463,7 +20440,7 @@ "content": [ { "kind": "text", - "text": "Promise with copied file path or error" + "text": "Promise with response containing copied file path or error" } ] }, @@ -24492,7 +20469,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 556, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" } ], "parameters": [ @@ -24604,7 +20581,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 562, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" } ], "type": { @@ -24627,7 +20604,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 562, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" } ], "type": { @@ -24647,7 +20624,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 562, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" } ] } @@ -24664,7 +20641,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 563, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L563" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L563" } ], "type": { @@ -24684,7 +20661,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 561, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L561" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L561" } ] } @@ -24709,7 +20686,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 566, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L566" } ], "type": { @@ -24728,7 +20705,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 567, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L567" } ], "type": { @@ -24750,7 +20727,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 565, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L565" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L565" } ] } @@ -24775,7 +20752,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 342, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" } ], "signatures": [ @@ -24807,7 +20784,7 @@ "content": [ { "kind": "text", - "text": "Promise with signed upload URL, token, and path or error" + "text": "Promise with response containing signed upload URL, token, and path or error" } ] }, @@ -24836,7 +20813,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 342, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" } ], "parameters": [ @@ -24903,7 +20880,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 344, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" } ], "type": { @@ -24923,7 +20900,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 344, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" } ] } @@ -24960,7 +20937,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -24983,7 +20960,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -25002,7 +20979,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -25021,7 +20998,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -25041,7 +21018,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ] } @@ -25058,7 +21035,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 348, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L348" } ], "type": { @@ -25078,7 +21055,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 346, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L346" } ] } @@ -25103,7 +21080,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 351, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L351" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L351" } ], "type": { @@ -25122,7 +21099,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 352, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L352" } ], "type": { @@ -25144,7 +21121,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 350, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L350" } ] } @@ -25169,7 +21146,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 646, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" } ], "signatures": [ @@ -25201,7 +21178,7 @@ "content": [ { "kind": "text", - "text": "Promise with signed URL or error" + "text": "Promise with response containing signed URL or error" } ] }, @@ -25250,7 +21227,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 646, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" } ], "parameters": [ @@ -25346,7 +21323,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 649, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" } ], "type": { @@ -25384,7 +21361,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 649, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" } ], "type": { @@ -25406,7 +21383,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 649, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" } ] } @@ -25443,7 +21420,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 652, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" } ], "type": { @@ -25466,7 +21443,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 652, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" } ], "type": { @@ -25486,7 +21463,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 652, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" } ] } @@ -25503,7 +21480,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 653, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L653" } ], "type": { @@ -25523,7 +21500,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 651, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L651" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L651" } ] } @@ -25548,7 +21525,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 656, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L656" } ], "type": { @@ -25567,7 +21544,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 657, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L657" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L657" } ], "type": { @@ -25589,7 +21566,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 655, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L655" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L655" } ] } @@ -25614,7 +21591,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 725, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" } ], "signatures": [ @@ -25646,7 +21623,7 @@ "content": [ { "kind": "text", - "text": "Promise with array of signed URLs or error" + "text": "Promise with response containing array of objects with signedUrl, path, and error or error" } ] }, @@ -25675,7 +21652,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 725, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" } ], "parameters": [ @@ -25772,7 +21749,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 728, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" } ], "type": { @@ -25801,7 +21778,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 728, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" } ] } @@ -25838,7 +21815,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -25863,7 +21840,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -25891,7 +21868,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -25919,7 +21896,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -25939,7 +21916,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ] } @@ -25957,7 +21934,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 732, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L732" } ], "type": { @@ -25977,7 +21954,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 730, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L730" } ] } @@ -26002,7 +21979,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 735, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L735" } ], "type": { @@ -26021,7 +21998,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 736, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L736" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L736" } ], "type": { @@ -26043,7 +22020,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 734, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L734" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L734" } ] } @@ -26068,7 +22045,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ], "signatures": [ @@ -26147,7 +22124,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ], "typeParameters": [ @@ -26179,7 +22156,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ], "type": { @@ -26201,7 +22178,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ] } @@ -26274,7 +22251,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 886, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" } ], "signatures": [ @@ -26306,7 +22283,7 @@ "content": [ { "kind": "text", - "text": "Promise with boolean indicating file existence or error" + "text": "Promise with response containing boolean indicating file existence or error" } ] }, @@ -26327,7 +22304,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 886, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" } ], "parameters": [ @@ -26389,7 +22366,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 888, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L888" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L888" } ], "type": { @@ -26408,7 +22385,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 889, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "type": { @@ -26428,7 +22405,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 887, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L887" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L887" } ] } @@ -26453,7 +22430,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 892, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L892" } ], "type": { @@ -26472,7 +22449,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 893, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L893" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L893" } ], "type": { @@ -26494,7 +22471,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 891, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L891" } ] } @@ -26519,7 +22496,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" } ], "signatures": [ @@ -26600,7 +22577,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" } ], "parameters": [ @@ -26669,7 +22646,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 972, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" } ], "type": { @@ -26707,7 +22684,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 972, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" } ], "type": { @@ -26729,7 +22706,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 972, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" } ] } @@ -26756,7 +22733,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ], "type": { @@ -26779,7 +22756,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ], "type": { @@ -26799,7 +22776,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ] } @@ -26817,7 +22794,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ] } @@ -26836,7 +22813,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 841, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" } ], "signatures": [ @@ -26868,7 +22845,7 @@ "content": [ { "kind": "text", - "text": "Promise with file metadata or error" + "text": "Promise with response containing file metadata or error" } ] }, @@ -26889,7 +22866,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 841, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" } ], "parameters": [ @@ -26951,7 +22928,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 843, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L843" } ], "type": { @@ -26980,7 +22957,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 844, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L844" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L844" } ], "type": { @@ -27000,7 +22977,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 842, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L842" } ] } @@ -27025,7 +23002,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 847, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L847" } ], "type": { @@ -27044,7 +23021,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 848, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L848" } ], "type": { @@ -27066,7 +23043,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 846, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L846" } ] } @@ -27091,7 +23068,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1178, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" } ], "signatures": [ @@ -27123,7 +23100,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of files or error" + "text": "Promise with response containing array of files or error" } ] }, @@ -27162,7 +23139,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1178, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" } ], "parameters": [ @@ -27264,7 +23241,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1184, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1184" } ], "type": { @@ -27288,7 +23265,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1185" } ], "type": { @@ -27308,7 +23285,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1183, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1183" } ] } @@ -27333,7 +23310,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1188" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1188" } ], "type": { @@ -27352,7 +23329,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1189, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1189" } ], "type": { @@ -27374,7 +23351,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1187, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1187" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1187" } ] } @@ -27399,7 +23376,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1221, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" } ], "signatures": [ @@ -27434,7 +23411,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1221, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" } ], "parameters": [ @@ -27507,7 +23484,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1226" } ], "type": { @@ -27528,7 +23505,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1227, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1227" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1227" } ], "type": { @@ -27548,7 +23525,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1225" } ] } @@ -27573,7 +23550,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1230" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1230" } ], "type": { @@ -27592,7 +23569,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1231, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1231" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1231" } ], "type": { @@ -27614,7 +23591,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1229" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1229" } ] } @@ -27639,7 +23616,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 490, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" } ], "signatures": [ @@ -27671,7 +23648,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -27700,7 +23677,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 490, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" } ], "parameters": [ @@ -27812,7 +23789,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 496, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ], "type": { @@ -27835,7 +23812,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 496, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ], "type": { @@ -27855,7 +23832,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 496, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ] } @@ -27872,7 +23849,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L497" } ], "type": { @@ -27892,7 +23869,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 495, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L495" } ] } @@ -27917,7 +23894,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 500, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L500" } ], "type": { @@ -27936,7 +23913,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 501, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L501" } ], "type": { @@ -27958,7 +23935,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 499, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L499" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L499" } ] } @@ -27983,7 +23960,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1026, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" } ], "signatures": [ @@ -28015,7 +23992,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of deleted files or error" + "text": "Promise with response containing array of deleted file objects or error" } ] }, @@ -28044,7 +24021,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1026, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" } ], "parameters": [ @@ -28109,7 +24086,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1028, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1028" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1028" } ], "type": { @@ -28133,7 +24110,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1029, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1029" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1029" } ], "type": { @@ -28153,7 +24130,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1027, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1027" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1027" } ] } @@ -28178,7 +24155,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1032, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1032" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1032" } ], "type": { @@ -28197,7 +24174,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1033, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1033" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1033" } ], "type": { @@ -28219,7 +24196,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1031, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1031" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1031" } ] } @@ -28246,7 +24223,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 69, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" } ], "signatures": [ @@ -28280,7 +24257,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 69, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" } ], "type": { @@ -28301,7 +24278,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" } ], "signatures": [ @@ -28316,7 +24293,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" } ], "parameters": [ @@ -28350,7 +24327,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 436, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" } ], "signatures": [ @@ -28382,7 +24359,7 @@ "content": [ { "kind": "text", - "text": "Promise with file path and id or error" + "text": "Promise with response containing file path, id, and fullPath or error" } ] }, @@ -28421,7 +24398,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 436, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" } ], "parameters": [ @@ -28657,7 +24634,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -28680,7 +24657,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -28699,7 +24676,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -28718,7 +24695,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -28738,7 +24715,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ] } @@ -28755,7 +24732,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 453, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L453" } ], "type": { @@ -28775,7 +24752,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 451, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L451" } ] } @@ -28800,7 +24777,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 456, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L456" } ], "type": { @@ -28819,7 +24796,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 457, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" } ], "type": { @@ -28841,7 +24818,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 455, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L455" } ] } @@ -28866,7 +24843,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 215, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" } ], "signatures": [ @@ -28898,7 +24875,7 @@ "content": [ { "kind": "text", - "text": "Promise with file path and id or error" + "text": "Promise with response containing file path, id, and fullPath or error" } ] }, @@ -28937,7 +24914,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 215, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" } ], "parameters": [ @@ -29046,7 +25023,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -29069,7 +25046,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -29088,7 +25065,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -29107,7 +25084,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -29127,7 +25104,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ] } @@ -29144,7 +25121,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 222, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L222" } ], "type": { @@ -29164,7 +25141,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 220, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L220" } ] } @@ -29189,7 +25166,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 225, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -29208,7 +25185,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L226" } ], "type": { @@ -29230,7 +25207,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 224, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L224" } ] } @@ -29255,7 +25232,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" } ], "signatures": [ @@ -29295,7 +25272,7 @@ "content": [ { "kind": "text", - "text": "Promise with file path and full path or error" + "text": "Promise with response containing file path and fullPath or error" } ] }, @@ -29324,7 +25301,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" } ], "parameters": [ @@ -29456,7 +25433,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ], "type": { @@ -29479,7 +25456,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ], "type": { @@ -29499,7 +25476,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ], "type": { @@ -29520,7 +25497,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ] } @@ -29538,7 +25515,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 298, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L298" } ], "type": { @@ -29559,7 +25536,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 296, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L296" } ] } @@ -29584,7 +25561,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 305, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" } ], "type": { @@ -29604,7 +25581,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 305, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" } ], "type": { @@ -29626,7 +25603,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 305, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" } ] } @@ -29670,7 +25647,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 45, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L45" } ] } @@ -29686,7 +25663,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" } ] }, @@ -29715,7 +25692,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "signatures": [ @@ -29730,7 +25707,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "parameters": [ @@ -29753,7 +25730,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "signatures": [ @@ -29768,7 +25745,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "type": { @@ -29829,7 +25806,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "signatures": [ @@ -29863,7 +25840,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "typeParameters": [ @@ -29946,7 +25923,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "signatures": [ @@ -29961,7 +25938,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "parameters": [ @@ -30069,7 +26046,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "signatures": [ @@ -30084,7 +26061,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "parameters": [ @@ -30197,7 +26174,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 4, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" } ], "implementedTypes": [ @@ -30243,70 +26220,358 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" } ] } ], "groups": [ { - "title": "Modules", - "children": [1, 2, 46, 114, 222, 474] - } - ], - "packageName": "@supabase/storage-js", - "readme": [ + "title": "Modules", + "children": [1, 2, 46, 114, 222, 474] + } + ], + "packageName": "@supabase/storage-js", + "readme": [ + { + "kind": "text", + "text": "
\n

\n \n \n \n \n \"Supabase\n \n \n\n

Supabase Storage JS SDK

\n\n

JavaScript SDK to interact with Supabase Storage, including file storage and vector embeddings.

\n\n

\n Guides\n ·\n Reference Docs\n ·\n TypeDoc\n

\n

\n\n
\n\n[![Build](https://github.com/supabase/supabase-js/workflows/CI/badge.svg)](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)\n[![Package](https://img.shields.io/npm/v/@supabase/storage-js)](https://www.npmjs.com/package/@supabase/storage-js)\n[![License: MIT](https://img.shields.io/npm/l/@supabase/supabase-js)](#license)\n[![pkg.pr.new](https://pkg.pr.new/badge/supabase/storage-js)](https://pkg.pr.new/~/supabase/storage-js)\n\n
\n\n## Requirements\n\n- **Node.js 20 or later** (Node.js 18 support dropped as of October 31, 2025)\n- For browser support, all modern browsers are supported\n\n> ⚠️ **Node.js 18 Deprecation Notice**\n>\n> Node.js 18 reached end-of-life on April 30, 2025. As announced in [our deprecation notice](https://github.com/orgs/supabase/discussions/37217), support for Node.js 18 was dropped on October 31, 2025.\n\n## Features\n\n- **File Storage**: Upload, download, list, move, and delete files\n- **Access Control**: Public and private buckets with fine-grained permissions\n- **Signed URLs**: Generate time-limited URLs for secure file access\n- **Image Transformations**: On-the-fly image resizing and optimization\n- **Vector Embeddings**: Store and query high-dimensional embeddings with similarity search\n- **Analytics Buckets**: Iceberg table-based buckets optimized for analytical queries and data processing\n\n## Quick Start Guide\n\n### Installing the module\n\n" + }, + { + "kind": "code", + "text": "```bash\nnpm install @supabase/storage-js\n```" + }, + { + "kind": "text", + "text": "\n\n### Connecting to the storage backend\n\nThere are two ways to use the Storage SDK:\n\n#### Option 1: Via Supabase Client (Recommended)\n\nIf you're already using " + }, + { + "kind": "code", + "text": "`@supabase/supabase-js`" + }, + { + "kind": "text", + "text": ", access storage through the client:\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Use publishable/anon key for frontend applications\nconst supabase = createClient('https://.supabase.co', '')\n\n// Access storage\nconst storage = supabase.storage\n\n// Access different bucket types\nconst regularBucket = storage.from('my-bucket')\nconst vectorBucket = storage.vectors.from('embeddings-bucket')\nconst analyticsBucket = storage.analytics // Analytics API\n```" + }, + { + "kind": "text", + "text": "\n\n#### Option 2: Standalone StorageClient\n\nFor backend applications or when you need to bypass Row Level Security:\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { StorageClient } from '@supabase/storage-js'\n\nconst STORAGE_URL = 'https://.supabase.co/storage/v1'\nconst SERVICE_KEY = '' // Use secret key for backend operations\n\nconst storageClient = new StorageClient(STORAGE_URL, {\n apikey: SERVICE_KEY,\n Authorization: `Bearer ${SERVICE_KEY}`,\n})\n\n// Access different bucket types\nconst regularBucket = storageClient.from('my-bucket')\nconst vectorBucket = storageClient.vectors.from('embeddings-bucket')\nconst analyticsBucket = storageClient.analytics // Analytics API\n```" + }, + { + "kind": "text", + "text": "\n\n> **When to use each approach:**\n>\n> - Use " + }, + { + "kind": "code", + "text": "`supabase.storage`" + }, + { + "kind": "text", + "text": " when working with other Supabase features (auth, database, etc.) in frontend applications\n> - Use " + }, + { + "kind": "code", + "text": "`new StorageClient()`" + }, + { + "kind": "text", + "text": " for backend applications, Edge Functions, or when you need to bypass RLS policies\n\n### Understanding API Keys\n\nSupabase provides different types of API keys for different use cases:\n\n| Key Type | Format | Privileges | Use Case |\n| ---------------------- | -------------------- | ---------- | ------------------------------------------------------------------------ |\n| **Publishable key** | " + }, + { + "kind": "code", + "text": "`sb_publishable_...`" + }, + { + "kind": "text", + "text": " | Low | Frontend applications (web pages, mobile apps) - works with RLS policies |\n| **Secret key** | " + }, + { + "kind": "code", + "text": "`sb_secret_...`" + }, + { + "kind": "text", + "text": " | Elevated | Backend applications (servers, Edge Functions) - bypasses RLS |\n| **anon** (JWT) | JWT format | Low | Legacy - use publishable key instead |\n| **service_role** (JWT) | JWT format | Elevated | Legacy - use secret key instead |\n\n**For frontend applications:**\n\n- Use **publishable keys** (" + }, + { + "kind": "code", + "text": "`sb_publishable_...`" + }, + { + "kind": "text", + "text": ") or " + }, + { + "kind": "code", + "text": "`anon`" + }, + { + "kind": "text", + "text": " JWT keys\n- These keys work with Row Level Security (RLS) policies\n- Safe to expose in client-side code\n- Access is controlled by RLS policies you define\n\n**For backend applications:**\n\n- Use **secret keys** (" + }, + { + "kind": "code", + "text": "`sb_secret_...`" + }, + { + "kind": "text", + "text": ") or " + }, + { + "kind": "code", + "text": "`service_role`" + }, + { + "kind": "text", + "text": " JWT keys\n- These keys bypass all RLS policies\n- **Never expose these keys** in client-side code\n- Use only in secure, server-side environments\n\n> **⚠️ Security Warning:** Never use secret keys or " + }, + { + "kind": "code", + "text": "`service_role`" + }, + { + "kind": "text", + "text": " keys in frontend code, mobile apps, or any publicly accessible location. They provide full access to your project's data and bypass all security policies.\n\n### Access Control and Row Level Security\n\nSupabase Storage uses Postgres [Row Level Security (RLS)](/docs/guides/database/postgres/row-level-security) to control access to buckets and files. By default, Storage blocks all operations unless you create RLS policies.\n\n#### How RLS Works with Storage\n\n- **Publishable/anon keys**: Operations are controlled by RLS policies on the " + }, + { + "kind": "code", + "text": "`storage.objects`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`storage.buckets`" + }, + { + "kind": "text", + "text": " tables\n- **Secret/service_role keys**: Operations bypass RLS entirely (use with caution)\n\n#### Required RLS Permissions\n\nDifferent operations require different RLS policy permissions:\n\n| Operation | " + }, + { + "kind": "code", + "text": "`buckets`" + }, + { + "kind": "text", + "text": " table | " + }, + { + "kind": "code", + "text": "`objects`" + }, + { + "kind": "text", + "text": " table |\n| ------------------- | ------------------ | ---------------------------- |\n| " + }, + { + "kind": "code", + "text": "`createBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`INSERT`" + }, + { + "kind": "text", + "text": " | None |\n| " + }, + { + "kind": "code", + "text": "`updateBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`UPDATE`" + }, + { + "kind": "text", + "text": " | None |\n| " + }, + { + "kind": "code", + "text": "`deleteBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`DELETE`" + }, + { + "kind": "text", + "text": " | None |\n| " + }, + { + "kind": "code", + "text": "`emptyBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`DELETE`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`upload`" + }, { "kind": "text", - "text": "
\n

\n \n \n \n \n \"Supabase\n \n \n\n

Supabase Storage JS SDK

\n\n

JavaScript SDK to interact with Supabase Storage, including file storage and vector embeddings.

\n\n

\n Guides\n ·\n Reference Docs\n ·\n TypeDoc\n

\n

\n\n
\n\n[![Build](https://github.com/supabase/supabase-js/workflows/CI/badge.svg)](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)\n[![Package](https://img.shields.io/npm/v/@supabase/storage-js)](https://www.npmjs.com/package/@supabase/storage-js)\n[![License: MIT](https://img.shields.io/npm/l/@supabase/supabase-js)](#license)\n[![pkg.pr.new](https://pkg.pr.new/badge/supabase/storage-js)](https://pkg.pr.new/~/supabase/storage-js)\n\n
\n\n## Requirements\n\n- **Node.js 20 or later** (Node.js 18 support dropped as of October 31, 2025)\n- For browser support, all modern browsers are supported\n\n> ⚠️ **Node.js 18 Deprecation Notice**\n>\n> Node.js 18 reached end-of-life on April 30, 2025. As announced in [our deprecation notice](https://github.com/orgs/supabase/discussions/37217), support for Node.js 18 was dropped on October 31, 2025.\n\n## Features\n\n- **File Storage**: Upload, download, list, move, and delete files\n- **Access Control**: Public and private buckets with fine-grained permissions\n- **Signed URLs**: Generate time-limited URLs for secure file access\n- **Image Transformations**: On-the-fly image resizing and optimization\n- **Vector Embeddings**: Store and query high-dimensional embeddings with similarity search\n- **Analytics Buckets**: Iceberg table-based buckets optimized for analytical queries and data processing\n\n## Quick Start Guide\n\n### Installing the module\n\n" + "text": " (new file) | None | " }, { "kind": "code", - "text": "```bash\nnpm install @supabase/storage-js\n```" + "text": "`INSERT`" }, { "kind": "text", - "text": "\n\n### Connecting to the storage backend\n\nThere are two ways to use the Storage SDK:\n\n#### Option 1: Via Supabase Client (Recommended)\n\nIf you're already using " + "text": " |\n| " }, { "kind": "code", - "text": "`@supabase/supabase-js`" + "text": "`upload`" }, { "kind": "text", - "text": ", access storage through the client:\n\n" + "text": " (upsert) | None | " }, { "kind": "code", - "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://.supabase.co', '')\n\n// Access storage\nconst storage = supabase.storage\n\n// Access different bucket types\nconst regularBucket = storage.from('my-bucket')\nconst vectorBucket = storage.vectors.from('embeddings-bucket')\nconst analyticsBucket = storage.analytics // Analytics API\n```" + "text": "`SELECT`" }, { "kind": "text", - "text": "\n\n#### Option 2: Standalone StorageClient\n\nFor applications that only need storage functionality:\n\n" + "text": ", " }, { "kind": "code", - "text": "```js\nimport { StorageClient } from '@supabase/storage-js'\n\nconst STORAGE_URL = 'https://.supabase.co/storage/v1'\nconst SERVICE_KEY = '' //! service key, not anon key\n\nconst storageClient = new StorageClient(STORAGE_URL, {\n apikey: SERVICE_KEY,\n Authorization: `Bearer ${SERVICE_KEY}`,\n})\n\n// Access different bucket types\nconst regularBucket = storageClient.from('my-bucket')\nconst vectorBucket = storageClient.vectors.from('embeddings-bucket')\nconst analyticsBucket = storageClient.analytics // Analytics API\n```" + "text": "`INSERT`" }, { "kind": "text", - "text": "\n\n> **When to use each approach:**\n>\n> - Use " + "text": ", " }, { "kind": "code", - "text": "`supabase.storage`" + "text": "`UPDATE`" }, { "kind": "text", - "text": " when working with other Supabase features (auth, database, etc.)\n> - Use " + "text": " |\n| " }, { "kind": "code", - "text": "`new StorageClient()`" + "text": "`download`" + }, + { + "kind": "text", + "text": " | None | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`list`" }, { "kind": "text", - "text": " for storage-only applications or when you need fine-grained control\n\n### Understanding Bucket Types\n\nSupabase Storage supports three types of buckets, each optimized for different use cases:\n\n#### 1. Regular Storage Buckets (File Storage)\n\nStandard buckets for storing files, images, videos, and other assets.\n\n" + "text": " | None | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`remove`" + }, + { + "kind": "text", + "text": " | None | " + }, + { + "kind": "code", + "text": "`DELETE`" + }, + { + "kind": "text", + "text": " |\n\n> **Note:** Refer to the [Storage Access Control guide](https://supabase.com/docs/guides/storage/access-control) for detailed information on creating RLS policies.\n\n#### Example RLS Policy\n\nAllow authenticated users to upload files to a specific bucket:\n\n" + }, + { + "kind": "code", + "text": "```sql\nCREATE POLICY \"Allow authenticated uploads\"\nON storage.objects\nFOR INSERT\nTO authenticated\nWITH CHECK (\n bucket_id = 'my-bucket-id'\n);\n```" + }, + { + "kind": "text", + "text": "\n\n### Understanding Bucket Types\n\nSupabase Storage supports three types of buckets, each optimized for different use cases:\n\n#### 1. Regular Storage Buckets (File Storage)\n\nStandard buckets for storing files, images, videos, and other assets.\n\n" }, { "kind": "code", @@ -30526,7 +26791,7 @@ }, { "kind": "code", - "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-anon-key')\n\n// Access analytics operations\nconst analytics = supabase.storage.analytics\n\n// Create an analytics bucket\nconst { data, error } = await analytics.createBucket('analytics-data')\nif (error) {\n console.error('Failed to create analytics bucket:', error.message)\n} else {\n console.log('Created bucket:', data.name)\n}\n```" + "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-publishable-key')\n\n// Access analytics operations\nconst analytics = supabase.storage.analytics\n\n// Create an analytics bucket\nconst { data, error } = await analytics.createBucket('analytics-data')\nif (error) {\n console.error('Failed to create analytics bucket:', error.message)\n} else {\n console.log('Created bucket:', data.name)\n}\n```" }, { "kind": "text", @@ -30694,7 +26959,7 @@ }, { "kind": "code", - "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-anon-key')\n\n// Access vector operations through storage\nconst vectors = supabase.storage.vectors\n\n// Create a vector bucket\nawait vectors.createBucket('embeddings-prod')\n\n// Create an index\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n})\n\n// Insert vectors\nconst index = bucket.index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3 /* ...1536 dimensions */] },\n metadata: { title: 'Introduction', category: 'docs' },\n },\n ],\n})\n\n// Query similar vectors\nconst { data, error } = await index.queryVectors({\n queryVector: { float32: [0.15, 0.25, 0.35 /* ...1536 dimensions */] },\n topK: 5,\n returnDistance: true,\n returnMetadata: true,\n})\n\nif (data) {\n data.matches.forEach((match) => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```" + "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-publishable-key')\n\n// Access vector operations through storage\nconst vectors = supabase.storage.vectors\n\n// Create a vector bucket\nawait vectors.createBucket('embeddings-prod')\n\n// Create an index\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n})\n\n// Insert vectors\nconst index = bucket.index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3 /* ...1536 dimensions */] },\n metadata: { title: 'Introduction', category: 'docs' },\n },\n ],\n})\n\n// Query similar vectors\nconst { data, error } = await index.queryVectors({\n queryVector: { float32: [0.15, 0.25, 0.35 /* ...1536 dimensions */] },\n topK: 5,\n returnDistance: true,\n returnMetadata: true,\n})\n\nif (data) {\n data.matches.forEach((match) => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```" }, { "kind": "text", @@ -33019,1729 +29284,1345 @@ "sourceFileName": "src/StorageClient.ts", "qualifiedName": "url" }, - "504": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "headers" - }, - "505": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "__type" - }, - "506": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "__type.__index" - }, - "508": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "fetch" - }, - "509": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "510": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "511": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" - }, - "512": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" - }, - "513": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" - }, - "514": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" - }, - "515": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" - }, - "516": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "opts" - }, - "517": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.from" - }, - "518": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.from" - }, - "519": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "id" - }, - "520": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.vectors" - }, - "521": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.vectors" - }, - "522": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.analytics" - }, - "523": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.analytics" - }, - "538": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.throwOnError" - }, - "539": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.throwOnError" - }, - "540": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.listBuckets" - }, - "541": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.listBuckets" - }, - "542": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "options" - }, - "543": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "544": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "545": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" - }, - "546": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "547": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "548": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" - }, - "549": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.getBucket" - }, - "550": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.getBucket" - }, - "551": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "id" - }, - "552": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "553": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "554": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" - }, - "555": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "556": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "557": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" - }, - "558": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.createBucket" - }, - "559": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.createBucket" - }, - "560": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "id" - }, - "561": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "options" - }, - "562": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "563": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.public" - }, - "564": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.fileSizeLimit" - }, - "565": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.allowedMimeTypes" - }, - "566": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.type" - }, - "567": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "568": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "569": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" + "504": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "headers" }, - "570": { - "sourceFileName": "src/packages/StorageBucketApi.ts", + "505": { + "sourceFileName": "src/StorageClient.ts", "qualifiedName": "__type" }, - "571": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "572": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" + "506": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "__type.__index" }, - "573": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.updateBucket" + "508": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "fetch" }, - "574": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.updateBucket" + "509": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "fetch" }, - "575": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "id" + "510": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "fetch" }, - "576": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "options" + "511": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "input" }, - "577": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" + "512": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "init" }, - "578": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.public" + "513": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "fetch" }, - "579": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.fileSizeLimit" + "514": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "input" }, - "580": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.allowedMimeTypes" + "515": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "init" }, - "581": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" + "516": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "opts" }, - "582": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" + "517": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.from" }, - "583": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" + "518": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.from" }, - "584": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.message" + "519": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "id" }, - "585": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" + "520": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.vectors" }, - "586": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" + "521": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.vectors" }, - "587": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" + "522": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.analytics" }, - "588": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" + "523": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.analytics" }, - "589": { + "538": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.emptyBucket" + "qualifiedName": "default.throwOnError" }, - "590": { + "539": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.emptyBucket" + "qualifiedName": "default.throwOnError" }, - "591": { + "540": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "id" + "qualifiedName": "default.listBuckets" }, - "592": { + "541": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" + "qualifiedName": "default.listBuckets" }, - "593": { + "542": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "options" }, - "594": { + "543": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type" }, - "595": { + "544": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.message" + "qualifiedName": "__type.data" }, - "596": { + "545": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.error" }, - "597": { + "546": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type" }, - "598": { + "547": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.data" }, - "599": { + "548": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.error" }, - "600": { + "549": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.deleteBucket" + "qualifiedName": "default.getBucket" }, - "601": { + "550": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.deleteBucket" + "qualifiedName": "default.getBucket" }, - "602": { + "551": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "id" }, - "603": { + "552": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type" }, - "604": { + "553": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.data" }, - "605": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "606": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.message" - }, - "607": { + "554": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.error" }, - "608": { + "555": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type" }, - "609": { + "556": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.data" }, - "610": { + "557": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.error" }, - "611": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClientOptions" - }, - "612": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClientOptions.useNewHostname" - }, - "613": { - "sourceFileName": "src/index.ts", - "qualifiedName": "StorageAnalyticsClient" - }, - "614": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "BucketType" - }, - "615": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket" - }, - "616": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.id" - }, - "617": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.type" - }, - "618": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.name" - }, - "619": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.owner" - }, - "620": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.file_size_limit" - }, - "621": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.allowed_mime_types" - }, - "622": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.created_at" - }, - "623": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.updated_at" - }, - "624": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.public" - }, - "625": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions" - }, - "626": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions.limit" - }, - "627": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions.offset" - }, - "628": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions.sortColumn" - }, - "629": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions.sortOrder" - }, - "630": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions.search" + "558": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.createBucket" }, - "631": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket" + "559": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.createBucket" }, - "632": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket.name" + "560": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "id" }, - "633": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket.type" + "561": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "options" }, - "634": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket.format" + "562": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "635": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket.created_at" + "563": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.public" }, - "636": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket.updated_at" + "564": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.fileSizeLimit" }, - "637": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject" + "565": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.allowedMimeTypes" }, - "638": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.name" + "566": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.type" }, - "639": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.bucket_id" + "567": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "640": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.owner" + "568": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "641": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.id" + "569": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "642": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.updated_at" + "570": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "643": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.created_at" + "571": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "644": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.last_accessed_at" + "572": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "645": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.metadata" + "573": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.updateBucket" }, - "646": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.buckets" + "574": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.updateBucket" }, - "647": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2" + "575": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "id" }, - "648": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.id" + "576": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "options" }, - "649": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.version" + "577": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "650": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.name" + "578": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.public" }, - "651": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.bucket_id" + "579": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.fileSizeLimit" }, - "652": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.updated_at" + "580": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.allowedMimeTypes" }, - "653": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.created_at" + "581": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "654": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.last_accessed_at" + "582": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "655": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.size" + "583": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "656": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.cache_control" + "584": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.message" }, - "657": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.content_type" + "585": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "658": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.etag" + "586": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "659": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.last_modified" + "587": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "660": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.metadata" + "588": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "661": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortBy" + "589": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.emptyBucket" }, - "662": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortBy.column" + "590": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.emptyBucket" }, - "663": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortBy.order" + "591": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "id" }, - "664": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions" + "592": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "665": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.cacheControl" + "593": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "666": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.contentType" + "594": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "667": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.upsert" + "595": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.message" }, - "668": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.duplex" + "596": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "669": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.metadata" + "597": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "670": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.headers" + "598": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "671": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "DestinationOptions" + "599": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" + }, + "600": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.deleteBucket" }, - "672": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "DestinationOptions.destinationBucket" + "601": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.deleteBucket" }, - "673": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchOptions" + "602": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "id" }, - "674": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchOptions.limit" + "603": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "675": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchOptions.offset" + "604": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "676": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchOptions.sortBy" + "605": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "677": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchOptions.search" + "606": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.message" }, - "678": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortByV2" + "607": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "679": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortByV2.column" + "608": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "680": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortByV2.order" + "609": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "681": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options" + "610": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "682": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options.limit" + "611": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClientOptions" }, - "683": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options.prefix" + "612": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClientOptions.useNewHostname" }, - "684": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options.cursor" + "613": { + "sourceFileName": "src/index.ts", + "qualifiedName": "StorageAnalyticsClient" }, - "685": { + "614": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options.with_delimiter" + "qualifiedName": "BucketType" }, - "686": { + "615": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options.sortBy" + "qualifiedName": "Bucket" }, - "687": { + "616": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object" + "qualifiedName": "Bucket.id" }, - "688": { + "617": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.id" + "qualifiedName": "Bucket.type" }, - "689": { + "618": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.key" + "qualifiedName": "Bucket.name" }, - "690": { + "619": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.name" + "qualifiedName": "Bucket.owner" }, - "691": { + "620": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.updated_at" + "qualifiedName": "Bucket.file_size_limit" }, - "692": { + "621": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.created_at" + "qualifiedName": "Bucket.allowed_mime_types" }, - "693": { + "622": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.metadata" + "qualifiedName": "Bucket.created_at" }, - "694": { + "623": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.last_accessed_at" + "qualifiedName": "Bucket.updated_at" }, - "695": { + "624": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Folder" + "qualifiedName": "Bucket.public" }, - "696": { + "625": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Result" + "qualifiedName": "ListBucketOptions" }, - "697": { + "626": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Result.hasNext" + "qualifiedName": "ListBucketOptions.limit" }, - "698": { + "627": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Result.folders" + "qualifiedName": "ListBucketOptions.offset" }, - "699": { + "628": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Result.objects" + "qualifiedName": "ListBucketOptions.sortColumn" }, - "700": { + "629": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Result.nextCursor" + "qualifiedName": "ListBucketOptions.sortOrder" }, - "701": { + "630": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FetchParameters" + "qualifiedName": "ListBucketOptions.search" }, - "702": { + "631": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FetchParameters.signal" + "qualifiedName": "AnalyticBucket" }, - "703": { + "632": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Metadata" + "qualifiedName": "AnalyticBucket.name" }, - "704": { + "633": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Metadata.name" + "qualifiedName": "AnalyticBucket.type" }, - "705": { + "634": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions" + "qualifiedName": "AnalyticBucket.format" }, - "706": { + "635": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions.width" + "qualifiedName": "AnalyticBucket.created_at" }, - "707": { + "636": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions.height" + "qualifiedName": "AnalyticBucket.updated_at" }, - "708": { + "637": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions.resize" + "qualifiedName": "FileObject" }, - "709": { + "638": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions.quality" + "qualifiedName": "FileObject.name" }, - "710": { + "639": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions.format" + "qualifiedName": "FileObject.bucket_id" }, - "711": { + "640": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Camelize" + "qualifiedName": "FileObject.owner" }, - "712": { + "641": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "T" + "qualifiedName": "FileObject.id" }, - "713": { + "642": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "DownloadResult" + "qualifiedName": "FileObject.updated_at" }, - "714": { + "643": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "FileObject.created_at" }, - "715": { + "644": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "FileObject.last_accessed_at" }, - "716": { + "645": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "FileObject.metadata" }, - "717": { + "646": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "FileObject.buckets" }, - "718": { + "647": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "FileObjectV2" }, - "719": { + "648": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "FileObjectV2.id" }, - "720": { + "649": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "T" - }, - "721": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "isStorageError" - }, - "722": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "isStorageError" - }, - "723": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "error" - }, - "724": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageError" - }, - "725": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageError.__constructor" - }, - "726": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageError" - }, - "727": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "message" + "qualifiedName": "FileObjectV2.version" }, - "729": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError" + "650": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.name" }, - "730": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError.__constructor" + "651": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.bucket_id" }, - "731": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError" + "652": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.updated_at" }, - "732": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "message" + "653": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.created_at" }, - "733": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "status" + "654": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.last_accessed_at" }, - "734": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "statusCode" + "655": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.size" }, - "735": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError.status" + "656": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.cache_control" }, - "736": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError.statusCode" + "657": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.content_type" }, - "737": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError.toJSON" + "658": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.etag" }, - "738": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError.toJSON" + "659": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.last_modified" }, - "739": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "__object" + "660": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.metadata" }, - "740": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "__object.name" + "661": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortBy" }, - "741": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "__object.message" + "662": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortBy.column" }, - "742": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "__object.status" + "663": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortBy.order" }, - "743": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "__object.statusCode" + "664": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions" }, - "745": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageUnknownError" + "665": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.cacheControl" }, - "746": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageUnknownError.__constructor" + "666": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.contentType" }, - "747": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageUnknownError" + "667": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.upsert" }, - "748": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "message" + "668": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.duplex" }, - "749": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "originalError" + "669": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.metadata" }, - "750": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageUnknownError.originalError" + "670": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.headers" }, - "752": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClient" + "671": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "DestinationOptions" }, - "753": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClient.__constructor" + "672": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "DestinationOptions.destinationBucket" }, - "754": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClient" + "673": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchOptions" }, - "755": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "url" + "674": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchOptions.limit" }, - "756": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "675": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchOptions.offset" }, - "757": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClient.from" + "676": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchOptions.sortBy" }, - "758": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClient.from" + "677": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchOptions.search" }, - "759": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "vectorBucketName" + "678": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortByV2" }, - "774": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.throwOnError" + "679": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortByV2.column" }, - "775": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.throwOnError" + "680": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortByV2.order" }, - "776": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" + "681": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options" }, - "777": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" + "682": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options.limit" }, - "778": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" + "683": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options.prefix" }, - "779": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" + "684": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options.cursor" }, - "780": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" + "685": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options.with_delimiter" }, - "781": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" + "686": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options.sortBy" }, - "782": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type" + "687": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object" }, - "783": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type.vectorBucket" + "688": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.id" }, - "784": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" + "689": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.key" }, - "785": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" + "690": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.name" }, - "786": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "options" + "691": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.updated_at" }, - "787": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" + "692": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.created_at" }, - "788": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" + "693": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.metadata" }, - "789": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" + "694": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.last_accessed_at" }, - "790": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope" + "695": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Folder" }, - "791": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.__constructor" + "696": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Result" }, - "792": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope" + "697": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Result.hasNext" }, - "793": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "url" + "698": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Result.folders" }, - "794": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "headers" + "699": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Result.objects" }, - "795": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type" + "700": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Result.nextCursor" }, - "796": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type.__index" + "701": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FetchParameters" }, - "798": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "vectorBucketName" + "702": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FetchParameters.signal" }, - "799": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "fetch" + "703": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "Metadata" }, - "800": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" + "704": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "Metadata.name" }, - "801": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" + "705": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions" }, - "802": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" + "706": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions.width" }, - "803": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" + "707": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions.height" }, - "804": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" + "708": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions.resize" }, - "805": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" + "709": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions.quality" }, - "806": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" + "710": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions.format" }, - "808": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.createIndex" + "711": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "Camelize" }, - "809": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.createIndex" + "712": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "T" }, - "810": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "713": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "DownloadResult" }, - "811": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.listIndexes" + "714": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type" }, - "812": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.listIndexes" + "715": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type.data" }, - "813": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "716": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type.error" }, - "814": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.getIndex" + "717": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type" }, - "815": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.getIndex" + "718": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type.data" }, - "816": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "indexName" + "719": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type.error" }, - "817": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "__type" + "720": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "T" }, - "818": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "__type.index" + "721": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "isStorageError" }, - "819": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.deleteIndex" + "722": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "isStorageError" }, - "820": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.deleteIndex" + "723": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "error" }, - "821": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "indexName" + "724": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageError" }, - "822": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.index" + "725": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageError.__constructor" }, - "823": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.index" + "726": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageError" }, - "824": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "indexName" + "727": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "message" }, - "839": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.throwOnError" + "729": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError" }, - "840": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.throwOnError" + "730": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError.__constructor" }, - "841": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope" + "731": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError" }, - "842": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.__constructor" + "732": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "message" }, - "843": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope" + "733": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "status" }, - "844": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "url" + "734": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "statusCode" }, - "845": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "headers" + "735": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError.status" }, - "846": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type" + "736": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError.statusCode" }, - "847": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type.__index" + "737": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError.toJSON" }, - "849": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "vectorBucketName" + "738": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError.toJSON" + }, + "739": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__object" }, - "850": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "indexName" + "740": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__object.name" }, - "851": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "fetch" + "741": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__object.message" }, - "852": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" + "742": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__object.status" }, - "853": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" + "743": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__object.statusCode" }, - "854": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" + "745": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageUnknownError" }, - "855": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" + "746": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageUnknownError.__constructor" }, - "856": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" + "747": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageUnknownError" }, - "857": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" + "748": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "message" }, - "858": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" + "749": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "originalError" }, - "861": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.putVectors" + "750": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageUnknownError.originalError" }, - "862": { + "752": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.putVectors" + "qualifiedName": "StorageVectorsClient" }, - "863": { + "753": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "qualifiedName": "StorageVectorsClient.__constructor" }, - "864": { + "754": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.getVectors" + "qualifiedName": "StorageVectorsClient" }, - "865": { + "755": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.getVectors" + "qualifiedName": "url" }, - "866": { + "756": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "867": { + "757": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.listVectors" + "qualifiedName": "StorageVectorsClient.from" }, - "868": { + "758": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.listVectors" + "qualifiedName": "StorageVectorsClient.from" }, - "869": { + "759": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "qualifiedName": "vectorBucketName" }, - "870": { + "760": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.queryVectors" + "qualifiedName": "StorageVectorsClient.createBucket" }, - "871": { + "761": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.queryVectors" + "qualifiedName": "StorageVectorsClient.createBucket" }, - "872": { + "762": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "qualifiedName": "vectorBucketName" }, - "873": { + "763": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.deleteVectors" + "qualifiedName": "StorageVectorsClient.getBucket" }, - "874": { + "764": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.deleteVectors" + "qualifiedName": "StorageVectorsClient.getBucket" }, - "875": { + "765": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" - }, - "890": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.throwOnError" - }, - "891": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.throwOnError" + "qualifiedName": "vectorBucketName" }, - "892": { + "766": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClientOptions" + "qualifiedName": "__type" }, - "893": { + "767": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClientOptions.headers" + "qualifiedName": "__type.vectorBucket" }, - "894": { + "768": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type" + "qualifiedName": "StorageVectorsClient.listBuckets" }, - "895": { + "769": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "StorageVectorsClient.listBuckets" }, - "897": { + "770": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClientOptions.fetch" - }, - "898": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "899": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "900": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" - }, - "901": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" - }, - "902": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" - }, - "903": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" - }, - "904": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" - }, - "905": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default" - }, - "906": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.__constructor" - }, - "907": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default" - }, - "908": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "url" - }, - "909": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "headers" - }, - "910": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type" - }, - "911": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type.__index" - }, - "913": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "fetch" - }, - "914": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "915": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "916": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" - }, - "917": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" + "qualifiedName": "options" }, - "918": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" + "771": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.deleteBucket" }, - "919": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" + "772": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.deleteBucket" }, - "920": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" + "773": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "vectorBucketName" }, - "935": { + "788": { "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", "qualifiedName": "default.throwOnError" }, - "936": { + "789": { "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", "qualifiedName": "default.throwOnError" }, - "937": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" - }, - "938": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" - }, - "939": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" - }, - "940": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" - }, - "941": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" - }, - "942": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" - }, - "943": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type" - }, - "944": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type.vectorBucket" - }, - "945": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" - }, - "946": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" - }, - "947": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "options" - }, - "948": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" - }, - "949": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" - }, - "950": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" - }, - "951": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default" + "790": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope" }, - "952": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.__constructor" + "791": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.__constructor" }, - "953": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default" + "792": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope" }, - "954": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "793": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "url" }, - "955": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "794": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "headers" }, - "956": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "795": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "__type" }, - "957": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "796": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "__type.__index" }, - "959": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "798": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "vectorBucketName" + }, + "799": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "fetch" }, - "960": { + "800": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "961": { + "801": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "962": { + "802": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "963": { + "803": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "964": { + "804": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "965": { + "805": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "966": { + "806": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "981": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.throwOnError" + "808": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.createIndex" }, - "982": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.throwOnError" + "809": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.createIndex" }, - "983": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.createIndex" + "810": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "options" }, - "984": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.createIndex" + "811": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.listIndexes" }, - "985": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "options" + "812": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.listIndexes" }, - "986": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.getIndex" + "813": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "options" }, - "987": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.getIndex" + "814": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.getIndex" }, - "988": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "vectorBucketName" + "815": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.getIndex" }, - "989": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "816": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "indexName" }, - "990": { + "817": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", "qualifiedName": "__type" }, - "991": { + "818": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", "qualifiedName": "__type.index" }, - "992": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.listIndexes" + "819": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.deleteIndex" }, - "993": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.listIndexes" + "820": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.deleteIndex" }, - "994": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "options" + "821": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "indexName" }, - "995": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.deleteIndex" + "822": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.index" }, - "996": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.deleteIndex" + "823": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.index" + }, + "824": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "indexName" }, - "997": { + "839": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "vectorBucketName" + "qualifiedName": "default.throwOnError" }, - "998": { + "840": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "indexName" + "qualifiedName": "default.throwOnError" }, - "999": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default" + "841": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope" }, - "1000": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.__constructor" + "842": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.__constructor" }, - "1001": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default" + "843": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope" }, - "1002": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "844": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "url" }, - "1003": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "845": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "headers" }, - "1004": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "846": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "__type" }, - "1005": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "847": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "__type.__index" }, - "1007": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "849": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "vectorBucketName" + }, + "850": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "indexName" + }, + "851": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "fetch" }, - "1008": { + "852": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "1009": { + "853": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "1010": { + "854": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "1011": { + "855": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "1012": { + "856": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "1013": { + "857": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "1014": { + "858": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "1029": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.throwOnError" + "861": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.putVectors" }, - "1030": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.throwOnError" + "862": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.putVectors" }, - "1031": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.putVectors" + "863": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "options" }, - "1032": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.putVectors" + "864": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.getVectors" }, - "1033": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "865": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.getVectors" + }, + "866": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "1034": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.getVectors" + "867": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.listVectors" }, - "1035": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.getVectors" + "868": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.listVectors" }, - "1036": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "869": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "1037": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.listVectors" + "870": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.queryVectors" }, - "1038": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.listVectors" + "871": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.queryVectors" }, - "1039": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "872": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "1040": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.queryVectors" + "873": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.deleteVectors" }, - "1041": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.queryVectors" + "874": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.deleteVectors" }, - "1042": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "875": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "1043": { + "890": { "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.deleteVectors" + "qualifiedName": "default.throwOnError" }, - "1044": { + "891": { "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.deleteVectors" + "qualifiedName": "default.throwOnError" }, - "1045": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "options" + "892": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClientOptions" + }, + "893": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClientOptions.headers" + }, + "894": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "__type" + }, + "895": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "__type.__index" + }, + "897": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClientOptions.fetch" + }, + "898": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "fetch" + }, + "899": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "fetch" + }, + "900": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "input" + }, + "901": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "init" + }, + "902": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "fetch" + }, + "903": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "input" + }, + "904": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "init" }, "1046": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", diff --git a/apps/docs/spec/enrichments/tsdoc_v2/storage_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/storage_dereferenced.json index 8b5a87ac18d30..a615ab9abf803 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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L67" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L75" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L14" } ], "extendedTypes": [ @@ -521,7 +521,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L26" } ], "signatures": [ @@ -564,7 +564,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L26" } ], "parameters": [ @@ -598,7 +598,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 28, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L28" } ], "indexSignatures": [ @@ -613,7 +613,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 28, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L28" } ], "parameters": [ @@ -904,9 +904,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/StorageClient.ts", - "line": 90, + "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L79" } ], "getSignature": { @@ -940,24 +940,16 @@ "text": "A StorageAnalyticsClient instance configured with the current storage settings." } ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = createClient(url, key)\nconst analytics = client.storage.analytics\n\n// Create an analytics bucket\nawait analytics.createBucket('my-analytics-bucket')\n\n// List all analytics buckets\nconst { data: buckets } = await analytics.listBuckets()\n\n// Delete an analytics bucket\nawait analytics.deleteBucket('old-analytics-bucket')\n```" - } - ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/StorageClient.ts", - "line": 90, + "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L79" } ], "type": { @@ -980,7 +972,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 61, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L61" } ], "getSignature": { @@ -1023,7 +1015,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 61, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L61" } ], "type": { @@ -1047,7 +1039,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "signatures": [ @@ -1081,7 +1073,7 @@ "content": [ { "kind": "text", - "text": "Promise with newly created bucket id or error" + "text": "Promise with response containing newly created bucket name or error" } ] }, @@ -1110,7 +1102,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "parameters": [ @@ -1169,7 +1161,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" } ], "type": { @@ -1210,7 +1202,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -1250,7 +1242,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -1291,7 +1283,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 207, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" } ], "type": { @@ -1313,7 +1305,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -1351,7 +1343,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 213, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" } ], "type": { @@ -1387,7 +1379,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" } ], "type": { @@ -1407,7 +1399,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 212, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" } ] } @@ -1432,7 +1424,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 217, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" } ], "type": { @@ -1451,7 +1443,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 218, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" } ], "type": { @@ -1473,7 +1465,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 216, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" } ] } @@ -1510,7 +1502,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "signatures": [ @@ -1581,7 +1573,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "parameters": [ @@ -1635,7 +1627,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -1658,7 +1650,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -1678,7 +1670,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ] } @@ -1695,7 +1687,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 408, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" } ], "type": { @@ -1715,7 +1707,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 406, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" } ] } @@ -1740,7 +1732,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" } ], "type": { @@ -1759,7 +1751,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 412, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" } ], "type": { @@ -1781,7 +1773,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 410, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" } ] } @@ -1818,7 +1810,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "signatures": [ @@ -1881,7 +1873,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "parameters": [ @@ -1935,7 +1927,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -1958,7 +1950,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -1978,7 +1970,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ] } @@ -1995,7 +1987,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 353, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" } ], "type": { @@ -2015,7 +2007,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 351, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" } ] } @@ -2040,7 +2032,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" } ], "type": { @@ -2059,7 +2051,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 357, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" } ], "type": { @@ -2081,7 +2073,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 355, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" } ] } @@ -2116,7 +2108,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L46" } ], "signatures": [ @@ -2148,7 +2140,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst avatars = storage.from('avatars')\n```" + "text": "```typescript\nconst avatars = supabase.storage.from('avatars')\n```" } ] } @@ -2159,7 +2151,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 46, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L46" } ], "parameters": [ @@ -2206,7 +2198,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "signatures": [ @@ -2240,7 +2232,7 @@ "content": [ { "kind": "text", - "text": "Promise with bucket details or error" + "text": "Promise with response containing bucket details or error" } ] }, @@ -2269,7 +2261,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "parameters": [ @@ -2323,7 +2315,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" } ], "type": { @@ -2344,7 +2336,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" } ], "type": { @@ -2364,7 +2356,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 140, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" } ] } @@ -2389,7 +2381,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" } ], "type": { @@ -2408,7 +2400,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 146, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" } ], "type": { @@ -2430,7 +2422,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" } ] } @@ -2467,7 +2459,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "signatures": [ @@ -2501,7 +2493,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets or error" + "text": "Promise with response containing array of buckets or error" } ] }, @@ -2532,7 +2524,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "parameters": [ @@ -2622,7 +2614,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 80, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" } ], "type": { @@ -2646,7 +2638,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 81, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" } ], "type": { @@ -2666,7 +2658,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" } ] } @@ -2691,7 +2683,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 84, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" } ], "type": { @@ -2710,7 +2702,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 85, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" } ], "type": { @@ -2732,7 +2724,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 83, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" } ] } @@ -2770,7 +2762,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "signatures": [ @@ -2806,7 +2798,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "type": { @@ -2839,7 +2831,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "signatures": [ @@ -2873,7 +2865,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -2902,7 +2894,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "parameters": [ @@ -2961,7 +2953,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 288, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" } ], "type": { @@ -3002,7 +2994,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 287, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" } ], "type": { @@ -3042,7 +3034,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" } ], "type": { @@ -3062,7 +3054,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 285, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" } ] } @@ -3099,7 +3091,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -3122,7 +3114,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -3142,7 +3134,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ] } @@ -3159,7 +3151,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 293, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" } ], "type": { @@ -3179,7 +3171,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 291, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" } ] } @@ -3204,7 +3196,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 296, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" } ], "type": { @@ -3223,7 +3215,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 297, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" } ], "type": { @@ -3245,7 +3237,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 295, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" } ] } @@ -3303,7 +3295,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 11, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L11" } ], "extendedTypes": [ @@ -3333,7 +3325,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 4, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L4" } ], "signatures": [ @@ -3348,7 +3340,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 4, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L4" } ], "parameters": [ @@ -3395,7 +3387,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 1, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L1" } ], "extendedTypes": [ @@ -3440,7 +3432,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L38" } ], "signatures": [ @@ -3455,7 +3447,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L38" } ], "parameters": [ @@ -3512,7 +3504,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L36" } ], "type": { @@ -3536,7 +3528,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 35, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L35" } ], "extendedTypes": [ @@ -3574,7 +3566,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L30" } ], "signatures": [ @@ -3589,7 +3581,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L30" } ], "parameters": [ @@ -3657,7 +3649,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L27" } ], "type": { @@ -3676,7 +3668,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L28" } ], "type": { @@ -3695,7 +3687,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L37" } ], "signatures": [ @@ -3710,7 +3702,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 37, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L37" } ], "type": { @@ -3733,7 +3725,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 40, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L40" } ], "type": { @@ -3753,7 +3745,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 39, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L39" } ], "type": { @@ -3773,7 +3765,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 41, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L41" } ], "type": { @@ -3793,7 +3785,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 42, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L42" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L42" } ], "type": { @@ -3814,7 +3806,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 38, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L38" } ] } @@ -3842,7 +3834,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 26, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L26" } ], "extendedTypes": [ @@ -3864,19 +3856,11 @@ "summary": [ { "kind": "text", - "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", - "text": "```typescript\nimport { StorageClient } from '@supabase/storage-js'\n\nconst storageClient = new StorageClient(url, headers)\nconst vectors = storageClient.vectors\n\n// Use vector operations\nawait vectors.createBucket('embeddings-prod')\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({ ... })\n```" - }, - { - "kind": "text", - "text": "\n\n2. **Standalone (for vector-only applications):**\n" + "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\n" }, { "kind": "code", - "text": "```typescript\nimport { StorageVectorsClient } from '@supabase/storage-js'\n\nconst vectorsClient = new StorageVectorsClient('https://api.example.com', {\n headers: { 'Authorization': 'Bearer token' }\n})\n\n// Access bucket operations\nawait vectorsClient.createBucket('embeddings-prod')\n\n// Access index operations via buckets\nconst bucket = vectorsClient.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine'\n})\n\n// Access vector operations via index\nconst index = bucket.index('documents')\nawait index.putVectors({\n vectors: [\n { key: 'doc-1', data: { float32: [...] }, metadata: { title: 'Intro' } }\n ]\n})\n\n// Query similar vectors\nconst { data } = await index.queryVectors({\n queryVector: { float32: [...] },\n topK: 5,\n returnDistance: true\n})\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .createBucket('embeddings-prod')\n\n// Access index operations via buckets\nconst bucket = supabase.storage.vectors.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"] @@ -3891,9 +3875,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 112, + "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98" } ], "signatures": [ @@ -3935,9 +3919,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 112, + "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98" } ], "parameters": [ @@ -4013,42 +3997,38 @@ }, "overwrites": { "type": "reference", - "target": 907, - "name": "default.constructor" + "target": -1, + "name": "VectorBucketApi.constructor" } } ], "overwrites": { "type": "reference", - "target": 906, - "name": "default.constructor" + "target": -1, + "name": "VectorBucketApi.constructor" } }, { - "id": 776, + "id": 760, "name": "createBucket", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" } ], "signatures": [ { - "id": 777, + "id": 761, "name": "createBucket", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { @@ -4075,45 +4055,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if bucket already exists (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorMaxBucketsExceeded`" - }, - { - "kind": "text", - "text": " if quota exceeded (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.createBucket('embeddings-prod')\nif (error) {\n console.error('Failed to create bucket:', error.message)\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .createBucket('embeddings-prod')\n```" } ] } @@ -4122,15 +4069,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" } ], "parameters": [ { - "id": 778, + "id": 762, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -4172,49 +4119,45 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 938, - "name": "default.createBucket" + "target": -1, + "name": "VectorBucketApi.createBucket" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 937, - "name": "default.createBucket" + "target": -1, + "name": "VectorBucketApi.createBucket" } }, { - "id": 787, + "id": 771, "name": "deleteBucket", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L226" } ], "signatures": [ { - "id": 788, + "id": 772, "name": "deleteBucket", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "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." + "text": "Deletes a vector bucket (bucket must be empty)\nAll indexes must be deleted before deleting 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": [ @@ -4236,45 +4179,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorBucketNotEmpty`" - }, - { - "kind": "text", - "text": " if bucket contains indexes (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\n// Delete all indexes first, then delete bucket\nconst { error } = await client.deleteBucket('old-bucket')\nif (error?.statusCode === 'S3VectorBucketNotEmpty') {\n console.error('Must delete all indexes first')\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .deleteBucket('embeddings-old')\n```" } ] } @@ -4283,15 +4193,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L226" } ], "parameters": [ { - "id": 789, + "id": 773, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -4333,17 +4243,17 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 949, - "name": "default.deleteBucket" + "target": -1, + "name": "VectorBucketApi.deleteBucket" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 948, - "name": "default.deleteBucket" + "target": -1, + "name": "VectorBucketApi.deleteBucket" } }, { @@ -4355,9 +4265,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 145, + "line": 120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L120" } ], "signatures": [ @@ -4398,7 +4308,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\n\n// Create an index in this bucket\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine'\n})\n\n// List indexes in this bucket\nconst { data } = await bucket.listIndexes()\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\n```" } ] } @@ -4408,9 +4318,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 145, + "line": 120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L120" } ], "parameters": [ @@ -4444,35 +4354,31 @@ ] }, { - "id": 779, + "id": 763, "name": "getBucket", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ], "signatures": [ { - "id": 780, + "id": 764, "name": "getBucket", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "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." + "text": "Retrieves metadata for a specific vector bucket\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type." } ], "blockTags": [ @@ -4494,37 +4400,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getBucket('embeddings-prod')\nif (data) {\n console.log('Bucket created at:', new Date(data.vectorBucket.creationTime! * 1000))\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .getBucket('embeddings-prod')\n\nconsole.log('Bucket created:', data?.vectorBucket.creationTime)\n```" } ] } @@ -4533,15 +4414,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ], "parameters": [ { - "id": 781, + "id": 765, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -4550,7 +4431,7 @@ "summary": [ { "kind": "text", - "text": "Name of the vector bucket to retrieve" + "text": "Name of the vector bucket" } ] }, @@ -4574,24 +4455,24 @@ { "type": "reflection", "declaration": { - "id": 782, + "id": 766, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 783, + "id": 767, "name": "vectorBucket", "variant": "declaration", "kind": 1024, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ], "type": { @@ -4605,15 +4486,15 @@ "groups": [ { "title": "Properties", - "children": [783] + "children": [767] } ], "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 171, "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L171" } ] } @@ -4626,49 +4507,45 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 941, - "name": "default.getBucket" + "target": -1, + "name": "VectorBucketApi.getBucket" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 940, - "name": "default.getBucket" + "target": -1, + "name": "VectorBucketApi.getBucket" } }, { - "id": 784, + "id": 768, "name": "listBuckets", "variant": "declaration", "kind": 2048, - "flags": { - "isInherited": true - }, + "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 199, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L199" } ], "signatures": [ { - "id": 785, + "id": 769, "name": "listBuckets", "variant": "signature", "kind": 4096, - "flags": { - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "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." + "text": "Lists all vector buckets with optional filtering and pagination\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type." } ], "blockTags": [ @@ -4686,24 +4563,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets and pagination token" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" + "text": "Promise with list of buckets or error" } ] }, @@ -4712,7 +4572,7 @@ "content": [ { "kind": "code", - "text": "```typescript\n// List all buckets with prefix 'prod-'\nconst { data, error } = await client.listBuckets({ prefix: 'prod-' })\nif (data) {\n console.log('Found buckets:', data.buckets.length)\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listBuckets({ nextToken: data.nextToken })\n }\n}\n```" + "text": "```typescript\nconst { data, error } = await supabase\n .storage\n .vectors\n .listBuckets({ prefix: 'embeddings-' })\n\ndata?.vectorBuckets.forEach(bucket => {\n console.log(bucket.vectorBucketName)\n})\n```" } ] } @@ -4721,15 +4581,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 199, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L199" } ], "parameters": [ { - "id": 786, + "id": 770, "name": "options", "variant": "param", "kind": 32768, @@ -4738,7 +4598,7 @@ "summary": [ { "kind": "text", - "text": "Listing options" + "text": "Optional filters (prefix, maxResults, nextToken)" } ] }, @@ -4746,27 +4606,7 @@ "type": "reference", "target": 1085, "name": "ListVectorBucketsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "prefix": [ - { - "kind": "text", - "text": "Filter buckets by name prefix" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 100)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ] - } + "package": "@supabase/storage-js" }, "defaultValue": "{}" } @@ -4796,21 +4636,21 @@ "name": "Promise", "package": "typescript" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 946, - "name": "default.listBuckets" + "target": -1, + "name": "VectorBucketApi.listBuckets" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 945, - "name": "default.listBuckets" + "target": -1, + "name": "VectorBucketApi.listBuckets" } }, { - "id": 774, + "id": 788, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -4821,14 +4661,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, + "line": 31, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L31" } ], "signatures": [ { - "id": 775, + "id": 789, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -4839,36 +4679,7 @@ "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**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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createBucket('my-bucket') // throws on error\n```" - } - ] + "text": "Enable throwing errors instead of returning them in the response" } ], "modifierTags": ["@alpha"] @@ -4876,9 +4687,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, + "line": 31, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L31" } ], "type": { @@ -4887,15 +4698,15 @@ }, "inheritedFrom": { "type": "reference", - "target": 936, - "name": "default.throwOnError" + "target": -1, + "name": "VectorBucketApi.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 935, - "name": "default.throwOnError" + "target": -1, + "name": "VectorBucketApi.throwOnError" } } ], @@ -4906,27 +4717,31 @@ }, { "title": "Methods", - "children": [776, 787, 757, 779, 784, 774] + "children": [760, 771, 757, 763, 768, 788] } ], "categories": [ { - "title": "Vector Buckets", - "children": [753, 776, 787, 757, 779, 784, 774] - } + "title": "Other", + "children": [788] + }, + { + "title": "Vector Buckets", + "children": [753, 760, 771, 757, 763, 768] + } ], "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 94, + "line": 80, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L80" } ], "extendedTypes": [ { "type": "reference", - "target": 905, + "target": -1, "name": "default", "package": "@supabase/storage-js" } @@ -4958,7 +4773,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L7" } ], "signatures": [ @@ -4973,7 +4788,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 7, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L7" } ], "parameters": [ @@ -5020,7 +4835,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 4, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L4" } ], "extendedTypes": [ @@ -5073,7 +4888,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L54" } ], "signatures": [ @@ -5088,7 +4903,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 54, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L54" } ], "parameters": [ @@ -5145,7 +4960,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L52" } ], "type": { @@ -5169,7 +4984,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 51, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L51" } ], "extendedTypes": [ @@ -5182,8 +4997,8 @@ ] }, { - "id": 905, - "name": "VectorBucketApi", + "id": 790, + "name": "VectorBucketScope", "variant": "declaration", "kind": 128, "flags": {}, @@ -5191,30 +5006,30 @@ "summary": [ { "kind": "text", - "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." + "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": [ { - "id": 906, + "id": 791, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L256" } ], "signatures": [ { - "id": 907, - "name": "VectorBucketApi", + "id": 792, + "name": "VectorBucketScope", "variant": "signature", "kind": 16384, "flags": {}, @@ -5222,7 +5037,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -5240,7 +5055,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\n```" } ] } @@ -5249,80 +5064,64 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L256" } ], "parameters": [ { - "id": 908, + "id": 793, "name": "url", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The base URL for the storage vectors API" - } - ] - }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 909, + "id": 794, "name": "headers", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "HTTP headers to include in requests" - } - ] - }, "type": { "type": "reflection", "declaration": { - "id": 910, + "id": 795, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, - "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 258, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L258" } ], "indexSignatures": [ { - "id": 911, + "id": 796, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 45, - "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 258, + "character": 15, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L258" } ], "parameters": [ { - "id": 912, + "id": 797, "name": "key", "variant": "param", "kind": 32768, @@ -5340,29 +5139,31 @@ } ] } - }, - "defaultValue": "{}" + } + }, + { + "id": 798, + "name": "vectorBucketName", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } }, { - "id": 913, + "id": 799, "name": "fetch", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Optional custom fetch implementation" - } - ] - }, "type": { "type": "reflection", "declaration": { - "id": 914, + "id": 800, "name": "__type", "variant": "declaration", "kind": 65536, @@ -5381,7 +5182,7 @@ ], "signatures": [ { - "id": 915, + "id": 801, "name": "__type", "variant": "signature", "kind": 4096, @@ -5403,7 +5204,7 @@ ], "parameters": [ { - "id": 916, + "id": 802, "name": "input", "variant": "param", "kind": 32768, @@ -5433,7 +5234,7 @@ } }, { - "id": 917, + "id": 803, "name": "init", "variant": "param", "kind": 32768, @@ -5473,7 +5274,7 @@ } }, { - "id": 918, + "id": 804, "name": "__type", "variant": "signature", "kind": 4096, @@ -5495,7 +5296,7 @@ ], "parameters": [ { - "id": 919, + "id": 805, "name": "input", "variant": "param", "kind": 32768, @@ -5529,7 +5330,7 @@ } }, { - "id": 920, + "id": 806, "name": "init", "variant": "param", "kind": 32768, @@ -5575,32 +5376,41 @@ ], "type": { "type": "reference", - "target": 905, - "name": "VectorBucketApi", - "package": "@supabase/storage-js", - "qualifiedName": "default" + "target": 790, + "name": "VectorBucketScope", + "package": "@supabase/storage-js" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.constructor" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.constructor" + } }, { - "id": 937, - "name": "createBucket", + "id": 808, + "name": "createIndex", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 293, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L293" } ], "signatures": [ { - "id": 938, - "name": "createBucket", + "id": 809, + "name": "createIndex", "variant": "signature", "kind": 4096, "flags": {}, @@ -5608,7 +5418,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -5630,45 +5440,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if bucket already exists (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorMaxBucketsExceeded`" - }, - { - "kind": "text", - "text": " if quota exceeded (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.createBucket('embeddings-prod')\nif (error) {\n console.error('Failed to create bucket:', error.message)\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('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```" } ] } @@ -5677,16 +5454,16 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 100, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 293, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L293" } ], "parameters": [ { - "id": 939, - "name": "vectorBucketName", + "id": 810, + "name": "options", "variant": "param", "kind": 32768, "flags": {}, @@ -5694,13 +5471,30 @@ "summary": [ { "kind": "text", - "text": "Unique name for the vector bucket" + "text": "Index configuration (vectorBucketName is automatically set)" } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1046, + "name": "CreateIndexOptions", + "package": "@supabase/storage-js" + }, + { + "type": "literal", + "value": "vectorBucketName" + } + ], + "name": "Omit", + "package": "typescript" } } ], @@ -5726,28 +5520,38 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.createIndex" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.createIndex" + } }, { - "id": 948, - "name": "deleteBucket", + "id": 819, + "name": "deleteIndex", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 369, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L369" } ], "signatures": [ { - "id": 949, - "name": "deleteBucket", + "id": 820, + "name": "deleteIndex", "variant": "signature", "kind": 4096, "flags": {}, @@ -5755,7 +5559,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -5777,45 +5581,12 @@ } ] }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorBucketNotEmpty`" - }, - { - "kind": "text", - "text": " if bucket contains indexes (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```typescript\n// Delete all indexes first, then delete bucket\nconst { error } = await client.deleteBucket('old-bucket')\nif (error?.statusCode === 'S3VectorBucketNotEmpty') {\n console.error('Must delete all indexes first')\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\nawait bucket.deleteIndex('old-index')\n```" } ] } @@ -5824,16 +5595,16 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 243, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 369, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L369" } ], "parameters": [ { - "id": 950, - "name": "vectorBucketName", + "id": 821, + "name": "indexName", "variant": "param", "kind": 32768, "flags": {}, @@ -5841,7 +5612,7 @@ "summary": [ { "kind": "text", - "text": "Name of the vector bucket to delete" + "text": "Name of the index to delete" } ] }, @@ -5873,28 +5644,38 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.deleteIndex" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.deleteIndex" + } }, { - "id": 940, - "name": "getBucket", + "id": 814, + "name": "getIndex", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 346, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L346" } ], "signatures": [ { - "id": 941, - "name": "getBucket", + "id": 815, + "name": "getIndex", "variant": "signature", "kind": 4096, "flags": {}, @@ -5902,7 +5683,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -5920,32 +5701,7 @@ "content": [ { "kind": "text", - "text": "Promise with bucket metadata or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" + "text": "Promise with index metadata or error" } ] }, @@ -5954,7 +5710,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getBucket('embeddings-prod')\nif (data) {\n console.log('Bucket created at:', new Date(data.vectorBucket.creationTime! * 1000))\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\nconst { data } = await bucket.getIndex('documents-openai')\nconsole.log('Dimension:', data?.index.dimension)\n```" } ] } @@ -5963,16 +5719,16 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 346, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L346" } ], "parameters": [ { - "id": 942, - "name": "vectorBucketName", + "id": 816, + "name": "indexName", "variant": "param", "kind": 32768, "flags": {}, @@ -5980,7 +5736,7 @@ "summary": [ { "kind": "text", - "text": "Name of the vector bucket to retrieve" + "text": "Name of the index to retrieve" } ] }, @@ -6004,30 +5760,30 @@ { "type": "reflection", "declaration": { - "id": 943, + "id": 817, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 944, - "name": "vectorBucket", + "id": 818, + "name": "index", "variant": "declaration", "kind": 1024, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 67, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", + "line": 77, + "character": 27, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L77" } ], "type": { "type": "reference", - "target": 1053, - "name": "VectorBucket", + "target": 1057, + "name": "VectorIndex", "package": "@supabase/storage-js" } } @@ -6035,15 +5791,15 @@ "groups": [ { "title": "Properties", - "children": [944] + "children": [818] } ], "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 145, - "character": 65, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145" + "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", + "line": 77, + "character": 25, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L77" } ] } @@ -6055,28 +5811,38 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.getIndex" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.getIndex" + } }, { - "id": 945, - "name": "listBuckets", + "id": 822, + "name": "index", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 404, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L404" } ], "signatures": [ { - "id": 946, - "name": "listBuckets", + "id": 823, + "name": "index", "variant": "signature", "kind": 4096, "flags": {}, @@ -6084,7 +5850,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -6102,24 +5868,104 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets and pagination token" + "text": "Index-scoped client with vector data operations" } ] }, { - "tag": "@throws", + "tag": "@example", "content": [ + { + "kind": "code", + "text": "```typescript\nconst index = supabase.storage.vectors.from('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```" + } + ] + } + ], + "modifierTags": ["@alpha"] + }, + "sources": [ + { + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 404, + "character": 2, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L404" + } + ], + "parameters": [ + { + "id": 824, + "name": "indexName", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ { "kind": "text", - "text": "With code:\n- " - }, + "text": "Name of the index" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "target": 841, + "name": "VectorIndexScope", + "package": "@supabase/storage-js" + } + } + ] + }, + { + "id": 811, + "name": "listIndexes", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "sources": [ + { + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 319, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L319" + } + ], + "signatures": [ + { + "id": 812, + "name": "listIndexes", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name\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": "code", - "text": "`InternalError`" - }, + "kind": "text", + "text": "Vector Buckets" + } + ] + }, + { + "tag": "@returns", + "content": [ { "kind": "text", - "text": " for server errors (HTTP 500)" + "text": "Promise with response containing indexes array and pagination token or error" } ] }, @@ -6128,7 +5974,7 @@ "content": [ { "kind": "code", - "text": "```typescript\n// List all buckets with prefix 'prod-'\nconst { data, error } = await client.listBuckets({ prefix: 'prod-' })\nif (data) {\n console.log('Found buckets:', data.buckets.length)\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listBuckets({ nextToken: data.nextToken })\n }\n}\n```" + "text": "```typescript\nconst bucket = supabase.storage.vectors.from('embeddings-prod')\nconst { data } = await bucket.listIndexes({ prefix: 'documents-' })\n```" } ] } @@ -6137,15 +5983,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 197, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 319, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L319" } ], "parameters": [ { - "id": 947, + "id": 813, "name": "options", "variant": "param", "kind": 32768, @@ -6154,35 +6000,30 @@ "summary": [ { "kind": "text", - "text": "Listing options" + "text": "Listing options (vectorBucketName is automatically set)" } ] }, "type": { "type": "reference", - "target": 1085, - "name": "ListVectorBucketsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "prefix": [ - { - "kind": "text", - "text": "Filter buckets by name prefix" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 100)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ] - } + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1094, + "name": "ListIndexesOptions", + "package": "@supabase/storage-js" + }, + { + "type": "literal", + "value": "vectorBucketName" + } + ], + "name": "Omit", + "package": "typescript" }, "defaultValue": "{}" } @@ -6200,8 +6041,8 @@ "typeArguments": [ { "type": "reference", - "target": 1089, - "name": "ListVectorBucketsResponse", + "target": 1099, + "name": "ListIndexesResponse", "package": "@supabase/storage-js" } ], @@ -6211,122 +6052,121 @@ ], "name": "Promise", "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.listIndexes" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.listIndexes" + } }, { - "id": 935, + "id": 839, "name": "throwOnError", "variant": "declaration", "kind": 2048, "flags": { - "isPublic": true + "isPublic": true, + "isInherited": true }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, + "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", + "line": 50, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50" } ], "signatures": [ { - "id": 936, + "id": 840, "name": "throwOnError", "variant": "signature", "kind": 4096, - "flags": {}, + "flags": { + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createBucket('my-bucket') // throws on error\n```" - } - ] + "text": "Enable throwing errors instead of returning them in the response" } ], "modifierTags": ["@alpha"] }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 69, + "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", + "line": 50, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50" } ], "type": { "type": "intrinsic", "name": "this" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.throwOnError" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "VectorIndexApi.throwOnError" + } } ], "groups": [ { "title": "Constructors", - "children": [906] + "children": [791] }, { "title": "Methods", - "children": [937, 948, 940, 945, 935] + "children": [808, 819, 814, 822, 811, 839] } ], "categories": [ + { + "title": "Other", + "children": [839] + }, { "title": "Vector Buckets", - "children": [906, 937, 948, 940, 945, 935] + "children": [791, 808, 819, 814, 822, 811] } ], "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts", - "line": 21, - "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L21" + "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", + "line": 240, + "character": 13, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L240" } ], - "extendedBy": [ + "extendedTypes": [ { "type": "reference", - "target": 752, - "name": "StorageVectorsClient" + "target": -1, + "name": "default", + "package": "@supabase/storage-js" } ] }, { - "id": 790, - "name": "VectorBucketScope", + "id": 841, + "name": "VectorIndexScope", "variant": "declaration", "kind": 128, "flags": {}, @@ -6334,14 +6174,14 @@ "summary": [ { "kind": "text", - "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." + "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": [ { - "id": 791, + "id": 842, "name": "constructor", "variant": "declaration", "kind": 512, @@ -6349,15 +6189,15 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 175, + "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L442" } ], "signatures": [ { - "id": 792, - "name": "VectorBucketScope", + "id": 843, + "name": "VectorIndexScope", "variant": "signature", "kind": 16384, "flags": {}, @@ -6365,7 +6205,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -6383,7 +6223,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\n```" } ] } @@ -6393,14 +6233,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 175, + "line": 442, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L442" } ], "parameters": [ { - "id": 793, + "id": 844, "name": "url", "variant": "param", "kind": 32768, @@ -6411,7 +6251,7 @@ } }, { - "id": 794, + "id": 845, "name": "headers", "variant": "param", "kind": 32768, @@ -6419,7 +6259,7 @@ "type": { "type": "reflection", "declaration": { - "id": 795, + "id": 846, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6427,14 +6267,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 177, + "line": 444, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L444" } ], "indexSignatures": [ { - "id": 796, + "id": 847, "name": "__index", "variant": "signature", "kind": 8192, @@ -6442,14 +6282,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 177, + "line": 444, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L444" } ], "parameters": [ { - "id": 797, + "id": 848, "name": "key", "variant": "param", "kind": 32768, @@ -6470,7 +6310,7 @@ } }, { - "id": 798, + "id": 849, "name": "vectorBucketName", "variant": "param", "kind": 32768, @@ -6481,7 +6321,18 @@ } }, { - "id": 799, + "id": 850, + "name": "indexName", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 851, "name": "fetch", "variant": "param", "kind": 32768, @@ -6491,7 +6342,7 @@ "type": { "type": "reflection", "declaration": { - "id": 800, + "id": 852, "name": "__type", "variant": "declaration", "kind": 65536, @@ -6510,7 +6361,7 @@ ], "signatures": [ { - "id": 801, + "id": 853, "name": "__type", "variant": "signature", "kind": 4096, @@ -6532,7 +6383,7 @@ ], "parameters": [ { - "id": 802, + "id": 854, "name": "input", "variant": "param", "kind": 32768, @@ -6562,7 +6413,7 @@ } }, { - "id": 803, + "id": 855, "name": "init", "variant": "param", "kind": 32768, @@ -6602,7 +6453,7 @@ } }, { - "id": 804, + "id": 856, "name": "__type", "variant": "signature", "kind": 4096, @@ -6624,7 +6475,7 @@ ], "parameters": [ { - "id": 805, + "id": 857, "name": "input", "variant": "param", "kind": 32768, @@ -6658,7 +6509,7 @@ } }, { - "id": 806, + "id": 858, "name": "init", "variant": "param", "kind": 32768, @@ -6704,41 +6555,41 @@ ], "type": { "type": "reference", - "target": 790, - "name": "VectorBucketScope", + "target": 841, + "name": "VectorIndexScope", "package": "@supabase/storage-js" }, "overwrites": { "type": "reference", - "target": 953, - "name": "default.constructor" + "target": -1, + "name": "VectorDataApi.constructor" } } ], "overwrites": { "type": "reference", - "target": 952, - "name": "default.constructor" + "target": -1, + "name": "VectorDataApi.constructor" } }, { - "id": 808, - "name": "createIndex", + "id": 873, + "name": "deleteVectors", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 212, + "line": 607, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L607" } ], "signatures": [ { - "id": 809, - "name": "createIndex", + "id": 874, + "name": "deleteVectors", "variant": "signature", "kind": 4096, "flags": {}, @@ -6746,7 +6597,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -6773,7 +6624,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n metadataConfiguration: {\n nonFilterableMetadataKeys: ['raw_text']\n }\n})\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\nawait index.deleteVectors({\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\n```" } ] } @@ -6783,14 +6634,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 212, + "line": 607, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L607" } ], "parameters": [ { - "id": 810, + "id": 875, "name": "options", "variant": "param", "kind": 32768, @@ -6799,7 +6650,7 @@ "summary": [ { "kind": "text", - "text": "Index configuration (vectorBucketName is automatically set)" + "text": "Deletion options (bucket and index names automatically set)" } ] }, @@ -6812,13 +6663,22 @@ "typeArguments": [ { "type": "reference", - "target": 1046, - "name": "CreateIndexOptions", + "target": 1116, + "name": "DeleteVectorsOptions", "package": "@supabase/storage-js" }, { - "type": "literal", - "value": "vectorBucketName" + "type": "union", + "types": [ + { + "type": "literal", + "value": "vectorBucketName" + }, + { + "type": "literal", + "value": "indexName" + } + ] } ], "name": "Omit", @@ -6851,35 +6711,35 @@ }, "overwrites": { "type": "reference", - "target": 984, - "name": "default.createIndex" + "target": -1, + "name": "VectorDataApi.deleteVectors" } } ], "overwrites": { "type": "reference", - "target": 983, - "name": "default.createIndex" + "target": -1, + "name": "VectorDataApi.deleteVectors" } }, { - "id": 819, - "name": "deleteIndex", + "id": 864, + "name": "getVectors", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 288, + "line": 511, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L511" } ], "signatures": [ { - "id": 820, - "name": "deleteIndex", + "id": 865, + "name": "getVectors", "variant": "signature", "kind": 4096, "flags": {}, @@ -6887,7 +6747,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -6905,7 +6765,7 @@ "content": [ { "kind": "text", - "text": "Promise with empty response on success or error" + "text": "Promise with response containing vectors array or error" } ] }, @@ -6914,7 +6774,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nawait bucket.deleteIndex('old-index')\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\nconst { data } = await index.getVectors({\n keys: ['doc-1', 'doc-2'],\n returnMetadata: true\n})\n```" } ] } @@ -6924,15 +6784,15 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 288, + "line": 511, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L511" } ], "parameters": [ { - "id": 821, - "name": "indexName", + "id": 866, + "name": "options", "variant": "param", "kind": 32768, "flags": {}, @@ -6940,13 +6800,39 @@ "summary": [ { "kind": "text", - "text": "Name of the index to delete" + "text": "Vector retrieval options (bucket and index names automatically set)" } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1108, + "name": "GetVectorsOptions", + "package": "@supabase/storage-js" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "vectorBucketName" + }, + { + "type": "literal", + "value": "indexName" + } + ] + } + ], + "name": "Omit", + "package": "typescript" } } ], @@ -6962,8 +6848,10 @@ "target": 1142, "typeArguments": [ { - "type": "intrinsic", - "name": "undefined" + "type": "reference", + "target": 1114, + "name": "GetVectorsResponse", + "package": "@supabase/storage-js" } ], "name": "ApiResponse", @@ -6975,35 +6863,35 @@ }, "overwrites": { "type": "reference", - "target": 996, - "name": "default.deleteIndex" + "target": -1, + "name": "VectorDataApi.getVectors" } } ], "overwrites": { "type": "reference", - "target": 995, - "name": "default.deleteIndex" + "target": -1, + "name": "VectorDataApi.getVectors" } }, { - "id": 814, - "name": "getIndex", + "id": 867, + "name": "listVectors", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 265, + "line": 541, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L541" } ], "signatures": [ { - "id": 815, - "name": "getIndex", + "id": 868, + "name": "listVectors", "variant": "signature", "kind": 4096, "flags": {}, @@ -7011,7 +6899,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -7029,7 +6917,7 @@ "content": [ { "kind": "text", - "text": "Promise with index metadata or error" + "text": "Promise with response containing vectors array and pagination token or error" } ] }, @@ -7038,7 +6926,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nconst { data } = await bucket.getIndex('documents-openai')\nconsole.log('Dimension:', data?.index.dimension)\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('embeddings-prod').index('documents-openai')\nconst { data } = await index.listVectors({\n maxResults: 500,\n returnMetadata: true\n})\n```" } ] } @@ -7048,15 +6936,15 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 265, + "line": 541, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L541" } ], "parameters": [ { - "id": 816, - "name": "indexName", + "id": 869, + "name": "options", "variant": "param", "kind": 32768, "flags": {}, @@ -7064,14 +6952,41 @@ "summary": [ { "kind": "text", - "text": "Name of the index to retrieve" + "text": "Listing options (bucket and index names automatically set)" } ] }, "type": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1120, + "name": "ListVectorsOptions", + "package": "@supabase/storage-js" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "vectorBucketName" + }, + { + "type": "literal", + "value": "indexName" + } + ] + } + ], + "name": "Omit", + "package": "typescript" + }, + "defaultValue": "{}" } ], "type": { @@ -7086,51 +7001,10 @@ "target": 1142, "typeArguments": [ { - "type": "reflection", - "declaration": { - "id": 817, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 818, - "name": "index", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, - "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" - } - ], - "type": { - "type": "reference", - "target": 1057, - "name": "VectorIndex", - "package": "@supabase/storage-js" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [818] - } - ], - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, - "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" - } - ] - } + "type": "reference", + "target": 1129, + "name": "ListVectorsResponse", + "package": "@supabase/storage-js" } ], "name": "ApiResponse", @@ -7142,35 +7016,35 @@ }, "overwrites": { "type": "reference", - "target": 987, - "name": "default.getIndex" + "target": -1, + "name": "VectorDataApi.listVectors" } } ], "overwrites": { "type": "reference", - "target": 986, - "name": "default.getIndex" + "target": -1, + "name": "VectorDataApi.listVectors" } }, { - "id": 822, - "name": "index", + "id": 861, + "name": "putVectors", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 323, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323" + "line": 481, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L481" } ], "signatures": [ { - "id": 823, - "name": "index", + "id": 862, + "name": "putVectors", "variant": "signature", "kind": 4096, "flags": {}, @@ -7178,7 +7052,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -7196,7 +7070,7 @@ "content": [ { "kind": "text", - "text": "Index-scoped client with vector data operations" + "text": "Promise with empty response on success or error" } ] }, @@ -7205,7 +7079,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\n\n// Insert vectors\nawait index.putVectors({\n vectors: [\n { key: 'doc-1', data: { float32: [...] }, metadata: { title: 'Intro' } }\n ]\n})\n\n// Query similar vectors\nconst { data } = await index.queryVectors({\n queryVector: { float32: [...] },\n topK: 5\n})\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('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```" } ] } @@ -7215,15 +7089,15 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 323, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323" + "line": 481, + "character": 17, + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L481" } ], "parameters": [ { - "id": 824, - "name": "indexName", + "id": 863, + "name": "options", "variant": "param", "kind": 32768, "flags": {}, @@ -7231,43 +7105,96 @@ "summary": [ { "kind": "text", - "text": "Name of the index" + "text": "Vector insertion options (bucket and index names automatically set)" } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1104, + "name": "PutVectorsOptions", + "package": "@supabase/storage-js" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "vectorBucketName" + }, + { + "type": "literal", + "value": "indexName" + } + ] + } + ], + "name": "Omit", + "package": "typescript" } } ], "type": { "type": "reference", - "target": 841, - "name": "VectorIndexScope", - "package": "@supabase/storage-js" + "target": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 1142, + "typeArguments": [ + { + "type": "intrinsic", + "name": "undefined" + } + ], + "name": "ApiResponse", + "package": "@supabase/storage-js" + } + ], + "name": "Promise", + "package": "typescript" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorDataApi.putVectors" } } - ] + ], + "overwrites": { + "type": "reference", + "target": -1, + "name": "VectorDataApi.putVectors" + } }, { - "id": 811, - "name": "listIndexes", + "id": 870, + "name": "queryVectors", "variant": "declaration", "kind": 2048, "flags": {}, "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 238, + "line": 576, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L576" } ], "signatures": [ { - "id": 812, - "name": "listIndexes", + "id": 871, + "name": "queryVectors", "variant": "signature", "kind": 4096, "flags": {}, @@ -7275,7 +7202,7 @@ "summary": [ { "kind": "text", - "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." + "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": [ @@ -7293,7 +7220,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of indexes or error" + "text": "Promise with response containing matches array of similar vectors ordered by distance or error" } ] }, @@ -7302,7 +7229,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nconst { data } = await bucket.listIndexes({ prefix: 'documents-' })\n```" + "text": "```typescript\nconst index = supabase.storage.vectors.from('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```" } ] } @@ -7312,14 +7239,14 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 238, + "line": 576, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L576" } ], "parameters": [ { - "id": 813, + "id": 872, "name": "options", "variant": "param", "kind": 32768, @@ -7328,7 +7255,7 @@ "summary": [ { "kind": "text", - "text": "Listing options (vectorBucketName is automatically set)" + "text": "Query options (bucket and index names automatically set)" } ] }, @@ -7341,19 +7268,27 @@ "typeArguments": [ { "type": "reference", - "target": 1094, - "name": "ListIndexesOptions", + "target": 1132, + "name": "QueryVectorsOptions", "package": "@supabase/storage-js" }, { - "type": "literal", - "value": "vectorBucketName" + "type": "union", + "types": [ + { + "type": "literal", + "value": "vectorBucketName" + }, + { + "type": "literal", + "value": "indexName" + } + ] } ], "name": "Omit", "package": "typescript" - }, - "defaultValue": "{}" + } } ], "type": { @@ -7369,8 +7304,8 @@ "typeArguments": [ { "type": "reference", - "target": 1099, - "name": "ListIndexesResponse", + "target": 1140, + "name": "QueryVectorsResponse", "package": "@supabase/storage-js" } ], @@ -7383,19 +7318,19 @@ }, "overwrites": { "type": "reference", - "target": 993, - "name": "default.listIndexes" + "target": -1, + "name": "VectorDataApi.queryVectors" } } ], "overwrites": { "type": "reference", - "target": 992, - "name": "default.listIndexes" + "target": -1, + "name": "VectorDataApi.queryVectors" } }, { - "id": 839, + "id": 890, "name": "throwOnError", "variant": "declaration", "kind": 2048, @@ -7405,15 +7340,15 @@ }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, + "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", + "line": 36, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L36" } ], "signatures": [ { - "id": 840, + "id": 891, "name": "throwOnError", "variant": "signature", "kind": 4096, @@ -7424,46 +7359,17 @@ "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**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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createIndex(options) // throws on error\n```" - } - ] + "text": "Enable throwing errors instead of returning them in the response" } ], "modifierTags": ["@alpha"] }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, + "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", + "line": 36, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L36" } ], "type": { @@ -7472,4047 +7378,117 @@ }, "inheritedFrom": { "type": "reference", - "target": 982, - "name": "default.throwOnError" + "target": -1, + "name": "VectorDataApi.throwOnError" } } ], "inheritedFrom": { "type": "reference", - "target": 981, - "name": "default.throwOnError" + "target": -1, + "name": "VectorDataApi.throwOnError" } } ], "groups": [ { "title": "Constructors", - "children": [791] + "children": [842] }, { "title": "Methods", - "children": [808, 819, 814, 822, 811, 839] + "children": [873, 864, 867, 861, 870, 890] } ], "categories": [ + { + "title": "Other", + "children": [890] + }, { "title": "Vector Buckets", - "children": [791, 808, 819, 814, 822, 811, 839] + "children": [842, 873, 864, 867, 861, 870] } ], "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 159, + "line": 424, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L159" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L424" } ], "extendedTypes": [ { "type": "reference", - "target": 951, + "target": -1, "name": "default", "package": "@supabase/storage-js" } ] }, { - "id": 999, - "name": "VectorDataApi", + "id": 631, + "name": "AnalyticBucket", "variant": "declaration", - "kind": 128, + "kind": 256, "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "API class for managing Vector Data within Vector Indexes\nProvides methods for inserting, querying, listing, and deleting vector embeddings\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type." + "text": "Represents an Analytics Bucket using Apache Iceberg table format.\nAnalytics buckets are optimized for analytical queries and data processing." } - ], - "modifierTags": ["@alpha"] + ] }, "children": [ { - "id": 1000, - "name": "constructor", + "id": 635, + "name": "created_at", "variant": "declaration", - "kind": 512, + "kind": 1024, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ISO 8601 timestamp of bucket creation" + } + ] + }, "sources": [ { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 50, + "fileName": "packages/core/storage-js/src/lib/types.ts", + "line": 42, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L42" } ], - "signatures": [ - { - "id": 1001, - "name": "VectorDataApi", - "variant": "signature", - "kind": 16384, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "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": 50, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" - } - ], - "parameters": [ - { - "id": 1002, - "name": "url", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Base URL for the Storage Vectors API." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1003, - "name": "headers", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Default headers (for example authentication tokens)." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1004, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 50, - "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" - } - ], - "indexSignatures": [ - { - "id": 1005, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 50, - "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50" - } - ], - "parameters": [ - { - "id": 1006, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - } - }, - "defaultValue": "{}" - }, - { - "id": 1007, - "name": "fetch", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Optional custom " - }, - { - "kind": "code", - "text": "`fetch`" - }, - { - "kind": "text", - "text": " implementation for non-browser runtimes." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1008, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - }, - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "signatures": [ - { - "id": 1009, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - } - ], - "parameters": [ - { - "id": 1010, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInfo" - }, - "name": "RequestInfo", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 1011, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 1012, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "parameters": [ - { - "id": 1013, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Request" - }, - "name": "Request", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 1014, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": 999, - "name": "VectorDataApi", - "package": "@supabase/storage-js", - "qualifiedName": "default" - } - } - ] - }, - { - "id": 1043, - "name": "deleteVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 379, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379" - } - ], - "signatures": [ - { - "id": 1044, - "name": "deleteVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletes vectors by their keys in batch\nAccepts 1-500 keys per request\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { error } = await client.deleteVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\nif (!error) {\n console.log('Vectors deleted successfully')\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 379, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379" - } - ], - "parameters": [ - { - "id": 1045, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector deletion options" - } - ] - }, - "type": { - "type": "reference", - "target": 1116, - "name": "DeleteVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "keys": [ - { - "kind": "text", - "text": "Array of vector keys to delete (1-500 items)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1034, - "name": "getVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 179, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179" - } - ], - "signatures": [ - { - "id": 1035, - "name": "getVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Retrieves vectors by their keys in batch\nOptionally includes vector data and/or metadata in response\nAdditional permissions required when returning data or metadata\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": [ - { - "kind": "text", - "text": "Promise with array of vectors or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n keys: ['doc-1', 'doc-2', 'doc-3'],\n returnData: false, // Don't return embeddings\n returnMetadata: true // Return metadata only\n})\nif (data) {\n data.vectors.forEach(v => console.log(v.key, v.metadata))\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 179, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179" - } - ], - "parameters": [ - { - "id": 1036, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector retrieval options" - } - ] - }, - "type": { - "type": "reference", - "target": 1108, - "name": "GetVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "keys": [ - { - "kind": "text", - "text": "Array of vector keys to retrieve" - } - ], - "returnData": [ - { - "kind": "text", - "text": "Whether to include vector embeddings (requires permission)" - } - ], - "returnMetadata": [ - { - "kind": "text", - "text": "Whether to include metadata (requires permission)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1114, - "name": "GetVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1037, - "name": "listVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 253, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253" - } - ], - "signatures": [ - { - "id": 1038, - "name": "listVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lists/scans vectors in an index with pagination\nSupports parallel scanning via segment configuration for high-throughput scenarios\nAdditional permissions required when returning data or metadata\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": [ - { - "kind": "text", - "text": "Promise with array of vectors, pagination token, or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// Simple pagination\nlet nextToken: string | undefined\ndo {\n const { data, error } = await client.listVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n maxResults: 500,\n nextToken,\n returnMetadata: true\n })\n if (error) break\n console.log('Batch:', data.vectors.length)\n nextToken = data.nextToken\n} while (nextToken)\n\n// Parallel scanning (4 concurrent workers)\nconst workers = [0, 1, 2, 3].map(async (segmentIndex) => {\n const { data } = await client.listVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n segmentCount: 4,\n segmentIndex,\n returnMetadata: true\n })\n return data?.vectors || []\n})\nconst results = await Promise.all(workers)\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 253, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253" - } - ], - "parameters": [ - { - "id": 1039, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector listing options" - } - ] - }, - "type": { - "type": "reference", - "target": 1120, - "name": "ListVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 500, max: 1000)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ], - "returnData": [ - { - "kind": "text", - "text": "Whether to include vector embeddings (requires permission)" - } - ], - "returnMetadata": [ - { - "kind": "text", - "text": "Whether to include metadata (requires permission)" - } - ], - "segmentCount": [ - { - "kind": "text", - "text": "Total parallel segments (1-16) for distributed scanning" - } - ], - "segmentIndex": [ - { - "kind": "text", - "text": "Zero-based segment index (0 to segmentCount-1)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1129, - "name": "ListVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1031, - "name": "putVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 120, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120" - } - ], - "signatures": [ - { - "id": 1032, - "name": "putVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inserts or updates vectors in batch (upsert operation)\nAccepts 1-500 vectors per request. Larger batches should be split\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if duplicate key conflict occurs (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.putVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3, ...] }, // 1536 dimensions\n metadata: { title: 'Introduction', page: 1 }\n },\n {\n key: 'doc-2',\n data: { float32: [0.4, 0.5, 0.6, ...] },\n metadata: { title: 'Conclusion', page: 42 }\n }\n ]\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 120, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120" - } - ], - "parameters": [ - { - "id": 1033, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector insertion options" - } - ] - }, - "type": { - "type": "reference", - "target": 1104, - "name": "PutVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the target index" - } - ], - "vectors": [ - { - "kind": "text", - "text": "Array of vectors to insert/update (1-500 items)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1040, - "name": "queryVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 330, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330" - } - ], - "signatures": [ - { - "id": 1041, - "name": "queryVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Queries for similar vectors using approximate nearest neighbor (ANN) search\nReturns top-K most similar vectors based on the configured distance metric\nSupports optional metadata filtering (requires GetVectors permission)\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": [ - { - "kind": "text", - "text": "Promise with array of similar vectors ordered by distance" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket or index doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// Semantic search with filtering\nconst { data, error } = await client.queryVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n queryVector: { float32: [0.1, 0.2, 0.3, ...] }, // 1536 dimensions\n topK: 5,\n filter: {\n category: 'technical',\n published: true\n },\n returnDistance: true,\n returnMetadata: true\n})\nif (data) {\n data.matches.forEach(match => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 330, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330" - } - ], - "parameters": [ - { - "id": 1042, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Query options" - } - ] - }, - "type": { - "type": "reference", - "target": 1132, - "name": "QueryVectorsOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Name of the index" - } - ], - "queryVector": [ - { - "kind": "text", - "text": "Query embedding to find similar vectors" - } - ], - "topK": [ - { - "kind": "text", - "text": "Number of nearest neighbors to return (default: 10)" - } - ], - "filter": [ - { - "kind": "text", - "text": "Optional JSON filter for metadata (requires GetVectors permission)" - } - ], - "returnDistance": [ - { - "kind": "text", - "text": "Whether to include similarity distances" - } - ], - "returnMetadata": [ - { - "kind": "text", - "text": "Whether to include metadata (requires GetVectors permission)" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1140, - "name": "QueryVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 1029, - "name": "throwOnError", - "variant": "declaration", - "kind": 2048, - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" - } - ], - "signatures": [ - { - "id": 1030, - "name": "throwOnError", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorDataApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.putVectors(options) // throws on error\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "this" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "children": [1000] - }, - { - "title": "Methods", - "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": 26, - "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L26" - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 841, - "name": "VectorIndexScope" - } - ] - }, - { - "id": 951, - "name": "VectorIndexApi", - "variant": "declaration", - "kind": 128, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "API class for managing Vector Indexes within Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector indexes\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": [ - { - "id": 952, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 65, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" - } - ], - "signatures": [ - { - "id": 953, - "name": "VectorIndexApi", - "variant": "signature", - "kind": 16384, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "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": 65, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" - } - ], - "parameters": [ - { - "id": 954, - "name": "url", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Base URL for the Storage Vectors API." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 955, - "name": "headers", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Default headers sent with each request." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 956, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 65, - "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" - } - ], - "indexSignatures": [ - { - "id": 957, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 65, - "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65" - } - ], - "parameters": [ - { - "id": 958, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - } - }, - "defaultValue": "{}" - }, - { - "id": 959, - "name": "fetch", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Optional custom " - }, - { - "kind": "code", - "text": "`fetch`" - }, - { - "kind": "text", - "text": " implementation for non-browser runtimes." - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 960, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - }, - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "signatures": [ - { - "id": 961, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - } - ], - "parameters": [ - { - "id": 962, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInfo" - }, - "name": "RequestInfo", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 963, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 964, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "parameters": [ - { - "id": 965, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Request" - }, - "name": "Request", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 966, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": 951, - "name": "VectorIndexApi", - "package": "@supabase/storage-js", - "qualifiedName": "default" - } - } - ] - }, - { - "id": 983, - "name": "createIndex", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 133, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133" - } - ], - "signatures": [ - { - "id": 984, - "name": "createIndex", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Creates a new vector index within a bucket\nDefines the schema for vectors including dimensionality, distance metric, and metadata config\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorConflictException`" - }, - { - "kind": "text", - "text": " if index already exists (HTTP 409)\n- " - }, - { - "kind": "code", - "text": "`S3VectorMaxIndexesExceeded`" - }, - { - "kind": "text", - "text": " if quota exceeded (HTTP 400)\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.createIndex({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n metadataConfiguration: {\n nonFilterableMetadataKeys: ['raw_text', 'internal_id']\n }\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 133, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133" - } - ], - "parameters": [ - { - "id": 985, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Index configuration" - } - ] - }, - "type": { - "type": "reference", - "target": 1046, - "name": "CreateIndexOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "indexName": [ - { - "kind": "text", - "text": "Unique name for the index within the bucket" - } - ], - "dataType": [ - { - "kind": "text", - "text": "Data type for vector components (currently only 'float32')" - } - ], - "dimension": [ - { - "kind": "text", - "text": "Dimensionality of vectors (e.g., 384, 768, 1536)" - } - ], - "distanceMetric": [ - { - "kind": "text", - "text": "Similarity metric ('cosine', 'euclidean', 'dotproduct')" - } - ], - "metadataConfiguration": [ - { - "kind": "text", - "text": "Optional config for non-filterable metadata keys" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 995, - "name": "deleteIndex", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 284, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284" - } - ], - "signatures": [ - { - "id": 996, - "name": "deleteIndex", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletes a vector index and all its data\nThis operation removes the index schema and all vectors stored in the index\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if index or bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// Delete an index and all its vectors\nconst { error } = await client.deleteIndex('embeddings-prod', 'old-index')\nif (!error) {\n console.log('Index deleted successfully')\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 284, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284" - } - ], - "parameters": [ - { - "id": 997, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 998, - "name": "indexName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the index to delete" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 986, - "name": "getIndex", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 177, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177" - } - ], - "signatures": [ - { - "id": 987, - "name": "getIndex", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Retrieves metadata for a specific vector index\nReturns index configuration including dimension, distance metric, and metadata settings\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": [ - { - "kind": "text", - "text": "Promise with index metadata or error" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if index or bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst { data, error } = await client.getIndex('embeddings-prod', 'documents-openai-small')\nif (data) {\n console.log('Index dimension:', data.index.dimension)\n console.log('Distance metric:', data.index.distanceMetric)\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 177, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177" - } - ], - "parameters": [ - { - "id": 988, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 989, - "name": "indexName", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Name of the index to retrieve" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 990, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 991, - "name": "index", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, - "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" - } - ], - "type": { - "type": "reference", - "target": 1057, - "name": "VectorIndex", - "package": "@supabase/storage-js" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [991] - } - ], - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 180, - "character": 25, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180" - } - ] - } - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 992, - "name": "listIndexes", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 240, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240" - } - ], - "signatures": [ - { - "id": 993, - "name": "listIndexes", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lists vector indexes within a bucket with optional filtering and pagination\nSupports prefix-based filtering and paginated results\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": [ - { - "kind": "text", - "text": "Promise with list of indexes and pagination token" - } - ] - }, - { - "tag": "@throws", - "content": [ - { - "kind": "text", - "text": "With code:\n- " - }, - { - "kind": "code", - "text": "`S3VectorNotFoundException`" - }, - { - "kind": "text", - "text": " if bucket doesn't exist (HTTP 404)\n- " - }, - { - "kind": "code", - "text": "`InternalError`" - }, - { - "kind": "text", - "text": " for server errors (HTTP 500)" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// List all indexes in a bucket\nconst { data, error } = await client.listIndexes({\n vectorBucketName: 'embeddings-prod',\n prefix: 'documents-'\n})\nif (data) {\n console.log('Found indexes:', data.indexes.map(i => i.indexName))\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listIndexes({\n vectorBucketName: 'embeddings-prod',\n nextToken: data.nextToken\n })\n }\n}\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 240, - "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240" - } - ], - "parameters": [ - { - "id": 994, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Listing options" - } - ] - }, - "type": { - "type": "reference", - "target": 1094, - "name": "ListIndexesOptions", - "package": "@supabase/storage-js", - "highlightedProperties": { - "vectorBucketName": [ - { - "kind": "text", - "text": "Name of the parent vector bucket" - } - ], - "prefix": [ - { - "kind": "text", - "text": "Filter indexes by name prefix" - } - ], - "maxResults": [ - { - "kind": "text", - "text": "Maximum results per page (default: 100)" - } - ], - "nextToken": [ - { - "kind": "text", - "text": "Pagination token from previous response" - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1099, - "name": "ListIndexesResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 981, - "name": "throwOnError", - "variant": "declaration", - "kind": 2048, - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" - } - ], - "signatures": [ - { - "id": 982, - "name": "throwOnError", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createIndex(options) // throws on error\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 89, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89" - } - ], - "type": { - "type": "intrinsic", - "name": "this" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "children": [952] - }, - { - "title": "Methods", - "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": 41, - "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L41" - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 790, - "name": "VectorBucketScope" - } - ] - }, - { - "id": 841, - "name": "VectorIndexScope", - "variant": "declaration", - "kind": 128, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Scoped client for operations within a specific vector index\nProvides vector data operations (put, get, list, query, delete)\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": [ - { - "id": 842, - "name": "constructor", - "variant": "declaration", - "kind": 512, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 361, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361" - } - ], - "signatures": [ - { - "id": 843, - "name": "VectorIndexScope", - "variant": "signature", - "kind": 16384, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "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": 361, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361" - } - ], - "parameters": [ - { - "id": 844, - "name": "url", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 845, - "name": "headers", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 846, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 363, - "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363" - } - ], - "indexSignatures": [ - { - "id": 847, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 363, - "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363" - } - ], - "parameters": [ - { - "id": 848, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - } - } - }, - { - "id": 849, - "name": "vectorBucketName", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 850, - "name": "indexName", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 851, - "name": "fetch", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 852, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - }, - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "signatures": [ - { - "id": 853, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/typescript/lib/lib.dom.d.ts", - "line": 29329, - "character": 17 - } - ], - "parameters": [ - { - "id": 854, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInfo" - }, - "name": "RequestInfo", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 855, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 856, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)" - } - ] - }, - "sources": [ - { - "fileName": "node_modules/@types/node/globals.d.ts", - "line": 289, - "character": 13 - } - ], - "parameters": [ - { - "id": 857, - "name": "input", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Request" - }, - "name": "Request", - "package": "typescript" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "URL" - }, - "name": "URL", - "package": "typescript" - } - ] - } - }, - { - "id": 858, - "name": "init", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "RequestInit" - }, - "name": "RequestInit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "Response" - }, - "name": "Response", - "package": "typescript" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "target": 841, - "name": "VectorIndexScope", - "package": "@supabase/storage-js" - }, - "overwrites": { - "type": "reference", - "target": 1001, - "name": "default.constructor" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1000, - "name": "default.constructor" - } - }, - { - "id": 873, - "name": "deleteVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 526, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526" - } - ], - "signatures": [ - { - "id": 874, - "name": "deleteVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletes vectors by keys from this index\nConvenience method that automatically includes bucket and index names\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nawait index.deleteVectors({\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 526, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526" - } - ], - "parameters": [ - { - "id": 875, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Deletion options (bucket and index names automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1116, - "name": "DeleteVectorsOptions", - "package": "@supabase/storage-js" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "vectorBucketName" - }, - { - "type": "literal", - "value": "indexName" - } - ] - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 1044, - "name": "default.deleteVectors" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1043, - "name": "default.deleteVectors" - } - }, - { - "id": 864, - "name": "getVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 430, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430" - } - ], - "signatures": [ - { - "id": 865, - "name": "getVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Retrieves vectors by keys from this index\nConvenience method that automatically includes bucket and index names\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": [ - { - "kind": "text", - "text": "Promise with array of vectors or error" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.getVectors({\n keys: ['doc-1', 'doc-2'],\n returnMetadata: true\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 430, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430" - } - ], - "parameters": [ - { - "id": 866, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector retrieval options (bucket and index names automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1108, - "name": "GetVectorsOptions", - "package": "@supabase/storage-js" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "vectorBucketName" - }, - { - "type": "literal", - "value": "indexName" - } - ] - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1114, - "name": "GetVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 1035, - "name": "default.getVectors" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1034, - "name": "default.getVectors" - } - }, - { - "id": 867, - "name": "listVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 460, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460" - } - ], - "signatures": [ - { - "id": 868, - "name": "listVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Lists vectors in this index with pagination\nConvenience method that automatically includes bucket and index names\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": [ - { - "kind": "text", - "text": "Promise with array of vectors and pagination token" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.listVectors({\n maxResults: 500,\n returnMetadata: true\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 460, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460" - } - ], - "parameters": [ - { - "id": 869, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Listing options (bucket and index names automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1120, - "name": "ListVectorsOptions", - "package": "@supabase/storage-js" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "vectorBucketName" - }, - { - "type": "literal", - "value": "indexName" - } - ] - } - ], - "name": "Omit", - "package": "typescript" - }, - "defaultValue": "{}" - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1129, - "name": "ListVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 1038, - "name": "default.listVectors" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1037, - "name": "default.listVectors" - } - }, - { - "id": 861, - "name": "putVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 400, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400" - } - ], - "signatures": [ - { - "id": 862, - "name": "putVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Inserts or updates vectors in this index\nConvenience method that automatically includes bucket and index names\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": [ - { - "kind": "text", - "text": "Promise with empty response on success or error" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, ...] },\n metadata: { title: 'Introduction', page: 1 }\n }\n ]\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 400, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400" - } - ], - "parameters": [ - { - "id": 863, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Vector insertion options (bucket and index names automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1104, - "name": "PutVectorsOptions", - "package": "@supabase/storage-js" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "vectorBucketName" - }, - { - "type": "literal", - "value": "indexName" - } - ] - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "intrinsic", - "name": "undefined" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 1032, - "name": "default.putVectors" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1031, - "name": "default.putVectors" - } - }, - { - "id": 870, - "name": "queryVectors", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 495, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495" - } - ], - "signatures": [ - { - "id": 871, - "name": "queryVectors", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Queries for similar vectors in this index\nConvenience method that automatically includes bucket and index names\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": [ - { - "kind": "text", - "text": "Promise with array of similar vectors ordered by distance" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.queryVectors({\n queryVector: { float32: [0.1, 0.2, ...] },\n topK: 5,\n filter: { category: 'technical' },\n returnDistance: true,\n returnMetadata: true\n})\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 495, - "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495" - } - ], - "parameters": [ - { - "id": 872, - "name": "options", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Query options (bucket and index names automatically set)" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1132, - "name": "QueryVectorsOptions", - "package": "@supabase/storage-js" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "vectorBucketName" - }, - { - "type": "literal", - "value": "indexName" - } - ] - } - ], - "name": "Omit", - "package": "typescript" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 1142, - "typeArguments": [ - { - "type": "reference", - "target": 1140, - "name": "QueryVectorsResponse", - "package": "@supabase/storage-js" - } - ], - "name": "ApiResponse", - "package": "@supabase/storage-js" - } - ], - "name": "Promise", - "package": "typescript" - }, - "overwrites": { - "type": "reference", - "target": 1041, - "name": "default.queryVectors" - } - } - ], - "overwrites": { - "type": "reference", - "target": 1040, - "name": "default.queryVectors" - } - }, - { - "id": 890, - "name": "throwOnError", - "variant": "declaration", - "kind": 2048, - "flags": { - "isPublic": true, - "isInherited": true - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" - } - ], - "signatures": [ - { - "id": 891, - "name": "throwOnError", - "variant": "signature", - "kind": 4096, - "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\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": [ - { - "kind": "text", - "text": "This instance for method chaining" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst client = new VectorDataApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.putVectors(options) // throws on error\n```" - } - ] - } - ], - "modifierTags": ["@alpha"] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts", - "line": 74, - "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74" - } - ], - "type": { - "type": "intrinsic", - "name": "this" - }, - "inheritedFrom": { - "type": "reference", - "target": 1030, - "name": "default.throwOnError" - } - } - ], - "inheritedFrom": { - "type": "reference", - "target": 1029, - "name": "default.throwOnError" - } - } - ], - "groups": [ - { - "title": "Constructors", - "children": [842] - }, - { - "title": "Methods", - "children": [873, 864, 867, 861, 870, 890] - } - ], - "categories": [ - { - "title": "Vector Buckets", - "children": [842, 873, 864, 867, 861, 870, 890] - } - ], - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 343, - "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L343" - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 999, - "name": "default", - "package": "@supabase/storage-js" - } - ] - }, - { - "id": 631, - "name": "AnalyticBucket", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Represents an Analytics Bucket using Apache Iceberg table format.\nAnalytics buckets are optimized for analytical queries and data processing." - } - ] - }, - "children": [ - { - "id": 635, - "name": "created_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ISO 8601 timestamp of bucket creation" - } - ] - }, - "sources": [ - { - "fileName": "packages/core/storage-js/src/lib/types.ts", - "line": 42, - "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L42" - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 634, - "name": "format", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Storage format used (e.g., 'iceberg')" - } - ] - }, - "sources": [ + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 634, + "name": "format", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Storage format used (e.g., 'iceberg')" + } + ] + }, + "sources": [ { "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 40, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L40" } ], "type": { @@ -11539,7 +7515,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L36" } ], "type": { @@ -11566,7 +7542,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 38, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L38" } ], "type": { @@ -11593,7 +7569,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 44, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L44" } ], "type": { @@ -11613,7 +7589,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 34, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L34" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L34" } ] }, @@ -11637,7 +7613,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L16" } ], "type": { @@ -11659,7 +7635,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 17, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L17" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L17" } ], "type": { @@ -11680,7 +7656,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 15, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L15" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L15" } ], "type": { @@ -11699,7 +7675,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 11, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L11" } ], "type": { @@ -11718,7 +7694,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L13" } ], "type": { @@ -11737,7 +7713,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L14" } ], "type": { @@ -11756,7 +7732,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 19, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L19" } ], "type": { @@ -11777,7 +7753,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 12, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L12" } ], "type": { @@ -11798,7 +7774,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L18" } ], "type": { @@ -11818,7 +7794,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 10, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L10" } ] }, @@ -11851,9 +7827,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 26, + "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25" } ], "type": { @@ -11874,9 +7850,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 27, + "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26" } ], "type": { @@ -11897,9 +7873,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 28, + "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L27" } ], "type": { @@ -11922,9 +7898,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 25, + "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24" } ], "type": { @@ -11947,9 +7923,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 29, + "line": 28, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L29" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L28" } ], "type": { @@ -11972,9 +7948,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 24, + "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23" } ], "type": { @@ -11992,9 +7968,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts", - "line": 23, + "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L22" } ] }, @@ -12032,7 +8008,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L196" } ], "type": { @@ -12059,7 +8035,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 197, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L197" } ], "type": { @@ -12089,7 +8065,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L195" } ], "type": { @@ -12109,7 +8085,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 194, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L194" } ] }, @@ -12133,7 +8109,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L112" } ], "type": { @@ -12153,7 +8129,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 111, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L111" } ] }, @@ -12193,7 +8169,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L9" } ], "type": { @@ -12222,7 +8198,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L10" } ], "type": { @@ -12242,7 +8218,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 8, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L8" } ] }, @@ -12280,7 +8256,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 291, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L291" } ], "type": { @@ -12307,7 +8283,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 292, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L292" } ], "type": { @@ -12329,7 +8305,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 290, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L290" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L290" } ] }, @@ -12369,7 +8345,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 13, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" } ], "type": { @@ -12385,7 +8361,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 13, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L13" } ], "indexSignatures": [ @@ -12400,7 +8376,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 14, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L14" } ], "parameters": [ @@ -12446,7 +8422,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 16, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L16" } ], "type": { @@ -12466,7 +8442,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 12, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L12" } ] }, @@ -12498,7 +8474,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 204, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L204" } ], "type": { @@ -12523,7 +8499,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 200, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L200" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L200" } ] }, @@ -12545,7 +8521,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 49, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L49" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L49" } ], "type": { @@ -12564,7 +8540,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L57" } ], "type": { @@ -12585,7 +8561,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 53, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L53" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L53" } ], "type": { @@ -12604,7 +8580,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 51, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L51" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L51" } ], "type": { @@ -12632,7 +8608,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 55, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L55" } ], "type": { @@ -12651,7 +8627,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L56" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L56" } ], "type": { @@ -12685,7 +8661,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 48, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L48" } ], "type": { @@ -12704,7 +8680,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 50, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L50" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L50" } ], "type": { @@ -12723,7 +8699,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L52" } ], "type": { @@ -12743,7 +8719,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 47, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L47" } ] }, @@ -12765,7 +8741,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 64, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L64" } ], "type": { @@ -12786,7 +8762,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 70, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L70" } ], "type": { @@ -12807,7 +8783,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L71" } ], "type": { @@ -12826,7 +8802,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 66, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L66" } ], "type": { @@ -12847,7 +8823,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 72, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L72" } ], "type": { @@ -12866,7 +8842,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L61" } ], "type": { @@ -12894,7 +8870,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 68, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L68" } ], "type": { @@ -12915,7 +8891,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 73, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L73" } ], "type": { @@ -12936,7 +8912,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L74" } ], "type": { @@ -12970,7 +8946,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 63, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L63" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L63" } ], "type": { @@ -12991,7 +8967,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 69, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L69" } ], "type": { @@ -13010,7 +8986,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 65, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L65" } ], "type": { @@ -13029,7 +9005,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L62" } ], "type": { @@ -13049,7 +9025,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 60, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L60" } ] }, @@ -13089,7 +9065,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 86, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L86" } ], "type": { @@ -13166,7 +9142,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L90" } ], "type": { @@ -13195,7 +9171,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 98, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L98" } ], "type": { @@ -13224,7 +9200,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 108, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L108" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L108" } ], "type": { @@ -13268,7 +9244,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L103" } ], "type": { @@ -13312,7 +9288,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 94, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L94" } ], "type": { @@ -13332,7 +9308,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 82, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L82" } ] }, @@ -13370,7 +9346,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 162, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L162" } ], "type": { @@ -13397,7 +9373,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 163, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L163" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L163" } ], "type": { @@ -13429,7 +9405,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 164, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L164" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L164" } ], "type": { @@ -13458,7 +9434,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 165, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L165" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L165" } ], "type": { @@ -13485,7 +9461,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 161, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L161" } ], "type": { @@ -13505,7 +9481,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 160, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L160" } ] }, @@ -13543,7 +9519,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 173, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L173" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L173" } ], "type": { @@ -13568,7 +9544,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 172, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L172" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L172" } ] }, @@ -13592,7 +9568,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 23, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L23" } ], "type": { @@ -13613,7 +9589,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 24, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L24" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L24" } ], "type": { @@ -13634,7 +9610,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 27, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L27" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L27" } ], "type": { @@ -13655,7 +9631,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L25" } ], "type": { @@ -13693,7 +9669,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 26, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L26" } ], "type": { @@ -13722,7 +9698,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 22, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L22" } ] }, @@ -13762,7 +9738,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 138, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L138" } ], "type": { @@ -13791,7 +9767,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L139" } ], "type": { @@ -13820,7 +9796,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 137, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L137" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L137" } ], "type": { @@ -13847,7 +9823,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 136, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L136" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L136" } ], "type": { @@ -13867,7 +9843,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 135, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L135" } ] }, @@ -13905,7 +9881,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L148" } ], "type": { @@ -13930,7 +9906,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 148, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L148" } ], "type": { @@ -13950,7 +9926,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 148, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L148" } ] } @@ -13978,7 +9954,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 149, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L149" } ], "type": { @@ -13998,7 +9974,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 147, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L147" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L147" } ] }, @@ -14038,7 +10014,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 114, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L114" } ], "type": { @@ -14067,7 +10043,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 115, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L115" } ], "type": { @@ -14096,7 +10072,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 113, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L113" } ], "type": { @@ -14116,7 +10092,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 112, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L112" } ] }, @@ -14156,7 +10132,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L125" } ], "type": { @@ -14183,7 +10159,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 124, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L124" } ], "type": { @@ -14208,7 +10184,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 124, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L124" } ], "type": { @@ -14228,7 +10204,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 124, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L124" } ] } @@ -14247,7 +10223,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 123, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L123" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L123" } ] }, @@ -14285,7 +10261,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 214, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L214" } ], "type": { @@ -14314,7 +10290,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 215, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L215" } ], "type": { @@ -14343,7 +10319,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L216" } ], "type": { @@ -14372,7 +10348,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 217, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L217" } ], "type": { @@ -14401,7 +10377,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 218, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L218" } ], "type": { @@ -14430,7 +10406,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 219, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L219" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L219" } ], "type": { @@ -14459,7 +10435,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 220, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L220" } ], "type": { @@ -14486,7 +10462,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 213, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L213" } ], "type": { @@ -14506,7 +10482,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 212, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L212" } ] }, @@ -14546,7 +10522,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 230, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L230" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L230" } ], "type": { @@ -14573,7 +10549,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 229, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L229" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L229" } ], "type": { @@ -14598,7 +10574,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 228, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L228" } ] }, @@ -14620,7 +10596,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 209, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L209" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L209" } ], "type": { @@ -14640,7 +10616,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 208, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L208" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L208" } ] }, @@ -14680,7 +10656,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L31" } ], "type": { @@ -14703,7 +10679,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 30, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L30" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L30" } ] }, @@ -14741,7 +10717,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L184" } ], "type": { @@ -14768,7 +10744,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 183, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L183" } ], "type": { @@ -14795,7 +10771,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 185, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L185" } ], "type": { @@ -14820,7 +10796,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 182, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L182" } ] }, @@ -14860,7 +10836,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 254, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L254" } ], "type": { @@ -14889,7 +10865,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 251, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L251" } ], "type": { @@ -14916,7 +10892,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 252, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L252" } ], "type": { @@ -14947,7 +10923,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 255, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L255" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L255" } ], "type": { @@ -14976,7 +10952,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 256, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L256" } ], "type": { @@ -15005,7 +10981,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 253, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L253" } ], "type": { @@ -15032,7 +11008,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 250, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L250" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L250" } ], "type": { @@ -15052,7 +11028,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 249, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L249" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L249" } ] }, @@ -15090,7 +11066,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 264, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L264" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L264" } ], "type": { @@ -15115,7 +11091,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 263, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L263" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L263" } ] }, @@ -15158,7 +11134,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 120, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L120" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L120" } ], "type": { @@ -15187,7 +11163,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 125, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L125" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L125" } ], "type": { @@ -15216,7 +11192,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 135, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L135" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L135" } ], "type": { @@ -15245,7 +11221,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 130, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L130" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L130" } ], "type": { @@ -15267,7 +11243,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 115, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L115" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L115" } ] }, @@ -15289,7 +11265,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 183, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L183" } ], "type": { @@ -15308,7 +11284,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 179, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L179" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L179" } ], "type": { @@ -15327,7 +11303,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 180, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L180" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L180" } ], "type": { @@ -15355,7 +11331,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 188, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L188" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L188" } ], "type": { @@ -15374,7 +11350,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 184, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L184" } ], "type": { @@ -15408,7 +11384,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 181, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L181" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L181" } ], "type": { @@ -15427,7 +11403,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 182, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L182" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L182" } ], "type": { @@ -15447,7 +11423,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 178, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L178" } ] }, @@ -15479,7 +11455,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 158, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L158" } ], "type": { @@ -15519,7 +11495,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 148, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L148" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L148" } ], "type": { @@ -15548,7 +11524,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 153, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L153" } ], "type": { @@ -15588,7 +11564,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 175, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L175" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L175" } ], "type": { @@ -15646,7 +11622,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 169, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L169" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L169" } ], "type": { @@ -15666,7 +11642,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 143, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L143" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L143" } ] }, @@ -15688,7 +11664,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 195, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L195" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L195" } ], "type": { @@ -15712,7 +11688,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 194, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L194" } ], "type": { @@ -15733,7 +11709,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 197, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L197" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L197" } ], "type": { @@ -15752,7 +11728,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 196, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L196" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L196" } ], "type": { @@ -15777,7 +11753,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 193, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L193" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L193" } ] }, @@ -15801,7 +11777,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 78, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L78" } ], "type": { @@ -15822,7 +11798,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 79, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L79" } ], "type": { @@ -15842,7 +11818,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 77, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L77" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L77" } ] }, @@ -15864,7 +11840,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 139, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L139" } ], "type": { @@ -15898,7 +11874,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 140, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L140" } ], "type": { @@ -15927,7 +11903,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 138, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L138" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L138" } ] }, @@ -15951,7 +11927,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 8, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L8" } ], "type": { @@ -15971,7 +11947,7 @@ "fileName": "packages/core/storage-js/src/StorageClient.ts", "line": 7, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L7" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/StorageClient.ts#L7" } ] }, @@ -16011,9 +11987,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 31, + "line": 35, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L35" } ], "type": { @@ -16249,9 +12225,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 26, + "line": 30, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L30" } ], "type": { @@ -16265,9 +12241,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 26, + "line": 30, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L30" } ], "indexSignatures": [ @@ -16280,9 +12256,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 26, + "line": 30, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L30" } ], "parameters": [ @@ -16317,9 +12293,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts", - "line": 22, + "line": 26, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26" } ] }, @@ -16357,7 +12333,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 281, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L281" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L281" } ], "type": { @@ -16388,7 +12364,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 282, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L282" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L282" } ], "type": { @@ -16408,7 +12384,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 280, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L280" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L280" } ], "typeParameters": [ @@ -16449,7 +12425,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 240, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L240" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L240" } ], "type": { @@ -16478,7 +12454,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 220, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L220" } ], "type": { @@ -16507,7 +12483,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 233, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L233" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L233" } ], "type": { @@ -16536,7 +12512,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 227, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L227" } ], "type": { @@ -16578,7 +12554,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 216, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L216" } ], "type": { @@ -16598,7 +12574,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 212, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L212" } ] }, @@ -16638,7 +12614,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 21, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L21" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L21" } ], "type": { @@ -16667,7 +12643,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 22, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L22" } ], "type": { @@ -16696,7 +12672,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 20, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L20" } ], "type": { @@ -16716,7 +12692,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 19, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L19" } ] }, @@ -16754,7 +12730,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 71, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L71" } ], "type": { @@ -16777,7 +12753,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 70, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L70" } ] }, @@ -16817,7 +12793,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 272, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L272" } ], "type": { @@ -16842,7 +12818,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 271, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L271" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L271" } ] }, @@ -16882,7 +12858,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 62, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L62" } ], "type": { @@ -16909,7 +12885,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 58, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L58" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L58" } ], "type": { @@ -16936,7 +12912,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 59, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L59" } ], "type": { @@ -16963,7 +12939,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 60, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L60" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L60" } ], "type": { @@ -16992,7 +12968,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 56, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L56" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L56" } ], "type": { @@ -17021,7 +12997,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 61, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L61" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L61" } ], "type": { @@ -17050,7 +13026,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 57, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L57" } ], "type": { @@ -17070,7 +13046,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 55, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L55" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L55" } ] }, @@ -17110,7 +13086,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 101, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L101" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L101" } ], "type": { @@ -17141,7 +13117,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 103, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L103" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L103" } ], "type": { @@ -17168,7 +13144,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 100, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L100" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L100" } ], "type": { @@ -17197,7 +13173,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 102, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L102" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L102" } ], "type": { @@ -17219,7 +13195,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 99, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L99" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L99" } ] }, @@ -17257,7 +13233,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L88" } ], "type": { @@ -17286,7 +13262,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 87, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L87" } ], "type": { @@ -17315,7 +13291,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L89" } ], "type": { @@ -17337,7 +13313,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 86, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L86" } ] }, @@ -17360,7 +13336,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 299, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L299" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L299" } ], "typeParameters": [ @@ -17418,7 +13394,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 8, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L8" } ], "type": { @@ -17446,7 +13422,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 247, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L247" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L247" } ], "typeParameters": [ @@ -17549,7 +13525,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 43, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L43" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L43" } ], "type": { @@ -17581,7 +13557,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 251, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L251" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L251" } ], "typeParameters": [ @@ -17616,7 +13592,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 253, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L253" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L253" } ], "type": { @@ -17638,7 +13614,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 254, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L254" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L254" } ], "type": { @@ -17658,7 +13634,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 252, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L252" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L252" } ] } @@ -17683,7 +13659,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 257, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L257" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L257" } ], "type": { @@ -17702,7 +13678,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 258, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L258" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L258" } ], "type": { @@ -17724,7 +13700,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 256, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L256" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L256" } ] } @@ -17743,7 +13719,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 5, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L5" } ], "type": { @@ -17775,7 +13751,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts", "line": 22, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L22" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/fetch.ts#L22" } ], "type": { @@ -17811,7 +13787,7 @@ "fileName": "packages/core/storage-js/src/lib/types.ts", "line": 191, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L191" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/types.ts#L191" } ], "type": { @@ -17868,7 +13844,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 38, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L38" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L38" } ], "type": { @@ -17895,7 +13871,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 237, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L237" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L237" } ], "type": { @@ -17937,7 +13913,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts", "line": 78, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/types.ts#L78" } ], "type": { @@ -17990,7 +13966,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 35, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" } ], "signatures": [ @@ -18019,7 +13995,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 35, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L35" } ], "parameters": [ @@ -18061,7 +14037,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 10, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L10" } ], "signatures": [ @@ -18076,7 +14052,7 @@ "fileName": "packages/core/storage-js/src/lib/errors.ts", "line": 10, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/errors.ts#L10" } ], "parameters": [ @@ -18117,7 +14093,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 18, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L18" } ], "signatures": [ @@ -18151,7 +14127,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts", "line": 18, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/errors.ts#L18" } ], "parameters": [ @@ -18208,7 +14184,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 57, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" } ], "signatures": [ @@ -18237,7 +14213,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 57, "character": 34, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L57" } ], "parameters": [ @@ -18293,7 +14269,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 10, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" } ], "signatures": [ @@ -18322,7 +14298,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 10, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L10" } ], "parameters": [ @@ -18790,7 +14766,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 23, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" } ], "signatures": [ @@ -18819,7 +14795,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 23, "character": 31, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L23" } ], "type": { @@ -18944,7 +14920,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 70, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" } ], "signatures": [ @@ -18959,7 +14935,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 70, "character": 39, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L70" } ], "parameters": [ @@ -18997,7 +14973,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 71, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" } ], "type": { @@ -19020,7 +14996,7 @@ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts", "line": 71, "character": 10, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/lib/vectors/helpers.ts#L71" } ] } @@ -19066,7 +15042,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 3, "character": 20, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L3" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/index.ts#L3" } ], "target": 47 @@ -19079,7 +15055,7 @@ }, { "title": "Classes", - "children": [729, 500, 724, 745, 1158, 752, 1153, 1174, 905, 790, 999, 951, 841] + "children": [729, 500, 724, 745, 1158, 752, 1153, 1174, 790, 841] }, { "title": "Interfaces", @@ -19107,7 +15083,7 @@ "fileName": "packages/core/storage-js/src/index.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/index.ts#L1" } ] }, @@ -19136,7 +15112,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "signatures": [ @@ -19151,7 +15127,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 9, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9" } ], "parameters": [ @@ -19174,7 +15150,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "signatures": [ @@ -19189,7 +15165,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 10, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10" } ], "type": { @@ -19252,7 +15228,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 6, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6" } ], "type": { @@ -19277,7 +15253,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "signatures": [ @@ -19292,7 +15268,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14" } ], "type": { @@ -19316,7 +15292,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "signatures": [ @@ -19350,7 +15326,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 25, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25" } ], "typeParameters": [ @@ -19403,7 +15379,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "signatures": [ @@ -19418,7 +15394,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 26, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26" } ], "parameters": [ @@ -19536,7 +15512,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -19570,7 +15546,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "parameters": [ @@ -19610,7 +15586,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "signatures": [ @@ -19625,7 +15601,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 31, "character": 23, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31" } ], "type": { @@ -19692,7 +15668,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "signatures": [ @@ -19726,7 +15702,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 18, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18" } ], "typeParameters": [ @@ -19803,7 +15779,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "signatures": [ @@ -19818,7 +15794,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 19, "character": 19, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19" } ], "parameters": [ @@ -19920,7 +15896,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "signatures": [ @@ -19935,7 +15911,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 20, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20" } ], "parameters": [ @@ -20052,7 +16028,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 5, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5" } ], "implementedTypes": [ @@ -20098,7 +16074,7 @@ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1" } ] }, @@ -20133,9 +16109,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "signatures": [ @@ -20171,14 +16147,15 @@ } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "parameters": [ @@ -20226,9 +16203,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 36, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "indexSignatures": [ @@ -20241,9 +16218,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 32, + "line": 34, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L34" } ], "parameters": [ @@ -20518,9 +16495,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 80, + "line": 90, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L90" } ], "signatures": [ @@ -20552,7 +16529,7 @@ "content": [ { "kind": "text", - "text": "Promise with newly created bucket name or error" + "text": "Promise with response containing newly created analytics bucket or error" } ] }, @@ -20570,18 +16547,19 @@ }, { "kind": "code", - "text": "```json\n{\n \"data\": {\n \"name\": \"analytics-data\"\n },\n \"error\": null\n}\n```" + "text": "```json\n{\n \"data\": {\n \"name\": \"analytics-data\",\n \"type\": \"ANALYTICS\",\n \"format\": \"iceberg\",\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n },\n \"error\": null\n}\n```" } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 80, + "line": 90, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L90" } ], "parameters": [ @@ -20633,9 +16611,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 82, + "line": 92, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L92" } ], "type": { @@ -20654,9 +16632,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 83, + "line": 93, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L93" } ], "type": { @@ -20674,9 +16652,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 81, + "line": 91, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L91" } ] } @@ -20699,9 +16677,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 86, + "line": 96, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L96" } ], "type": { @@ -20718,9 +16696,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 87, + "line": 97, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L97" } ], "type": { @@ -20740,9 +16718,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 85, + "line": 95, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L95" } ] } @@ -20765,9 +16743,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 221, + "line": 235, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" } ], "signatures": [ @@ -20799,7 +16777,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -20821,14 +16799,15 @@ } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 221, + "line": 235, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L235" } ], "parameters": [ @@ -20880,9 +16859,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 223, + "line": 237, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L237" } ], "type": { @@ -20903,9 +16882,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 223, + "line": 237, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L237" } ], "type": { @@ -20923,9 +16902,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 223, + "line": 237, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L237" } ] } @@ -20940,9 +16919,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 224, + "line": 238, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L238" } ], "type": { @@ -20960,9 +16939,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 222, + "line": 236, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L236" } ] } @@ -20985,9 +16964,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 227, + "line": 241, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L241" } ], "type": { @@ -21004,9 +16983,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 228, + "line": 242, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L242" } ], "type": { @@ -21026,9 +17005,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 226, + "line": 240, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L240" } ] } @@ -21051,9 +17030,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 149, + "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "signatures": [ @@ -21085,7 +17064,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of analytics buckets or error" + "text": "Promise with response containing array of analytics buckets or error" } ] }, @@ -21103,18 +17082,19 @@ }, { "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```" + "text": "```json\n{\n \"data\": [\n {\n \"name\": \"analytics-data\",\n \"type\": \"ANALYTICS\",\n \"format\": \"iceberg\",\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```" } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 149, + "line": 161, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ], "parameters": [ @@ -21162,9 +17142,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 150, + "line": 162, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L150" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" } ], "type": { @@ -21191,9 +17171,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 151, + "line": 163, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L163" } ], "type": { @@ -21220,9 +17200,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 154, + "line": 166, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L154" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L166" } ], "type": { @@ -21242,25 +17222,21 @@ "summary": [ { "kind": "text", - "text": "Column to sort by ('id', 'name', 'created_at', 'updated_at')" + "text": "Column to sort by ('name', 'created_at', 'updated_at')" } ] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 152, + "line": 164, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L164" } ], "type": { "type": "union", "types": [ - { - "type": "literal", - "value": "id" - }, { "type": "literal", "value": "name" @@ -21295,9 +17271,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 153, + "line": 165, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L165" } ], "type": { @@ -21324,9 +17300,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 149, + "line": 161, "character": 30, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" } ] } @@ -21361,9 +17337,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 157, + "line": 169, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L157" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L169" } ], "type": { @@ -21385,9 +17361,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 158, + "line": 170, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L170" } ], "type": { @@ -21405,9 +17381,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 156, + "line": 168, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L156" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L168" } ] } @@ -21430,9 +17406,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 161, + "line": 173, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L173" } ], "type": { @@ -21449,9 +17425,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 162, + "line": 174, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L174" } ], "type": { @@ -21471,9 +17447,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 160, + "line": 172, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L172" } ] } @@ -21498,9 +17474,9 @@ "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 47, + "line": 51, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L51" } ], "signatures": [ @@ -21536,14 +17512,15 @@ } ] } - ] + ], + "modifierTags": ["@alpha"] }, "sources": [ { "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", - "line": 47, + "line": 51, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L51" } ], "type": { @@ -21575,7 +17552,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 11, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L11" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L11" } ] } @@ -21591,7 +17568,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1" } ] }, @@ -21620,7 +17597,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" } ], "signatures": [ @@ -21635,7 +17612,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 14, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14" } ], "parameters": [ @@ -21669,7 +17646,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 16, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" } ], "indexSignatures": [ @@ -21684,7 +17661,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 16, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16" } ], "parameters": [ @@ -21968,7 +17945,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "signatures": [ @@ -22000,7 +17977,7 @@ "content": [ { "kind": "text", - "text": "Promise with newly created bucket id or error" + "text": "Promise with response containing newly created bucket name or error" } ] }, @@ -22029,7 +18006,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 201, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201" } ], "parameters": [ @@ -22088,7 +18065,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 206, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206" } ], "type": { @@ -22129,7 +18106,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 205, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205" } ], "type": { @@ -22169,7 +18146,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 204, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204" } ], "type": { @@ -22210,7 +18187,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 207, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207" } ], "type": { @@ -22232,7 +18209,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 203, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203" } ] } @@ -22270,7 +18247,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 213, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213" } ], "type": { @@ -22306,7 +18283,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 214, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214" } ], "type": { @@ -22326,7 +18303,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 212, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212" } ] } @@ -22351,7 +18328,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 217, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217" } ], "type": { @@ -22370,7 +18347,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 218, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218" } ], "type": { @@ -22392,7 +18369,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 216, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216" } ] } @@ -22417,7 +18394,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "signatures": [ @@ -22486,7 +18463,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 405, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405" } ], "parameters": [ @@ -22540,7 +18517,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -22563,7 +18540,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ], "type": { @@ -22583,7 +18560,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 407, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407" } ] } @@ -22600,7 +18577,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 408, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408" } ], "type": { @@ -22620,7 +18597,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 406, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406" } ] } @@ -22645,7 +18622,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 411, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411" } ], "type": { @@ -22664,7 +18641,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 412, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412" } ], "type": { @@ -22686,7 +18663,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 410, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410" } ] } @@ -22711,7 +18688,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "signatures": [ @@ -22772,7 +18749,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 350, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350" } ], "parameters": [ @@ -22826,7 +18803,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -22849,7 +18826,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ], "type": { @@ -22869,7 +18846,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 352, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352" } ] } @@ -22886,7 +18863,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 353, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353" } ], "type": { @@ -22906,7 +18883,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 351, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351" } ] } @@ -22931,7 +18908,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 356, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356" } ], "type": { @@ -22950,7 +18927,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 357, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357" } ], "type": { @@ -22972,7 +18949,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 355, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355" } ] } @@ -22997,7 +18974,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "signatures": [ @@ -23029,7 +19006,7 @@ "content": [ { "kind": "text", - "text": "Promise with bucket details or error" + "text": "Promise with response containing bucket details or error" } ] }, @@ -23058,7 +19035,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 139, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139" } ], "parameters": [ @@ -23112,7 +19089,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 141, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141" } ], "type": { @@ -23133,7 +19110,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 142, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142" } ], "type": { @@ -23153,7 +19130,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 140, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140" } ] } @@ -23178,7 +19155,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 145, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145" } ], "type": { @@ -23197,7 +19174,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 146, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146" } ], "type": { @@ -23219,7 +19196,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 144, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144" } ] } @@ -23244,7 +19221,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "signatures": [ @@ -23276,7 +19253,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of buckets or error" + "text": "Promise with response containing array of buckets or error" } ] }, @@ -23307,7 +19284,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 78, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78" } ], "parameters": [ @@ -23397,7 +19374,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 80, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80" } ], "type": { @@ -23421,7 +19398,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 81, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81" } ], "type": { @@ -23441,7 +19418,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 79, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79" } ] } @@ -23466,7 +19443,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 84, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84" } ], "type": { @@ -23485,7 +19462,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 85, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85" } ], "type": { @@ -23507,7 +19484,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 83, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83" } ] } @@ -23534,7 +19511,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "signatures": [ @@ -23568,7 +19545,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 41, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41" } ], "type": { @@ -23589,7 +19566,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "signatures": [ @@ -23621,7 +19598,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -23650,7 +19627,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 283, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283" } ], "parameters": [ @@ -23709,7 +19686,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 288, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288" } ], "type": { @@ -23750,7 +19727,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 287, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287" } ], "type": { @@ -23790,7 +19767,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 286, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286" } ], "type": { @@ -23810,7 +19787,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 285, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285" } ] } @@ -23847,7 +19824,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -23870,7 +19847,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ], "type": { @@ -23890,7 +19867,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 292, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292" } ] } @@ -23907,7 +19884,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 293, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293" } ], "type": { @@ -23927,7 +19904,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 291, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291" } ] } @@ -23952,7 +19929,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 296, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296" } ], "type": { @@ -23971,7 +19948,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 297, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297" } ], "type": { @@ -23993,7 +19970,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 295, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295" } ] } @@ -24033,7 +20010,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 8, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8" } ], "extendedBy": [ @@ -24056,7 +20033,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1" } ] }, @@ -24085,7 +20062,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "signatures": [ @@ -24100,7 +20077,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 52, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L52" } ], "parameters": [ @@ -24134,7 +20111,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 54, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" } ], "indexSignatures": [ @@ -24149,7 +20126,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 54, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L54" } ], "parameters": [ @@ -24431,7 +20408,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 556, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" } ], "signatures": [ @@ -24463,7 +20440,7 @@ "content": [ { "kind": "text", - "text": "Promise with copied file path or error" + "text": "Promise with response containing copied file path or error" } ] }, @@ -24492,7 +20469,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 556, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L556" } ], "parameters": [ @@ -24604,7 +20581,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 562, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" } ], "type": { @@ -24627,7 +20604,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 562, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" } ], "type": { @@ -24647,7 +20624,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 562, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L562" } ] } @@ -24664,7 +20641,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 563, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L563" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L563" } ], "type": { @@ -24684,7 +20661,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 561, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L561" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L561" } ] } @@ -24709,7 +20686,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 566, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L566" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L566" } ], "type": { @@ -24728,7 +20705,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 567, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L567" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L567" } ], "type": { @@ -24750,7 +20727,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 565, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L565" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L565" } ] } @@ -24775,7 +20752,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 342, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" } ], "signatures": [ @@ -24807,7 +20784,7 @@ "content": [ { "kind": "text", - "text": "Promise with signed upload URL, token, and path or error" + "text": "Promise with response containing signed upload URL, token, and path or error" } ] }, @@ -24836,7 +20813,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 342, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L342" } ], "parameters": [ @@ -24903,7 +20880,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 344, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" } ], "type": { @@ -24923,7 +20900,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 344, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L344" } ] } @@ -24960,7 +20937,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -24983,7 +20960,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 50, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -25002,7 +20979,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -25021,7 +20998,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 35, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ], "type": { @@ -25041,7 +21018,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 347, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L347" } ] } @@ -25058,7 +21035,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 348, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L348" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L348" } ], "type": { @@ -25078,7 +21055,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 346, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L346" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L346" } ] } @@ -25103,7 +21080,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 351, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L351" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L351" } ], "type": { @@ -25122,7 +21099,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 352, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L352" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L352" } ], "type": { @@ -25144,7 +21121,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 350, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L350" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L350" } ] } @@ -25169,7 +21146,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 646, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" } ], "signatures": [ @@ -25201,7 +21178,7 @@ "content": [ { "kind": "text", - "text": "Promise with signed URL or error" + "text": "Promise with response containing signed URL or error" } ] }, @@ -25250,7 +21227,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 646, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L646" } ], "parameters": [ @@ -25346,7 +21323,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 649, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" } ], "type": { @@ -25384,7 +21361,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 649, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" } ], "type": { @@ -25406,7 +21383,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 649, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L649" } ] } @@ -25443,7 +21420,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 652, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" } ], "type": { @@ -25466,7 +21443,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 652, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" } ], "type": { @@ -25486,7 +21463,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 652, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L652" } ] } @@ -25503,7 +21480,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 653, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L653" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L653" } ], "type": { @@ -25523,7 +21500,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 651, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L651" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L651" } ] } @@ -25548,7 +21525,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 656, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L656" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L656" } ], "type": { @@ -25567,7 +21544,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 657, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L657" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L657" } ], "type": { @@ -25589,7 +21566,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 655, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L655" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L655" } ] } @@ -25614,7 +21591,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 725, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" } ], "signatures": [ @@ -25646,7 +21623,7 @@ "content": [ { "kind": "text", - "text": "Promise with array of signed URLs or error" + "text": "Promise with response containing array of objects with signedUrl, path, and error or error" } ] }, @@ -25675,7 +21652,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 725, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L725" } ], "parameters": [ @@ -25772,7 +21749,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 728, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" } ], "type": { @@ -25801,7 +21778,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 728, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L728" } ] } @@ -25838,7 +21815,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -25863,7 +21840,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -25891,7 +21868,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 38, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -25919,7 +21896,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 59, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ], "type": { @@ -25939,7 +21916,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 731, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L731" } ] } @@ -25957,7 +21934,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 732, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L732" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L732" } ], "type": { @@ -25977,7 +21954,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 730, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L730" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L730" } ] } @@ -26002,7 +21979,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 735, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L735" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L735" } ], "type": { @@ -26021,7 +21998,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 736, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L736" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L736" } ], "type": { @@ -26043,7 +22020,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 734, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L734" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L734" } ] } @@ -26068,7 +22045,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ], "signatures": [ @@ -26147,7 +22124,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ], "typeParameters": [ @@ -26179,7 +22156,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ], "type": { @@ -26201,7 +22178,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 809, "character": 27, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L809" } ] } @@ -26274,7 +22251,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 886, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" } ], "signatures": [ @@ -26306,7 +22283,7 @@ "content": [ { "kind": "text", - "text": "Promise with boolean indicating file existence or error" + "text": "Promise with response containing boolean indicating file existence or error" } ] }, @@ -26327,7 +22304,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 886, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L886" } ], "parameters": [ @@ -26389,7 +22366,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 888, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L888" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L888" } ], "type": { @@ -26408,7 +22385,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 889, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L889" } ], "type": { @@ -26428,7 +22405,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 887, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L887" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L887" } ] } @@ -26453,7 +22430,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 892, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L892" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L892" } ], "type": { @@ -26472,7 +22449,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 893, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L893" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L893" } ], "type": { @@ -26494,7 +22471,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 891, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L891" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L891" } ] } @@ -26519,7 +22496,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" } ], "signatures": [ @@ -26600,7 +22577,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 970, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L970" } ], "parameters": [ @@ -26669,7 +22646,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 972, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" } ], "type": { @@ -26707,7 +22684,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 972, "character": 45, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" } ], "type": { @@ -26729,7 +22706,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 972, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L972" } ] } @@ -26756,7 +22733,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ], "type": { @@ -26779,7 +22756,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ], "type": { @@ -26799,7 +22776,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ] } @@ -26817,7 +22794,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 973, "character": 5, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L973" } ] } @@ -26836,7 +22813,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 841, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" } ], "signatures": [ @@ -26868,7 +22845,7 @@ "content": [ { "kind": "text", - "text": "Promise with file metadata or error" + "text": "Promise with response containing file metadata or error" } ] }, @@ -26889,7 +22866,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 841, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L841" } ], "parameters": [ @@ -26951,7 +22928,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 843, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L843" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L843" } ], "type": { @@ -26980,7 +22957,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 844, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L844" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L844" } ], "type": { @@ -27000,7 +22977,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 842, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L842" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L842" } ] } @@ -27025,7 +23002,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 847, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L847" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L847" } ], "type": { @@ -27044,7 +23021,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 848, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L848" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L848" } ], "type": { @@ -27066,7 +23043,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 846, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L846" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L846" } ] } @@ -27091,7 +23068,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1178, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" } ], "signatures": [ @@ -27123,7 +23100,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of files or error" + "text": "Promise with response containing array of files or error" } ] }, @@ -27162,7 +23139,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1178, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178" } ], "parameters": [ @@ -27264,7 +23241,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1184, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1184" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1184" } ], "type": { @@ -27288,7 +23265,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1185, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1185" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1185" } ], "type": { @@ -27308,7 +23285,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1183, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1183" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1183" } ] } @@ -27333,7 +23310,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1188, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1188" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1188" } ], "type": { @@ -27352,7 +23329,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1189, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1189" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1189" } ], "type": { @@ -27374,7 +23351,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1187, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1187" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1187" } ] } @@ -27399,7 +23376,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1221, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" } ], "signatures": [ @@ -27434,7 +23411,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1221, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221" } ], "parameters": [ @@ -27507,7 +23484,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1226" } ], "type": { @@ -27528,7 +23505,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1227, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1227" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1227" } ], "type": { @@ -27548,7 +23525,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1225, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1225" } ] } @@ -27573,7 +23550,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1230, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1230" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1230" } ], "type": { @@ -27592,7 +23569,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1231, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1231" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1231" } ], "type": { @@ -27614,7 +23591,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1229, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1229" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1229" } ] } @@ -27639,7 +23616,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 490, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" } ], "signatures": [ @@ -27671,7 +23648,7 @@ "content": [ { "kind": "text", - "text": "Promise with success message or error" + "text": "Promise with response containing success message or error" } ] }, @@ -27700,7 +23677,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 490, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L490" } ], "parameters": [ @@ -27812,7 +23789,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 496, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ], "type": { @@ -27835,7 +23812,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 496, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ], "type": { @@ -27855,7 +23832,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 496, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L496" } ] } @@ -27872,7 +23849,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 497, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L497" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L497" } ], "type": { @@ -27892,7 +23869,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 495, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L495" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L495" } ] } @@ -27917,7 +23894,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 500, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L500" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L500" } ], "type": { @@ -27936,7 +23913,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 501, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L501" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L501" } ], "type": { @@ -27958,7 +23935,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 499, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L499" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L499" } ] } @@ -27983,7 +23960,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1026, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" } ], "signatures": [ @@ -28015,7 +23992,7 @@ "content": [ { "kind": "text", - "text": "Promise with list of deleted files or error" + "text": "Promise with response containing array of deleted file objects or error" } ] }, @@ -28044,7 +24021,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1026, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026" } ], "parameters": [ @@ -28109,7 +24086,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1028, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1028" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1028" } ], "type": { @@ -28133,7 +24110,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1029, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1029" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1029" } ], "type": { @@ -28153,7 +24130,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1027, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1027" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1027" } ] } @@ -28178,7 +24155,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1032, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1032" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1032" } ], "type": { @@ -28197,7 +24174,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1033, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1033" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1033" } ], "type": { @@ -28219,7 +24196,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1031, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1031" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1031" } ] } @@ -28246,7 +24223,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 69, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" } ], "signatures": [ @@ -28280,7 +24257,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 69, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L69" } ], "type": { @@ -28301,7 +24278,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" } ], "signatures": [ @@ -28316,7 +24293,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1260, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260" } ], "parameters": [ @@ -28350,7 +24327,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 436, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" } ], "signatures": [ @@ -28382,7 +24359,7 @@ "content": [ { "kind": "text", - "text": "Promise with file path and id or error" + "text": "Promise with response containing file path, id, and fullPath or error" } ] }, @@ -28421,7 +24398,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 436, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L436" } ], "parameters": [ @@ -28657,7 +24634,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -28680,7 +24657,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -28699,7 +24676,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -28718,7 +24695,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ], "type": { @@ -28738,7 +24715,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 452, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L452" } ] } @@ -28755,7 +24732,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 453, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L453" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L453" } ], "type": { @@ -28775,7 +24752,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 451, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L451" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L451" } ] } @@ -28800,7 +24777,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 456, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L456" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L456" } ], "type": { @@ -28819,7 +24796,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 457, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L457" } ], "type": { @@ -28841,7 +24818,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 455, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L455" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L455" } ] } @@ -28866,7 +24843,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 215, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" } ], "signatures": [ @@ -28898,7 +24875,7 @@ "content": [ { "kind": "text", - "text": "Promise with file path and id or error" + "text": "Promise with response containing file path, id, and fullPath or error" } ] }, @@ -28937,7 +24914,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 215, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L215" } ], "parameters": [ @@ -29046,7 +25023,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -29069,7 +25046,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 42, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -29088,7 +25065,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -29107,7 +25084,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ], "type": { @@ -29127,7 +25104,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 221, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L221" } ] } @@ -29144,7 +25121,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 222, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L222" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L222" } ], "type": { @@ -29164,7 +25141,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 220, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L220" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L220" } ] } @@ -29189,7 +25166,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 225, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L225" } ], "type": { @@ -29208,7 +25185,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 226, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L226" } ], "type": { @@ -29230,7 +25207,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 224, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L224" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L224" } ] } @@ -29255,7 +25232,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" } ], "signatures": [ @@ -29295,7 +25272,7 @@ "content": [ { "kind": "text", - "text": "Promise with file path and full path or error" + "text": "Promise with response containing file path and fullPath or error" } ] }, @@ -29324,7 +25301,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 261, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L261" } ], "parameters": [ @@ -29456,7 +25433,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ], "type": { @@ -29479,7 +25456,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 33, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ], "type": { @@ -29499,7 +25476,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ], "type": { @@ -29520,7 +25497,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 297, "character": 14, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L297" } ] } @@ -29538,7 +25515,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 298, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L298" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L298" } ], "type": { @@ -29559,7 +25536,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 296, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L296" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L296" } ] } @@ -29584,7 +25561,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 305, "character": 17, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" } ], "type": { @@ -29604,7 +25581,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 305, "character": 29, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" } ], "type": { @@ -29626,7 +25603,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 305, "character": 15, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L305" } ] } @@ -29670,7 +25647,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 45, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L45" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L45" } ] } @@ -29686,7 +25663,7 @@ "fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StorageFileApi.ts#L1" } ] }, @@ -29715,7 +25692,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "signatures": [ @@ -29730,7 +25707,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 5, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5" } ], "parameters": [ @@ -29753,7 +25730,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "signatures": [ @@ -29768,7 +25745,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 6, "character": 24, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6" } ], "type": { @@ -29829,7 +25806,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "signatures": [ @@ -29863,7 +25840,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 10, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10" } ], "typeParameters": [ @@ -29946,7 +25923,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "signatures": [ @@ -29961,7 +25938,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 12, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12" } ], "parameters": [ @@ -30069,7 +26046,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "signatures": [ @@ -30084,7 +26061,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 14, "character": 18, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14" } ], "parameters": [ @@ -30197,7 +26174,7 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 4, "character": 21, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4" } ], "implementedTypes": [ @@ -30243,70 +26220,358 @@ "fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts", "line": 1, "character": 0, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1" } ] } ], "groups": [ { - "title": "Modules", - "children": [1, 2, 46, 114, 222, 474] - } - ], - "packageName": "@supabase/storage-js", - "readme": [ + "title": "Modules", + "children": [1, 2, 46, 114, 222, 474] + } + ], + "packageName": "@supabase/storage-js", + "readme": [ + { + "kind": "text", + "text": "
\n

\n \n \n \n \n \"Supabase\n \n \n\n

Supabase Storage JS SDK

\n\n

JavaScript SDK to interact with Supabase Storage, including file storage and vector embeddings.

\n\n

\n Guides\n ·\n Reference Docs\n ·\n TypeDoc\n

\n

\n\n
\n\n[![Build](https://github.com/supabase/supabase-js/workflows/CI/badge.svg)](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)\n[![Package](https://img.shields.io/npm/v/@supabase/storage-js)](https://www.npmjs.com/package/@supabase/storage-js)\n[![License: MIT](https://img.shields.io/npm/l/@supabase/supabase-js)](#license)\n[![pkg.pr.new](https://pkg.pr.new/badge/supabase/storage-js)](https://pkg.pr.new/~/supabase/storage-js)\n\n
\n\n## Requirements\n\n- **Node.js 20 or later** (Node.js 18 support dropped as of October 31, 2025)\n- For browser support, all modern browsers are supported\n\n> ⚠️ **Node.js 18 Deprecation Notice**\n>\n> Node.js 18 reached end-of-life on April 30, 2025. As announced in [our deprecation notice](https://github.com/orgs/supabase/discussions/37217), support for Node.js 18 was dropped on October 31, 2025.\n\n## Features\n\n- **File Storage**: Upload, download, list, move, and delete files\n- **Access Control**: Public and private buckets with fine-grained permissions\n- **Signed URLs**: Generate time-limited URLs for secure file access\n- **Image Transformations**: On-the-fly image resizing and optimization\n- **Vector Embeddings**: Store and query high-dimensional embeddings with similarity search\n- **Analytics Buckets**: Iceberg table-based buckets optimized for analytical queries and data processing\n\n## Quick Start Guide\n\n### Installing the module\n\n" + }, + { + "kind": "code", + "text": "```bash\nnpm install @supabase/storage-js\n```" + }, + { + "kind": "text", + "text": "\n\n### Connecting to the storage backend\n\nThere are two ways to use the Storage SDK:\n\n#### Option 1: Via Supabase Client (Recommended)\n\nIf you're already using " + }, + { + "kind": "code", + "text": "`@supabase/supabase-js`" + }, + { + "kind": "text", + "text": ", access storage through the client:\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Use publishable/anon key for frontend applications\nconst supabase = createClient('https://.supabase.co', '')\n\n// Access storage\nconst storage = supabase.storage\n\n// Access different bucket types\nconst regularBucket = storage.from('my-bucket')\nconst vectorBucket = storage.vectors.from('embeddings-bucket')\nconst analyticsBucket = storage.analytics // Analytics API\n```" + }, + { + "kind": "text", + "text": "\n\n#### Option 2: Standalone StorageClient\n\nFor backend applications or when you need to bypass Row Level Security:\n\n" + }, + { + "kind": "code", + "text": "```js\nimport { StorageClient } from '@supabase/storage-js'\n\nconst STORAGE_URL = 'https://.supabase.co/storage/v1'\nconst SERVICE_KEY = '' // Use secret key for backend operations\n\nconst storageClient = new StorageClient(STORAGE_URL, {\n apikey: SERVICE_KEY,\n Authorization: `Bearer ${SERVICE_KEY}`,\n})\n\n// Access different bucket types\nconst regularBucket = storageClient.from('my-bucket')\nconst vectorBucket = storageClient.vectors.from('embeddings-bucket')\nconst analyticsBucket = storageClient.analytics // Analytics API\n```" + }, + { + "kind": "text", + "text": "\n\n> **When to use each approach:**\n>\n> - Use " + }, + { + "kind": "code", + "text": "`supabase.storage`" + }, + { + "kind": "text", + "text": " when working with other Supabase features (auth, database, etc.) in frontend applications\n> - Use " + }, + { + "kind": "code", + "text": "`new StorageClient()`" + }, + { + "kind": "text", + "text": " for backend applications, Edge Functions, or when you need to bypass RLS policies\n\n### Understanding API Keys\n\nSupabase provides different types of API keys for different use cases:\n\n| Key Type | Format | Privileges | Use Case |\n| ---------------------- | -------------------- | ---------- | ------------------------------------------------------------------------ |\n| **Publishable key** | " + }, + { + "kind": "code", + "text": "`sb_publishable_...`" + }, + { + "kind": "text", + "text": " | Low | Frontend applications (web pages, mobile apps) - works with RLS policies |\n| **Secret key** | " + }, + { + "kind": "code", + "text": "`sb_secret_...`" + }, + { + "kind": "text", + "text": " | Elevated | Backend applications (servers, Edge Functions) - bypasses RLS |\n| **anon** (JWT) | JWT format | Low | Legacy - use publishable key instead |\n| **service_role** (JWT) | JWT format | Elevated | Legacy - use secret key instead |\n\n**For frontend applications:**\n\n- Use **publishable keys** (" + }, + { + "kind": "code", + "text": "`sb_publishable_...`" + }, + { + "kind": "text", + "text": ") or " + }, + { + "kind": "code", + "text": "`anon`" + }, + { + "kind": "text", + "text": " JWT keys\n- These keys work with Row Level Security (RLS) policies\n- Safe to expose in client-side code\n- Access is controlled by RLS policies you define\n\n**For backend applications:**\n\n- Use **secret keys** (" + }, + { + "kind": "code", + "text": "`sb_secret_...`" + }, + { + "kind": "text", + "text": ") or " + }, + { + "kind": "code", + "text": "`service_role`" + }, + { + "kind": "text", + "text": " JWT keys\n- These keys bypass all RLS policies\n- **Never expose these keys** in client-side code\n- Use only in secure, server-side environments\n\n> **⚠️ Security Warning:** Never use secret keys or " + }, + { + "kind": "code", + "text": "`service_role`" + }, + { + "kind": "text", + "text": " keys in frontend code, mobile apps, or any publicly accessible location. They provide full access to your project's data and bypass all security policies.\n\n### Access Control and Row Level Security\n\nSupabase Storage uses Postgres [Row Level Security (RLS)](/docs/guides/database/postgres/row-level-security) to control access to buckets and files. By default, Storage blocks all operations unless you create RLS policies.\n\n#### How RLS Works with Storage\n\n- **Publishable/anon keys**: Operations are controlled by RLS policies on the " + }, + { + "kind": "code", + "text": "`storage.objects`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`storage.buckets`" + }, + { + "kind": "text", + "text": " tables\n- **Secret/service_role keys**: Operations bypass RLS entirely (use with caution)\n\n#### Required RLS Permissions\n\nDifferent operations require different RLS policy permissions:\n\n| Operation | " + }, + { + "kind": "code", + "text": "`buckets`" + }, + { + "kind": "text", + "text": " table | " + }, + { + "kind": "code", + "text": "`objects`" + }, + { + "kind": "text", + "text": " table |\n| ------------------- | ------------------ | ---------------------------- |\n| " + }, + { + "kind": "code", + "text": "`createBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`INSERT`" + }, + { + "kind": "text", + "text": " | None |\n| " + }, + { + "kind": "code", + "text": "`updateBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`UPDATE`" + }, + { + "kind": "text", + "text": " | None |\n| " + }, + { + "kind": "code", + "text": "`deleteBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`DELETE`" + }, + { + "kind": "text", + "text": " | None |\n| " + }, + { + "kind": "code", + "text": "`emptyBucket`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": " | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": ", " + }, + { + "kind": "code", + "text": "`DELETE`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`upload`" + }, { "kind": "text", - "text": "
\n

\n \n \n \n \n \"Supabase\n \n \n\n

Supabase Storage JS SDK

\n\n

JavaScript SDK to interact with Supabase Storage, including file storage and vector embeddings.

\n\n

\n Guides\n ·\n Reference Docs\n ·\n TypeDoc\n

\n

\n\n
\n\n[![Build](https://github.com/supabase/supabase-js/workflows/CI/badge.svg)](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)\n[![Package](https://img.shields.io/npm/v/@supabase/storage-js)](https://www.npmjs.com/package/@supabase/storage-js)\n[![License: MIT](https://img.shields.io/npm/l/@supabase/supabase-js)](#license)\n[![pkg.pr.new](https://pkg.pr.new/badge/supabase/storage-js)](https://pkg.pr.new/~/supabase/storage-js)\n\n
\n\n## Requirements\n\n- **Node.js 20 or later** (Node.js 18 support dropped as of October 31, 2025)\n- For browser support, all modern browsers are supported\n\n> ⚠️ **Node.js 18 Deprecation Notice**\n>\n> Node.js 18 reached end-of-life on April 30, 2025. As announced in [our deprecation notice](https://github.com/orgs/supabase/discussions/37217), support for Node.js 18 was dropped on October 31, 2025.\n\n## Features\n\n- **File Storage**: Upload, download, list, move, and delete files\n- **Access Control**: Public and private buckets with fine-grained permissions\n- **Signed URLs**: Generate time-limited URLs for secure file access\n- **Image Transformations**: On-the-fly image resizing and optimization\n- **Vector Embeddings**: Store and query high-dimensional embeddings with similarity search\n- **Analytics Buckets**: Iceberg table-based buckets optimized for analytical queries and data processing\n\n## Quick Start Guide\n\n### Installing the module\n\n" + "text": " (new file) | None | " }, { "kind": "code", - "text": "```bash\nnpm install @supabase/storage-js\n```" + "text": "`INSERT`" }, { "kind": "text", - "text": "\n\n### Connecting to the storage backend\n\nThere are two ways to use the Storage SDK:\n\n#### Option 1: Via Supabase Client (Recommended)\n\nIf you're already using " + "text": " |\n| " }, { "kind": "code", - "text": "`@supabase/supabase-js`" + "text": "`upload`" }, { "kind": "text", - "text": ", access storage through the client:\n\n" + "text": " (upsert) | None | " }, { "kind": "code", - "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://.supabase.co', '')\n\n// Access storage\nconst storage = supabase.storage\n\n// Access different bucket types\nconst regularBucket = storage.from('my-bucket')\nconst vectorBucket = storage.vectors.from('embeddings-bucket')\nconst analyticsBucket = storage.analytics // Analytics API\n```" + "text": "`SELECT`" }, { "kind": "text", - "text": "\n\n#### Option 2: Standalone StorageClient\n\nFor applications that only need storage functionality:\n\n" + "text": ", " }, { "kind": "code", - "text": "```js\nimport { StorageClient } from '@supabase/storage-js'\n\nconst STORAGE_URL = 'https://.supabase.co/storage/v1'\nconst SERVICE_KEY = '' //! service key, not anon key\n\nconst storageClient = new StorageClient(STORAGE_URL, {\n apikey: SERVICE_KEY,\n Authorization: `Bearer ${SERVICE_KEY}`,\n})\n\n// Access different bucket types\nconst regularBucket = storageClient.from('my-bucket')\nconst vectorBucket = storageClient.vectors.from('embeddings-bucket')\nconst analyticsBucket = storageClient.analytics // Analytics API\n```" + "text": "`INSERT`" }, { "kind": "text", - "text": "\n\n> **When to use each approach:**\n>\n> - Use " + "text": ", " }, { "kind": "code", - "text": "`supabase.storage`" + "text": "`UPDATE`" }, { "kind": "text", - "text": " when working with other Supabase features (auth, database, etc.)\n> - Use " + "text": " |\n| " }, { "kind": "code", - "text": "`new StorageClient()`" + "text": "`download`" + }, + { + "kind": "text", + "text": " | None | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`list`" }, { "kind": "text", - "text": " for storage-only applications or when you need fine-grained control\n\n### Understanding Bucket Types\n\nSupabase Storage supports three types of buckets, each optimized for different use cases:\n\n#### 1. Regular Storage Buckets (File Storage)\n\nStandard buckets for storing files, images, videos, and other assets.\n\n" + "text": " | None | " + }, + { + "kind": "code", + "text": "`SELECT`" + }, + { + "kind": "text", + "text": " |\n| " + }, + { + "kind": "code", + "text": "`remove`" + }, + { + "kind": "text", + "text": " | None | " + }, + { + "kind": "code", + "text": "`DELETE`" + }, + { + "kind": "text", + "text": " |\n\n> **Note:** Refer to the [Storage Access Control guide](https://supabase.com/docs/guides/storage/access-control) for detailed information on creating RLS policies.\n\n#### Example RLS Policy\n\nAllow authenticated users to upload files to a specific bucket:\n\n" + }, + { + "kind": "code", + "text": "```sql\nCREATE POLICY \"Allow authenticated uploads\"\nON storage.objects\nFOR INSERT\nTO authenticated\nWITH CHECK (\n bucket_id = 'my-bucket-id'\n);\n```" + }, + { + "kind": "text", + "text": "\n\n### Understanding Bucket Types\n\nSupabase Storage supports three types of buckets, each optimized for different use cases:\n\n#### 1. Regular Storage Buckets (File Storage)\n\nStandard buckets for storing files, images, videos, and other assets.\n\n" }, { "kind": "code", @@ -30526,7 +26791,7 @@ }, { "kind": "code", - "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-anon-key')\n\n// Access analytics operations\nconst analytics = supabase.storage.analytics\n\n// Create an analytics bucket\nconst { data, error } = await analytics.createBucket('analytics-data')\nif (error) {\n console.error('Failed to create analytics bucket:', error.message)\n} else {\n console.log('Created bucket:', data.name)\n}\n```" + "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-publishable-key')\n\n// Access analytics operations\nconst analytics = supabase.storage.analytics\n\n// Create an analytics bucket\nconst { data, error } = await analytics.createBucket('analytics-data')\nif (error) {\n console.error('Failed to create analytics bucket:', error.message)\n} else {\n console.log('Created bucket:', data.name)\n}\n```" }, { "kind": "text", @@ -30694,7 +26959,7 @@ }, { "kind": "code", - "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-anon-key')\n\n// Access vector operations through storage\nconst vectors = supabase.storage.vectors\n\n// Create a vector bucket\nawait vectors.createBucket('embeddings-prod')\n\n// Create an index\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n})\n\n// Insert vectors\nconst index = bucket.index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3 /* ...1536 dimensions */] },\n metadata: { title: 'Introduction', category: 'docs' },\n },\n ],\n})\n\n// Query similar vectors\nconst { data, error } = await index.queryVectors({\n queryVector: { float32: [0.15, 0.25, 0.35 /* ...1536 dimensions */] },\n topK: 5,\n returnDistance: true,\n returnMetadata: true,\n})\n\nif (data) {\n data.matches.forEach((match) => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```" + "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-publishable-key')\n\n// Access vector operations through storage\nconst vectors = supabase.storage.vectors\n\n// Create a vector bucket\nawait vectors.createBucket('embeddings-prod')\n\n// Create an index\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n})\n\n// Insert vectors\nconst index = bucket.index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3 /* ...1536 dimensions */] },\n metadata: { title: 'Introduction', category: 'docs' },\n },\n ],\n})\n\n// Query similar vectors\nconst { data, error } = await index.queryVectors({\n queryVector: { float32: [0.15, 0.25, 0.35 /* ...1536 dimensions */] },\n topK: 5,\n returnDistance: true,\n returnMetadata: true,\n})\n\nif (data) {\n data.matches.forEach((match) => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```" }, { "kind": "text", @@ -33019,1729 +29284,1345 @@ "sourceFileName": "src/StorageClient.ts", "qualifiedName": "url" }, - "504": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "headers" - }, - "505": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "__type" - }, - "506": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "__type.__index" - }, - "508": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "fetch" - }, - "509": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "510": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "511": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" - }, - "512": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" - }, - "513": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" - }, - "514": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" - }, - "515": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" - }, - "516": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "opts" - }, - "517": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.from" - }, - "518": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.from" - }, - "519": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "id" - }, - "520": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.vectors" - }, - "521": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.vectors" - }, - "522": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.analytics" - }, - "523": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClient.analytics" - }, - "538": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.throwOnError" - }, - "539": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.throwOnError" - }, - "540": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.listBuckets" - }, - "541": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.listBuckets" - }, - "542": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "options" - }, - "543": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "544": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "545": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" - }, - "546": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "547": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "548": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" - }, - "549": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.getBucket" - }, - "550": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.getBucket" - }, - "551": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "id" - }, - "552": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "553": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "554": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" - }, - "555": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "556": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "557": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" - }, - "558": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.createBucket" - }, - "559": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.createBucket" - }, - "560": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "id" - }, - "561": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "options" - }, - "562": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "563": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.public" - }, - "564": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.fileSizeLimit" - }, - "565": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.allowedMimeTypes" - }, - "566": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.type" - }, - "567": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "568": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "569": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" + "504": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "headers" }, - "570": { - "sourceFileName": "src/packages/StorageBucketApi.ts", + "505": { + "sourceFileName": "src/StorageClient.ts", "qualifiedName": "__type" }, - "571": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" - }, - "572": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" + "506": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "__type.__index" }, - "573": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.updateBucket" + "508": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "fetch" }, - "574": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.updateBucket" + "509": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "fetch" }, - "575": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "id" + "510": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "fetch" }, - "576": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "options" + "511": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "input" }, - "577": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" + "512": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "init" }, - "578": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.public" + "513": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "fetch" }, - "579": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.fileSizeLimit" + "514": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "input" }, - "580": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.allowedMimeTypes" + "515": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "init" }, - "581": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" + "516": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "opts" }, - "582": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" + "517": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.from" }, - "583": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" + "518": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.from" }, - "584": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.message" + "519": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "id" }, - "585": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" + "520": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.vectors" }, - "586": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" + "521": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.vectors" }, - "587": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" + "522": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.analytics" }, - "588": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.error" + "523": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClient.analytics" }, - "589": { + "538": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.emptyBucket" + "qualifiedName": "default.throwOnError" }, - "590": { + "539": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.emptyBucket" + "qualifiedName": "default.throwOnError" }, - "591": { + "540": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "id" + "qualifiedName": "default.listBuckets" }, - "592": { + "541": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" + "qualifiedName": "default.listBuckets" }, - "593": { + "542": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.data" + "qualifiedName": "options" }, - "594": { + "543": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type" }, - "595": { + "544": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.message" + "qualifiedName": "__type.data" }, - "596": { + "545": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.error" }, - "597": { + "546": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type" }, - "598": { + "547": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.data" }, - "599": { + "548": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.error" }, - "600": { + "549": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.deleteBucket" + "qualifiedName": "default.getBucket" }, - "601": { + "550": { "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "default.deleteBucket" + "qualifiedName": "default.getBucket" }, - "602": { + "551": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "id" }, - "603": { + "552": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type" }, - "604": { + "553": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.data" }, - "605": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type" - }, - "606": { - "sourceFileName": "src/packages/StorageBucketApi.ts", - "qualifiedName": "__type.message" - }, - "607": { + "554": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.error" }, - "608": { + "555": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type" }, - "609": { + "556": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.data" }, - "610": { + "557": { "sourceFileName": "src/packages/StorageBucketApi.ts", "qualifiedName": "__type.error" }, - "611": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClientOptions" - }, - "612": { - "sourceFileName": "src/StorageClient.ts", - "qualifiedName": "StorageClientOptions.useNewHostname" - }, - "613": { - "sourceFileName": "src/index.ts", - "qualifiedName": "StorageAnalyticsClient" - }, - "614": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "BucketType" - }, - "615": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket" - }, - "616": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.id" - }, - "617": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.type" - }, - "618": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.name" - }, - "619": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.owner" - }, - "620": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.file_size_limit" - }, - "621": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.allowed_mime_types" - }, - "622": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.created_at" - }, - "623": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.updated_at" - }, - "624": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Bucket.public" - }, - "625": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions" - }, - "626": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions.limit" - }, - "627": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions.offset" - }, - "628": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions.sortColumn" - }, - "629": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions.sortOrder" - }, - "630": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "ListBucketOptions.search" + "558": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.createBucket" }, - "631": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket" + "559": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.createBucket" }, - "632": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket.name" + "560": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "id" }, - "633": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket.type" + "561": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "options" }, - "634": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket.format" + "562": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "635": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket.created_at" + "563": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.public" }, - "636": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "AnalyticBucket.updated_at" + "564": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.fileSizeLimit" }, - "637": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject" + "565": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.allowedMimeTypes" }, - "638": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.name" + "566": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.type" }, - "639": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.bucket_id" + "567": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "640": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.owner" + "568": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "641": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.id" + "569": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "642": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.updated_at" + "570": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "643": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.created_at" + "571": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "644": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.last_accessed_at" + "572": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "645": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.metadata" + "573": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.updateBucket" }, - "646": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObject.buckets" + "574": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.updateBucket" }, - "647": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2" + "575": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "id" }, - "648": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.id" + "576": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "options" }, - "649": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.version" + "577": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "650": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.name" + "578": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.public" }, - "651": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.bucket_id" + "579": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.fileSizeLimit" }, - "652": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.updated_at" + "580": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.allowedMimeTypes" }, - "653": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.created_at" + "581": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "654": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.last_accessed_at" + "582": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "655": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.size" + "583": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "656": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.cache_control" + "584": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.message" }, - "657": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.content_type" + "585": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "658": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.etag" + "586": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "659": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.last_modified" + "587": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "660": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileObjectV2.metadata" + "588": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "661": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortBy" + "589": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.emptyBucket" }, - "662": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortBy.column" + "590": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.emptyBucket" }, - "663": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortBy.order" + "591": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "id" }, - "664": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions" + "592": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "665": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.cacheControl" + "593": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "666": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.contentType" + "594": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "667": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.upsert" + "595": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.message" }, - "668": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.duplex" + "596": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "669": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.metadata" + "597": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "670": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FileOptions.headers" + "598": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "671": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "DestinationOptions" + "599": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" + }, + "600": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.deleteBucket" }, - "672": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "DestinationOptions.destinationBucket" + "601": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "default.deleteBucket" }, - "673": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchOptions" + "602": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "id" }, - "674": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchOptions.limit" + "603": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "675": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchOptions.offset" + "604": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "676": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchOptions.sortBy" + "605": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "677": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchOptions.search" + "606": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.message" }, - "678": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortByV2" + "607": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "679": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortByV2.column" + "608": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type" }, - "680": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SortByV2.order" + "609": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.data" }, - "681": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options" + "610": { + "sourceFileName": "src/packages/StorageBucketApi.ts", + "qualifiedName": "__type.error" }, - "682": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options.limit" + "611": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClientOptions" }, - "683": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options.prefix" + "612": { + "sourceFileName": "src/StorageClient.ts", + "qualifiedName": "StorageClientOptions.useNewHostname" }, - "684": { - "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options.cursor" + "613": { + "sourceFileName": "src/index.ts", + "qualifiedName": "StorageAnalyticsClient" }, - "685": { + "614": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options.with_delimiter" + "qualifiedName": "BucketType" }, - "686": { + "615": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Options.sortBy" + "qualifiedName": "Bucket" }, - "687": { + "616": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object" + "qualifiedName": "Bucket.id" }, - "688": { + "617": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.id" + "qualifiedName": "Bucket.type" }, - "689": { + "618": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.key" + "qualifiedName": "Bucket.name" }, - "690": { + "619": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.name" + "qualifiedName": "Bucket.owner" }, - "691": { + "620": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.updated_at" + "qualifiedName": "Bucket.file_size_limit" }, - "692": { + "621": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.created_at" + "qualifiedName": "Bucket.allowed_mime_types" }, - "693": { + "622": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.metadata" + "qualifiedName": "Bucket.created_at" }, - "694": { + "623": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Object.last_accessed_at" + "qualifiedName": "Bucket.updated_at" }, - "695": { + "624": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Folder" + "qualifiedName": "Bucket.public" }, - "696": { + "625": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Result" + "qualifiedName": "ListBucketOptions" }, - "697": { + "626": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Result.hasNext" + "qualifiedName": "ListBucketOptions.limit" }, - "698": { + "627": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Result.folders" + "qualifiedName": "ListBucketOptions.offset" }, - "699": { + "628": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Result.objects" + "qualifiedName": "ListBucketOptions.sortColumn" }, - "700": { + "629": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "SearchV2Result.nextCursor" + "qualifiedName": "ListBucketOptions.sortOrder" }, - "701": { + "630": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FetchParameters" + "qualifiedName": "ListBucketOptions.search" }, - "702": { + "631": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "FetchParameters.signal" + "qualifiedName": "AnalyticBucket" }, - "703": { + "632": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Metadata" + "qualifiedName": "AnalyticBucket.name" }, - "704": { + "633": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Metadata.name" + "qualifiedName": "AnalyticBucket.type" }, - "705": { + "634": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions" + "qualifiedName": "AnalyticBucket.format" }, - "706": { + "635": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions.width" + "qualifiedName": "AnalyticBucket.created_at" }, - "707": { + "636": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions.height" + "qualifiedName": "AnalyticBucket.updated_at" }, - "708": { + "637": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions.resize" + "qualifiedName": "FileObject" }, - "709": { + "638": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions.quality" + "qualifiedName": "FileObject.name" }, - "710": { + "639": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "TransformOptions.format" + "qualifiedName": "FileObject.bucket_id" }, - "711": { + "640": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "Camelize" + "qualifiedName": "FileObject.owner" }, - "712": { + "641": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "T" + "qualifiedName": "FileObject.id" }, - "713": { + "642": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "DownloadResult" + "qualifiedName": "FileObject.updated_at" }, - "714": { + "643": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "FileObject.created_at" }, - "715": { + "644": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "FileObject.last_accessed_at" }, - "716": { + "645": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "FileObject.metadata" }, - "717": { + "646": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type" + "qualifiedName": "FileObject.buckets" }, - "718": { + "647": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type.data" + "qualifiedName": "FileObjectV2" }, - "719": { + "648": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "__type.error" + "qualifiedName": "FileObjectV2.id" }, - "720": { + "649": { "sourceFileName": "src/lib/types.ts", - "qualifiedName": "T" - }, - "721": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "isStorageError" - }, - "722": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "isStorageError" - }, - "723": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "error" - }, - "724": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageError" - }, - "725": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageError.__constructor" - }, - "726": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageError" - }, - "727": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "message" + "qualifiedName": "FileObjectV2.version" }, - "729": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError" + "650": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.name" }, - "730": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError.__constructor" + "651": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.bucket_id" }, - "731": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError" + "652": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.updated_at" }, - "732": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "message" + "653": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.created_at" }, - "733": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "status" + "654": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.last_accessed_at" }, - "734": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "statusCode" + "655": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.size" }, - "735": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError.status" + "656": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.cache_control" }, - "736": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError.statusCode" + "657": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.content_type" }, - "737": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError.toJSON" + "658": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.etag" }, - "738": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageApiError.toJSON" + "659": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.last_modified" }, - "739": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "__object" + "660": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileObjectV2.metadata" }, - "740": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "__object.name" + "661": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortBy" }, - "741": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "__object.message" + "662": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortBy.column" }, - "742": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "__object.status" + "663": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortBy.order" }, - "743": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "__object.statusCode" + "664": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions" }, - "745": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageUnknownError" + "665": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.cacheControl" }, - "746": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageUnknownError.__constructor" + "666": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.contentType" }, - "747": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageUnknownError" + "667": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.upsert" }, - "748": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "message" + "668": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.duplex" }, - "749": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "originalError" + "669": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.metadata" }, - "750": { - "sourceFileName": "src/lib/errors.ts", - "qualifiedName": "StorageUnknownError.originalError" + "670": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FileOptions.headers" }, - "752": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClient" + "671": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "DestinationOptions" }, - "753": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClient.__constructor" + "672": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "DestinationOptions.destinationBucket" }, - "754": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClient" + "673": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchOptions" }, - "755": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "url" + "674": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchOptions.limit" }, - "756": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "675": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchOptions.offset" }, - "757": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClient.from" + "676": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchOptions.sortBy" }, - "758": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClient.from" + "677": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchOptions.search" }, - "759": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "vectorBucketName" + "678": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortByV2" }, - "774": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.throwOnError" + "679": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortByV2.column" }, - "775": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.throwOnError" + "680": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SortByV2.order" }, - "776": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" + "681": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options" }, - "777": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" + "682": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options.limit" }, - "778": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" + "683": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options.prefix" }, - "779": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" + "684": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options.cursor" }, - "780": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" + "685": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options.with_delimiter" }, - "781": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" + "686": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Options.sortBy" }, - "782": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type" + "687": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object" }, - "783": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type.vectorBucket" + "688": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.id" }, - "784": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" + "689": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.key" }, - "785": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" + "690": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.name" }, - "786": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "options" + "691": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.updated_at" }, - "787": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" + "692": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.created_at" }, - "788": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" + "693": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.metadata" }, - "789": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" + "694": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Object.last_accessed_at" }, - "790": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope" + "695": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Folder" }, - "791": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.__constructor" + "696": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Result" }, - "792": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope" + "697": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Result.hasNext" }, - "793": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "url" + "698": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Result.folders" }, - "794": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "headers" + "699": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Result.objects" }, - "795": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type" + "700": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "SearchV2Result.nextCursor" }, - "796": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type.__index" + "701": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FetchParameters" }, - "798": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "vectorBucketName" + "702": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "FetchParameters.signal" }, - "799": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "fetch" + "703": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "Metadata" }, - "800": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" + "704": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "Metadata.name" }, - "801": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" + "705": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions" }, - "802": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" + "706": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions.width" }, - "803": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" + "707": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions.height" }, - "804": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" + "708": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions.resize" }, - "805": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" + "709": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions.quality" }, - "806": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" + "710": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "TransformOptions.format" }, - "808": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.createIndex" + "711": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "Camelize" }, - "809": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.createIndex" + "712": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "T" }, - "810": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "713": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "DownloadResult" }, - "811": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.listIndexes" + "714": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type" }, - "812": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.listIndexes" + "715": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type.data" }, - "813": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "716": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type.error" }, - "814": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.getIndex" + "717": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type" }, - "815": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.getIndex" + "718": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type.data" }, - "816": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "indexName" + "719": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "__type.error" }, - "817": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "__type" + "720": { + "sourceFileName": "src/lib/types.ts", + "qualifiedName": "T" }, - "818": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "__type.index" + "721": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "isStorageError" }, - "819": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.deleteIndex" + "722": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "isStorageError" }, - "820": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.deleteIndex" + "723": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "error" }, - "821": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "indexName" + "724": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageError" }, - "822": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.index" + "725": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageError.__constructor" }, - "823": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorBucketScope.index" + "726": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageError" }, - "824": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "indexName" + "727": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "message" }, - "839": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.throwOnError" + "729": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError" }, - "840": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.throwOnError" + "730": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError.__constructor" }, - "841": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope" + "731": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError" }, - "842": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.__constructor" + "732": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "message" }, - "843": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope" + "733": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "status" }, - "844": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "url" + "734": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "statusCode" }, - "845": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "headers" + "735": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError.status" }, - "846": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type" + "736": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError.statusCode" }, - "847": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type.__index" + "737": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError.toJSON" }, - "849": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "vectorBucketName" + "738": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageApiError.toJSON" + }, + "739": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__object" }, - "850": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "indexName" + "740": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__object.name" }, - "851": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "fetch" + "741": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__object.message" }, - "852": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" + "742": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__object.status" }, - "853": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" + "743": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "__object.statusCode" }, - "854": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" + "745": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageUnknownError" }, - "855": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" + "746": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageUnknownError.__constructor" }, - "856": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" + "747": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageUnknownError" }, - "857": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" + "748": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "message" }, - "858": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" + "749": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "originalError" }, - "861": { - "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.putVectors" + "750": { + "sourceFileName": "src/lib/errors.ts", + "qualifiedName": "StorageUnknownError.originalError" }, - "862": { + "752": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.putVectors" + "qualifiedName": "StorageVectorsClient" }, - "863": { + "753": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "qualifiedName": "StorageVectorsClient.__constructor" }, - "864": { + "754": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.getVectors" + "qualifiedName": "StorageVectorsClient" }, - "865": { + "755": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.getVectors" + "qualifiedName": "url" }, - "866": { + "756": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "867": { + "757": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.listVectors" + "qualifiedName": "StorageVectorsClient.from" }, - "868": { + "758": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.listVectors" + "qualifiedName": "StorageVectorsClient.from" }, - "869": { + "759": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "qualifiedName": "vectorBucketName" }, - "870": { + "760": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.queryVectors" + "qualifiedName": "StorageVectorsClient.createBucket" }, - "871": { + "761": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.queryVectors" + "qualifiedName": "StorageVectorsClient.createBucket" }, - "872": { + "762": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" + "qualifiedName": "vectorBucketName" }, - "873": { + "763": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.deleteVectors" + "qualifiedName": "StorageVectorsClient.getBucket" }, - "874": { + "764": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "VectorIndexScope.deleteVectors" + "qualifiedName": "StorageVectorsClient.getBucket" }, - "875": { + "765": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "options" - }, - "890": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.throwOnError" - }, - "891": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.throwOnError" + "qualifiedName": "vectorBucketName" }, - "892": { + "766": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClientOptions" + "qualifiedName": "__type" }, - "893": { + "767": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClientOptions.headers" + "qualifiedName": "__type.vectorBucket" }, - "894": { + "768": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type" + "qualifiedName": "StorageVectorsClient.listBuckets" }, - "895": { + "769": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "__type.__index" + "qualifiedName": "StorageVectorsClient.listBuckets" }, - "897": { + "770": { "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", - "qualifiedName": "StorageVectorsClientOptions.fetch" - }, - "898": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "899": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "900": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" - }, - "901": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" - }, - "902": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" - }, - "903": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" - }, - "904": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" - }, - "905": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default" - }, - "906": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.__constructor" - }, - "907": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default" - }, - "908": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "url" - }, - "909": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "headers" - }, - "910": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type" - }, - "911": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type.__index" - }, - "913": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "fetch" - }, - "914": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "915": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "fetch" - }, - "916": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "input" - }, - "917": { - "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", - "qualifiedName": "init" + "qualifiedName": "options" }, - "918": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "fetch" + "771": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.deleteBucket" }, - "919": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "input" + "772": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClient.deleteBucket" }, - "920": { - "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", - "qualifiedName": "init" + "773": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "vectorBucketName" }, - "935": { + "788": { "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", "qualifiedName": "default.throwOnError" }, - "936": { + "789": { "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", "qualifiedName": "default.throwOnError" }, - "937": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" - }, - "938": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.createBucket" - }, - "939": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" - }, - "940": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" - }, - "941": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.getBucket" - }, - "942": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" - }, - "943": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type" - }, - "944": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "__type.vectorBucket" - }, - "945": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" - }, - "946": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.listBuckets" - }, - "947": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "options" - }, - "948": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" - }, - "949": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "default.deleteBucket" - }, - "950": { - "sourceFileName": "src/lib/vectors/VectorBucketApi.ts", - "qualifiedName": "vectorBucketName" - }, - "951": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default" + "790": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope" }, - "952": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.__constructor" + "791": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.__constructor" }, - "953": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default" + "792": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope" }, - "954": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "793": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "url" }, - "955": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "794": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "headers" }, - "956": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "795": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "__type" }, - "957": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "796": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "__type.__index" }, - "959": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "798": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "vectorBucketName" + }, + "799": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "fetch" }, - "960": { + "800": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "961": { + "801": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "962": { + "802": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "963": { + "803": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "964": { + "804": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "965": { + "805": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "966": { + "806": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "981": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.throwOnError" + "808": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.createIndex" }, - "982": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.throwOnError" + "809": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.createIndex" }, - "983": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.createIndex" + "810": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "options" }, - "984": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.createIndex" + "811": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.listIndexes" }, - "985": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "options" + "812": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.listIndexes" }, - "986": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.getIndex" + "813": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "options" }, - "987": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.getIndex" + "814": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.getIndex" }, - "988": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "vectorBucketName" + "815": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.getIndex" }, - "989": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", + "816": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "indexName" }, - "990": { + "817": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", "qualifiedName": "__type" }, - "991": { + "818": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", "qualifiedName": "__type.index" }, - "992": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.listIndexes" + "819": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.deleteIndex" }, - "993": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.listIndexes" + "820": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.deleteIndex" }, - "994": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "options" + "821": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "indexName" }, - "995": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.deleteIndex" + "822": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.index" }, - "996": { - "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "default.deleteIndex" + "823": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorBucketScope.index" + }, + "824": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "indexName" }, - "997": { + "839": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "vectorBucketName" + "qualifiedName": "default.throwOnError" }, - "998": { + "840": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", - "qualifiedName": "indexName" + "qualifiedName": "default.throwOnError" }, - "999": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default" + "841": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope" }, - "1000": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.__constructor" + "842": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.__constructor" }, - "1001": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default" + "843": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope" }, - "1002": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "844": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "url" }, - "1003": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "845": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "headers" }, - "1004": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "846": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "__type" }, - "1005": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "847": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "__type.__index" }, - "1007": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "849": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "vectorBucketName" + }, + "850": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "indexName" + }, + "851": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "fetch" }, - "1008": { + "852": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "1009": { + "853": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "fetch" }, - "1010": { + "854": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "input" }, - "1011": { + "855": { "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", "qualifiedName": "init" }, - "1012": { + "856": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "fetch" }, - "1013": { + "857": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "input" }, - "1014": { + "858": { "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", "qualifiedName": "init" }, - "1029": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.throwOnError" + "861": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.putVectors" }, - "1030": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.throwOnError" + "862": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.putVectors" }, - "1031": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.putVectors" + "863": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "options" }, - "1032": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.putVectors" + "864": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.getVectors" }, - "1033": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "865": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.getVectors" + }, + "866": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "1034": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.getVectors" + "867": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.listVectors" }, - "1035": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.getVectors" + "868": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.listVectors" }, - "1036": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "869": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "1037": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.listVectors" + "870": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.queryVectors" }, - "1038": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.listVectors" + "871": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.queryVectors" }, - "1039": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "872": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "1040": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.queryVectors" + "873": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.deleteVectors" }, - "1041": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.queryVectors" + "874": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "VectorIndexScope.deleteVectors" }, - "1042": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", + "875": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", "qualifiedName": "options" }, - "1043": { + "890": { "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.deleteVectors" + "qualifiedName": "default.throwOnError" }, - "1044": { + "891": { "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "default.deleteVectors" + "qualifiedName": "default.throwOnError" }, - "1045": { - "sourceFileName": "src/lib/vectors/VectorDataApi.ts", - "qualifiedName": "options" + "892": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClientOptions" + }, + "893": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClientOptions.headers" + }, + "894": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "__type" + }, + "895": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "__type.__index" + }, + "897": { + "sourceFileName": "src/lib/vectors/StorageVectorsClient.ts", + "qualifiedName": "StorageVectorsClientOptions.fetch" + }, + "898": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "fetch" + }, + "899": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "fetch" + }, + "900": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "input" + }, + "901": { + "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts", + "qualifiedName": "init" + }, + "902": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "fetch" + }, + "903": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "input" + }, + "904": { + "sourceFileName": "../../../node_modules/@types/node/globals.d.ts", + "qualifiedName": "init" }, "1046": { "sourceFileName": "src/lib/vectors/VectorIndexApi.ts", diff --git a/apps/docs/spec/enrichments/tsdoc_v2/supabase.json b/apps/docs/spec/enrichments/tsdoc_v2/supabase.json index b05fcba5d7e54..520596476fa83 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/supabase.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/supabase.json @@ -22351,7 +22351,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L90" } ], "type": { @@ -23713,7 +23713,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L74" } ], "type": { @@ -23737,7 +23737,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L308" } ], "parameters": [ @@ -24108,19 +24108,19 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 202, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L315" } ], "signatures": [ @@ -24364,7 +24364,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 315, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L315" } ], "type": { @@ -24391,7 +24391,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L325" } ], "parameters": [ @@ -24554,7 +24554,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ] } @@ -44279,7 +44279,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 118, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L118" } ], "typeParameters": [ @@ -44327,7 +44327,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 118, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L118" } ], "type": { @@ -44347,7 +44347,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 118, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L118" } ] } @@ -44398,7 +44398,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 119, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L119" } ], "type": { @@ -44428,7 +44428,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L117" } ], "typeParameters": [ @@ -51073,7 +51073,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L28" } ], "typeParameters": [ @@ -51123,7 +51123,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L111" } ], "type": { @@ -51139,7 +51139,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 111, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L111" } ], "signatures": [ @@ -51191,7 +51191,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L36" } ], "type": { @@ -51224,7 +51224,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 40, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L40" } ], "type": { @@ -51253,7 +51253,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 72, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L72" } ], "type": { @@ -51294,7 +51294,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 52, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L52" } ], "type": { @@ -51323,7 +51323,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 68, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L68" } ], "type": { @@ -51365,7 +51365,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L78" } ], "type": { @@ -51406,7 +51406,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 48, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L48" } ], "type": { @@ -51435,7 +51435,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 56, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L56" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L56" } ], "type": { @@ -51476,7 +51476,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 44, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L44" } ], "type": { @@ -51505,7 +51505,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 83, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L83" } ], "type": { @@ -51547,7 +51547,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 64, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L64" } ], "type": { @@ -51579,7 +51579,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 36, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L36" } ] } @@ -51614,7 +51614,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L32" } ], "type": { @@ -51639,7 +51639,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L33" } ], "type": { @@ -51662,7 +51662,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L32" } ] } @@ -51681,7 +51681,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L90" } ], "type": { @@ -51722,7 +51722,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 94, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L94" } ], "type": { @@ -51756,7 +51756,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 98, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L98" } ], "type": { @@ -51791,7 +51791,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 90, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L90" } ] } @@ -51818,7 +51818,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L88" } ], "type": { @@ -51841,7 +51841,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L89" } ], "type": { @@ -51866,7 +51866,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L28" } ] } @@ -52659,7 +52659,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 35, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L35" } ], "signatures": [ @@ -52674,7 +52674,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 35, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L35" } ], "typeParameters": [ @@ -52722,7 +52722,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 39, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L39" } ], "type": { @@ -52742,7 +52742,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 39, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L39" } ] } diff --git a/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json index b05fcba5d7e54..520596476fa83 100644 --- a/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json +++ b/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json @@ -22351,7 +22351,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 112, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L73" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L81" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L87" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L86" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L90" } ], "type": { @@ -23713,7 +23713,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 74, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L74" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L74" } ], "type": { @@ -23737,7 +23737,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 80, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L80" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L84" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L85" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L82" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L114" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L113" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L308" } ], "parameters": [ @@ -24108,19 +24108,19 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 202, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L214" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L315" } ], "signatures": [ @@ -24364,7 +24364,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 315, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L315" } ], "type": { @@ -24391,7 +24391,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 332, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L325" } ], "parameters": [ @@ -24554,7 +24554,7 @@ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts", "line": 261, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L275" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L274" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L273" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L272" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L37" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/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/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/SupabaseClient.ts#L66" } ] } @@ -44279,7 +44279,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 118, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L118" } ], "typeParameters": [ @@ -44327,7 +44327,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 118, "character": 51, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L118" } ], "type": { @@ -44347,7 +44347,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 118, "character": 49, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L118" } ] } @@ -44398,7 +44398,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 119, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L119" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L119" } ], "type": { @@ -44428,7 +44428,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 117, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L117" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L117" } ], "typeParameters": [ @@ -51073,7 +51073,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 12, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L28" } ], "typeParameters": [ @@ -51123,7 +51123,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 111, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L111" } ], "type": { @@ -51139,7 +51139,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 111, "character": 16, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L111" } ], "signatures": [ @@ -51191,7 +51191,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 36, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L36" } ], "type": { @@ -51224,7 +51224,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 40, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L40" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L40" } ], "type": { @@ -51253,7 +51253,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 72, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L72" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L72" } ], "type": { @@ -51294,7 +51294,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 52, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L52" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L52" } ], "type": { @@ -51323,7 +51323,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 68, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L68" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L68" } ], "type": { @@ -51365,7 +51365,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 78, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L78" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L78" } ], "type": { @@ -51406,7 +51406,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 48, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L48" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L48" } ], "type": { @@ -51435,7 +51435,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 56, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L56" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L56" } ], "type": { @@ -51476,7 +51476,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 44, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L44" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L44" } ], "type": { @@ -51505,7 +51505,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 83, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L83" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L83" } ], "type": { @@ -51547,7 +51547,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 64, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L64" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L64" } ], "type": { @@ -51579,7 +51579,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 36, "character": 9, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L36" } ] } @@ -51614,7 +51614,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L32" } ], "type": { @@ -51639,7 +51639,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 33, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L33" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L33" } ], "type": { @@ -51662,7 +51662,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 32, "character": 7, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L32" } ] } @@ -51681,7 +51681,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 90, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L90" } ], "type": { @@ -51722,7 +51722,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 94, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L94" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L94" } ], "type": { @@ -51756,7 +51756,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 98, "character": 4, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L98" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L98" } ], "type": { @@ -51791,7 +51791,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 90, "character": 11, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L90" } ] } @@ -51818,7 +51818,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 88, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L88" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L88" } ], "type": { @@ -51841,7 +51841,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 89, "character": 2, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L89" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L89" } ], "type": { @@ -51866,7 +51866,7 @@ "fileName": "packages/core/supabase-js/src/lib/types.ts", "line": 28, "character": 48, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/lib/types.ts#L28" } ] } @@ -52659,7 +52659,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 35, "character": 13, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L35" } ], "signatures": [ @@ -52674,7 +52674,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 35, "character": 28, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L35" } ], "typeParameters": [ @@ -52722,7 +52722,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 39, "character": 8, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L39" } ], "type": { @@ -52742,7 +52742,7 @@ "fileName": "packages/core/supabase-js/src/index.ts", "line": 39, "character": 6, - "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39" + "url": "https://github.com/supabase/supabase-js/blob/c7d44ad47a14c4690ef7dea3b3062c88b3b8c51f/packages/core/supabase-js/src/index.ts#L39" } ] } diff --git a/apps/docs/spec/supabase_js_v2.yml b/apps/docs/spec/supabase_js_v2.yml index cd142fc4473e1..71a3b40748605 100644 --- a/apps/docs/spec/supabase_js_v2.yml +++ b/apps/docs/spec/supabase_js_v2.yml @@ -7502,21 +7502,21 @@ functions: title: 'Overview' notes: | This section contains methods for working with Analytics Buckets. - - id: storageanalyticsclient-createbucket + - id: storageanalytics-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 + - id: storageanalytics-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 + - id: storageanalytics-deletebucket title: Delete an analytics bucket $ref: '@supabase/storage-js.packages/StorageAnalyticsClient.default.deleteBucket' notes: | @@ -7961,131 +7961,91 @@ functions: 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: create-bucket + $ref: '@supabase/storage-js.index.StorageClient.createBucket' - - id: vectorbucketapi-createbucket - title: VectorBucketApi.createBucket() - $ref: '@supabase/storage-js.VectorBucketApi.createBucket' + - id: delete-bucket + $ref: '@supabase/storage-js.index.StorageClient.deleteBucket' - - id: vectorbucketapi-deletebucket - title: VectorBucketApi.deleteBucket() - $ref: '@supabase/storage-js.VectorBucketApi.deleteBucket' + - id: empty-bucket + $ref: '@supabase/storage-js.index.StorageClient.emptyBucket' - - id: vectorbucketapi-getbucket - title: VectorBucketApi.getBucket() - $ref: '@supabase/storage-js.VectorBucketApi.getBucket' + - id: get-bucket + $ref: '@supabase/storage-js.index.StorageClient.getBucket' - - id: vectorbucketapi-listbuckets - title: VectorBucketApi.listBuckets() - $ref: '@supabase/storage-js.VectorBucketApi.listBuckets' + - id: list-buckets + $ref: '@supabase/storage-js.index.StorageClient.listBuckets' - - id: vectorbucketapi-throwonerror - title: VectorBucketApi.throwOnError() - $ref: '@supabase/storage-js.VectorBucketApi.throwOnError' + - id: update-bucket + $ref: '@supabase/storage-js.index.StorageClient.updateBucket' - - id: vectorbucketscope-createindex - title: VectorBucketScope.createIndex() - $ref: '@supabase/storage-js.VectorBucketScope.createIndex' + - id: storagevectors-create-bucket + $ref: '@supabase/storage-js.index.StorageVectorsClient.createBucket' - - id: vectorbucketscope-deleteindex - title: VectorBucketScope.deleteIndex() - $ref: '@supabase/storage-js.VectorBucketScope.deleteIndex' + - id: storagevectors-delete-bucket + $ref: '@supabase/storage-js.index.StorageVectorsClient.deleteBucket' - - id: vectorbucketscope-getindex - title: VectorBucketScope.getIndex() - $ref: '@supabase/storage-js.VectorBucketScope.getIndex' + - id: storagevectors-get-bucket + $ref: '@supabase/storage-js.index.StorageVectorsClient.getBucket' - - id: vectorbucketscope-listindexes - title: VectorBucketScope.listIndexes() - $ref: '@supabase/storage-js.VectorBucketScope.listIndexes' + - id: storagevectors-list-buckets + $ref: '@supabase/storage-js.index.StorageVectorsClient.listBuckets' - - 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: storagevectors-from + $ref: '@supabase/storage-js.StorageVectorsClient.from' - - id: vectordataapi-getvectors - title: VectorDataApi.getVectors() - $ref: '@supabase/storage-js.VectorDataApi.getVectors' + - id: vectorbucket-index + $ref: '@supabase/storage-js.index.VectorBucketScope.index' - - id: vectordataapi-listvectors - title: VectorDataApi.listVectors() - $ref: '@supabase/storage-js.VectorDataApi.listVectors' + - id: storagefile-exists + $ref: '@supabase/storage-js.packages/StorageFileApi.default.exists' - - id: vectordataapi-putvectors - title: VectorDataApi.putVectors() - $ref: '@supabase/storage-js.VectorDataApi.putVectors' + - id: storagefile-info + $ref: '@supabase/storage-js.packages/StorageFileApi.default.info' - - id: vectordataapi-queryvectors - title: VectorDataApi.queryVectors() - $ref: '@supabase/storage-js.VectorDataApi.queryVectors' + - id: storagefile-list-v2 + $ref: '@supabase/storage-js.packages/StorageFileApi.default.listV2' - - id: vectordataapi-throwonerror - title: VectorDataApi.throwOnError() - $ref: '@supabase/storage-js.VectorDataApi.throwOnError' + - id: storagefile-to-base64 + $ref: '@supabase/storage-js.packages/StorageFileApi.default.toBase64' - - id: vector-index + - id: vector-buckets title: 'Overview' notes: | - This section contains methods for working with Vector Index. - - id: vectorindexapi-createindex - title: VectorIndexApi.createIndex() - $ref: '@supabase/storage-js.VectorIndexApi.createIndex' + This section contains methods for working with Vector Buckets. - - id: vectorindexapi-deleteindex - title: VectorIndexApi.deleteIndex() - $ref: '@supabase/storage-js.VectorIndexApi.deleteIndex' + - id: vectorbucket-createindex + title: VectorBucketScope.createIndex() + $ref: '@supabase/storage-js.VectorBucketScope.createIndex' - - id: vectorindexapi-getindex - title: VectorIndexApi.getIndex() - $ref: '@supabase/storage-js.VectorIndexApi.getIndex' + - id: vectorbucket-deleteindex + title: VectorBucketScope.deleteIndex() + $ref: '@supabase/storage-js.VectorBucketScope.deleteIndex' - - id: vectorindexapi-listindexes - title: VectorIndexApi.listIndexes() - $ref: '@supabase/storage-js.VectorIndexApi.listIndexes' + - id: vectorbucket-getindex + title: VectorBucketScope.getIndex() + $ref: '@supabase/storage-js.VectorBucketScope.getIndex' - - id: vectorindexapi-throwonerror - title: VectorIndexApi.throwOnError() - $ref: '@supabase/storage-js.VectorIndexApi.throwOnError' + - id: vectorbucket-listindexes + title: VectorBucketScope.listIndexes() + $ref: '@supabase/storage-js.VectorBucketScope.listIndexes' - - id: vectorindexscope-deletevectors - title: VectorIndexScope.deleteVectors() + - id: vectorindex-deletevectors $ref: '@supabase/storage-js.VectorIndexScope.deleteVectors' - - id: vectorindexscope-getvectors - title: VectorIndexScope.getVectors() + - id: vectorindex-getvectors $ref: '@supabase/storage-js.VectorIndexScope.getVectors' - - id: vectorindexscope-listvectors - title: VectorIndexScope.listVectors() + - id: vectorindex-listvectors $ref: '@supabase/storage-js.VectorIndexScope.listVectors' - - id: vectorindexscope-putvectors - title: VectorIndexScope.putVectors() + - id: vectorindex-putvectors $ref: '@supabase/storage-js.VectorIndexScope.putVectors' - - id: vectorindexscope-queryvectors - title: VectorIndexScope.queryVectors() + - id: vectorindex-queryvectors $ref: '@supabase/storage-js.VectorIndexScope.queryVectors' - id: realtime-js-realtimechannel-constructor @@ -8147,25 +8107,6 @@ functions: - 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() diff --git a/apps/docs/spec/transforms/api_v1_openapi_deparsed.json b/apps/docs/spec/transforms/api_v1_openapi_deparsed.json index 2842cf87d5198..e816aeb5ebd76 100644 --- a/apps/docs/spec/transforms/api_v1_openapi_deparsed.json +++ b/apps/docs/spec/transforms/api_v1_openapi_deparsed.json @@ -6078,6 +6078,91 @@ } ], "x-oauth-scope": "projects:write" + }, + "patch": { + "operationId": "v1-update-a-project", + "parameters": [ + { + "name": "ref", + "required": true, + "in": "path", + "description": "Project ref", + "schema": { + "minLength": 20, + "maxLength": 20, + "pattern": "^[a-z]+$", + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "type": "string", + "minLength": 1, + "maxLength": 256 + } + }, + "required": ["name"] + } + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "ref": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": ["id", "ref", "name"] + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden action" + }, + "429": { + "description": "Rate limit exceeded" + }, + "500": { + "description": "Failed to update project" + } + }, + "security": [ + { + "bearer": [] + } + ], + "summary": "Updates the given project", + "tags": ["Projects"], + "x-badges": [ + { + "name": "OAuth scope: projects:write", + "position": "after" + } + ], + "x-oauth-scope": "projects:write" } }, "/v1/projects/{ref}/secrets": { @@ -8440,9 +8525,38 @@ "properties": { "enabled": { "type": "boolean" + }, + "maxNamespaces": { + "type": "integer", + "minimum": 0 + }, + "maxTables": { + "type": "integer", + "minimum": 0 + }, + "maxCatalogs": { + "type": "integer", + "minimum": 0 } }, - "required": ["enabled"] + "required": ["enabled", "maxNamespaces", "maxTables", "maxCatalogs"] + }, + "vectorBuckets": { + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + }, + "maxBuckets": { + "type": "integer", + "minimum": 0 + }, + "maxIndexes": { + "type": "integer", + "minimum": 0 + } + }, + "required": ["enabled", "maxBuckets", "maxIndexes"] } }, "required": ["imageTransformation", "s3Protocol"] @@ -8564,9 +8678,38 @@ "properties": { "enabled": { "type": "boolean" + }, + "maxNamespaces": { + "type": "integer", + "minimum": 0 + }, + "maxTables": { + "type": "integer", + "minimum": 0 + }, + "maxCatalogs": { + "type": "integer", + "minimum": 0 } }, - "required": ["enabled"] + "required": ["enabled", "maxNamespaces", "maxTables", "maxCatalogs"] + }, + "vectorBuckets": { + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + }, + "maxBuckets": { + "type": "integer", + "minimum": 0 + }, + "maxIndexes": { + "type": "integer", + "minimum": 0 + } + }, + "required": ["enabled", "maxBuckets", "maxIndexes"] } }, "required": ["imageTransformation", "s3Protocol"] @@ -9347,6 +9490,11 @@ "type": "integer", "nullable": true }, + "db_max_pool_size_unit": { + "type": "string", + "enum": ["connections", "percent"], + "nullable": true + }, "disable_signup": { "type": "boolean", "nullable": true @@ -10238,6 +10386,7 @@ "required": [ "api_max_request_duration", "db_max_pool_size", + "db_max_pool_size_unit", "disable_signup", "external_anonymous_users_enabled", "external_apple_additional_client_ids", @@ -11394,6 +11543,11 @@ "type": "integer", "nullable": true }, + "db_max_pool_size_unit": { + "type": "string", + "enum": ["connections", "percent"], + "nullable": true + }, "api_max_request_duration": { "type": "integer", "nullable": true @@ -11446,7 +11600,8 @@ "type": "string", "nullable": true } - } + }, + "required": ["db_max_pool_size_unit"] } } } @@ -11467,6 +11622,11 @@ "type": "integer", "nullable": true }, + "db_max_pool_size_unit": { + "type": "string", + "enum": ["connections", "percent"], + "nullable": true + }, "disable_signup": { "type": "boolean", "nullable": true @@ -12358,6 +12518,7 @@ "required": [ "api_max_request_duration", "db_max_pool_size", + "db_max_pool_size_unit", "disable_signup", "external_anonymous_users_enabled", "external_apple_additional_client_ids", @@ -12612,6 +12773,240 @@ "x-oauth-scope": "auth:write" } }, + "/v1/projects/{ref}/config/realtime": { + "get": { + "operationId": "v1-get-realtime-config", + "parameters": [ + { + "name": "ref", + "required": true, + "in": "path", + "description": "Project ref", + "schema": { + "minLength": 20, + "maxLength": 20, + "pattern": "^[a-z]+$", + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Gets project's realtime configuration", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "private_only": { + "type": "boolean", + "nullable": true, + "description": "Whether to only allow private channels" + }, + "connection_pool": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "nullable": true, + "description": "Sets connection pool size for Realtime Authorization" + }, + "max_concurrent_users": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "nullable": true, + "description": "Sets maximum number of concurrent users rate limit" + }, + "max_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "nullable": true, + "description": "Sets maximum number of events per second rate per channel limit" + }, + "max_bytes_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 10000000, + "nullable": true, + "description": "Sets maximum number of bytes per second rate per channel limit" + }, + "max_channels_per_client": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "nullable": true, + "description": "Sets maximum number of channels per client rate limit" + }, + "max_joins_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "nullable": true, + "description": "Sets maximum number of joins per second rate limit" + }, + "max_presence_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "nullable": true, + "description": "Sets maximum number of presence events per second rate limit" + }, + "max_payload_size_in_kb": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "nullable": true, + "description": "Sets maximum number of payload size in KB rate limit" + }, + "suspend": { + "type": "boolean", + "nullable": true, + "description": "Whether to suspend realtime" + } + }, + "required": [ + "private_only", + "connection_pool", + "max_concurrent_users", + "max_events_per_second", + "max_bytes_per_second", + "max_channels_per_client", + "max_joins_per_second", + "max_presence_events_per_second", + "max_payload_size_in_kb", + "suspend" + ] + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden action" + }, + "429": { + "description": "Rate limit exceeded" + } + }, + "security": [ + { + "bearer": [] + } + ], + "summary": "Gets realtime configuration", + "tags": ["Realtime Config"] + }, + "patch": { + "operationId": "v1-update-realtime-config", + "parameters": [ + { + "name": "ref", + "required": true, + "in": "path", + "description": "Project ref", + "schema": { + "minLength": 20, + "maxLength": 20, + "pattern": "^[a-z]+$", + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "private_only": { + "type": "boolean", + "description": "Whether to only allow private channels" + }, + "connection_pool": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "description": "Sets connection pool size for Realtime Authorization" + }, + "max_concurrent_users": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "description": "Sets maximum number of concurrent users rate limit" + }, + "max_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "description": "Sets maximum number of events per second rate per channel limit" + }, + "max_bytes_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 10000000, + "description": "Sets maximum number of bytes per second rate per channel limit" + }, + "max_channels_per_client": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "description": "Sets maximum number of channels per client rate limit" + }, + "max_joins_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "description": "Sets maximum number of joins per second rate limit" + }, + "max_presence_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "description": "Sets maximum number of presence events per second rate limit" + }, + "max_payload_size_in_kb": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "description": "Sets maximum number of payload size in KB rate limit" + }, + "suspend": { + "type": "boolean", + "description": "Whether to suspend realtime" + } + }, + "additionalProperties": false + } + } + } + }, + "responses": { + "204": { + "description": "" + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden action" + }, + "429": { + "description": "Rate limit exceeded" + } + }, + "security": [ + { + "bearer": [] + } + ], + "summary": "Updates realtime configuration", + "tags": ["Realtime Config"] + } + }, "/v1/projects/{ref}/config/auth/third-party-auth": { "post": { "operationId": "v1-create-project-tpa-integration", @@ -15305,16 +15700,90 @@ "name": { "type": "string" }, - "rollback": { - "type": "string" + "rollback": { + "type": "string" + } + } + } + } + } + }, + "responses": { + "200": { + "description": "" + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden action" + }, + "429": { + "description": "Rate limit exceeded" + }, + "500": { + "description": "Failed to patch database migration" + } + }, + "security": [ + { + "bearer": [] + } + ], + "summary": "[Beta] Patch an existing entry in migration history", + "tags": ["Database"], + "x-badges": [ + { + "name": "OAuth scope: database:write", + "position": "after" + } + ], + "x-oauth-scope": "database:write" + } + }, + "/v1/projects/{ref}/database/query": { + "post": { + "operationId": "v1-run-a-query", + "parameters": [ + { + "name": "ref", + "required": true, + "in": "path", + "description": "Project ref", + "schema": { + "minLength": 20, + "maxLength": 20, + "pattern": "^[a-z]+$", + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "query": { + "type": "string", + "minLength": 1 + }, + "parameters": { + "type": "array", + "items": {} + }, + "read_only": { + "type": "boolean" } - } + }, + "required": ["query"] } } } }, "responses": { - "200": { + "201": { "description": "" }, "401": { @@ -15327,7 +15796,7 @@ "description": "Rate limit exceeded" }, "500": { - "description": "Failed to patch database migration" + "description": "Failed to run sql query" } }, "security": [ @@ -15335,7 +15804,7 @@ "bearer": [] } ], - "summary": "[Beta] Patch an existing entry in migration history", + "summary": "[Beta] Run sql query", "tags": ["Database"], "x-badges": [ { @@ -15346,9 +15815,10 @@ "x-oauth-scope": "database:write" } }, - "/v1/projects/{ref}/database/query": { + "/v1/projects/{ref}/database/query/read-only": { "post": { - "operationId": "v1-run-a-query", + "description": "All entity references must be schema qualified.", + "operationId": "v1-read-only-query", "parameters": [ { "name": "ref", @@ -15377,9 +15847,6 @@ "parameters": { "type": "array", "items": {} - }, - "read_only": { - "type": "boolean" } }, "required": ["query"] @@ -15401,7 +15868,7 @@ "description": "Rate limit exceeded" }, "500": { - "description": "Failed to run sql query" + "description": "Failed to run read-only sql query" } }, "security": [ @@ -15409,15 +15876,15 @@ "bearer": [] } ], - "summary": "[Beta] Run sql query", + "summary": "[Beta] Run a sql query as supabase_read_only_user", "tags": ["Database"], "x-badges": [ { - "name": "OAuth scope: database:write", + "name": "OAuth scope: database:read", "position": "after" } ], - "x-oauth-scope": "database:write" + "x-oauth-scope": "database:read" } }, "/v1/projects/{ref}/database/webhooks/enable": { @@ -15555,6 +16022,86 @@ "x-oauth-scope": "projects:read" } }, + "/v1/projects/{ref}/database/password": { + "patch": { + "operationId": "v1-update-database-password", + "parameters": [ + { + "name": "ref", + "required": true, + "in": "path", + "description": "Project ref", + "schema": { + "minLength": 20, + "maxLength": 20, + "pattern": "^[a-z]+$", + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "password": { + "type": "string", + "minLength": 4 + } + }, + "required": ["password"] + } + } + } + }, + "responses": { + "200": { + "description": "", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + }, + "required": ["message"] + } + } + } + }, + "401": { + "description": "Unauthorized" + }, + "403": { + "description": "Forbidden action" + }, + "429": { + "description": "Rate limit exceeded" + }, + "500": { + "description": "Failed to update database password" + } + }, + "security": [ + { + "bearer": [] + } + ], + "summary": "Updates the database password", + "tags": ["Database"], + "x-badges": [ + { + "name": "OAuth scope: database:write", + "position": "after" + } + ], + "x-oauth-scope": "database:write" + } + }, "/v1/projects/{ref}/database/jit": { "get": { "description": "Mappings of roles a user can assume in the project database", @@ -21233,6 +21780,17 @@ }, "required": ["id", "ref", "name"] }, + "V1UpdateProjectBody": { + "type": "object", + "properties": { + "name": { + "type": "string", + "minLength": 1, + "maxLength": 256 + } + }, + "required": ["name"] + }, "SecretResponse": { "type": "object", "properties": { @@ -21971,9 +22529,38 @@ "properties": { "enabled": { "type": "boolean" + }, + "maxNamespaces": { + "type": "integer", + "minimum": 0 + }, + "maxTables": { + "type": "integer", + "minimum": 0 + }, + "maxCatalogs": { + "type": "integer", + "minimum": 0 + } + }, + "required": ["enabled", "maxNamespaces", "maxTables", "maxCatalogs"] + }, + "vectorBuckets": { + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + }, + "maxBuckets": { + "type": "integer", + "minimum": 0 + }, + "maxIndexes": { + "type": "integer", + "minimum": 0 } }, - "required": ["enabled"] + "required": ["enabled", "maxBuckets", "maxIndexes"] } }, "required": ["imageTransformation", "s3Protocol"] @@ -22051,9 +22638,38 @@ "properties": { "enabled": { "type": "boolean" + }, + "maxNamespaces": { + "type": "integer", + "minimum": 0 + }, + "maxTables": { + "type": "integer", + "minimum": 0 + }, + "maxCatalogs": { + "type": "integer", + "minimum": 0 + } + }, + "required": ["enabled", "maxNamespaces", "maxTables", "maxCatalogs"] + }, + "vectorBuckets": { + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + }, + "maxBuckets": { + "type": "integer", + "minimum": 0 + }, + "maxIndexes": { + "type": "integer", + "minimum": 0 } }, - "required": ["enabled"] + "required": ["enabled", "maxBuckets", "maxIndexes"] } }, "required": ["imageTransformation", "s3Protocol"] @@ -22406,6 +23022,11 @@ "type": "integer", "nullable": true }, + "db_max_pool_size_unit": { + "type": "string", + "enum": ["connections", "percent"], + "nullable": true + }, "disable_signup": { "type": "boolean", "nullable": true @@ -23297,6 +23918,7 @@ "required": [ "api_max_request_duration", "db_max_pool_size", + "db_max_pool_size_unit", "disable_signup", "external_anonymous_users_enabled", "external_apple_additional_client_ids", @@ -24402,6 +25024,11 @@ "type": "integer", "nullable": true }, + "db_max_pool_size_unit": { + "type": "string", + "enum": ["connections", "percent"], + "nullable": true + }, "api_max_request_duration": { "type": "integer", "nullable": true @@ -24454,7 +25081,153 @@ "type": "string", "nullable": true } - } + }, + "required": ["db_max_pool_size_unit"] + }, + "RealtimeConfigResponse": { + "type": "object", + "properties": { + "private_only": { + "type": "boolean", + "nullable": true, + "description": "Whether to only allow private channels" + }, + "connection_pool": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "nullable": true, + "description": "Sets connection pool size for Realtime Authorization" + }, + "max_concurrent_users": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "nullable": true, + "description": "Sets maximum number of concurrent users rate limit" + }, + "max_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "nullable": true, + "description": "Sets maximum number of events per second rate per channel limit" + }, + "max_bytes_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 10000000, + "nullable": true, + "description": "Sets maximum number of bytes per second rate per channel limit" + }, + "max_channels_per_client": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "nullable": true, + "description": "Sets maximum number of channels per client rate limit" + }, + "max_joins_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "nullable": true, + "description": "Sets maximum number of joins per second rate limit" + }, + "max_presence_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "nullable": true, + "description": "Sets maximum number of presence events per second rate limit" + }, + "max_payload_size_in_kb": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "nullable": true, + "description": "Sets maximum number of payload size in KB rate limit" + }, + "suspend": { + "type": "boolean", + "nullable": true, + "description": "Whether to suspend realtime" + } + }, + "required": [ + "private_only", + "connection_pool", + "max_concurrent_users", + "max_events_per_second", + "max_bytes_per_second", + "max_channels_per_client", + "max_joins_per_second", + "max_presence_events_per_second", + "max_payload_size_in_kb", + "suspend" + ] + }, + "UpdateRealtimeConfigBody": { + "type": "object", + "properties": { + "private_only": { + "type": "boolean", + "description": "Whether to only allow private channels" + }, + "connection_pool": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "description": "Sets connection pool size for Realtime Authorization" + }, + "max_concurrent_users": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "description": "Sets maximum number of concurrent users rate limit" + }, + "max_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 50000, + "description": "Sets maximum number of events per second rate per channel limit" + }, + "max_bytes_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 10000000, + "description": "Sets maximum number of bytes per second rate per channel limit" + }, + "max_channels_per_client": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "description": "Sets maximum number of channels per client rate limit" + }, + "max_joins_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "description": "Sets maximum number of joins per second rate limit" + }, + "max_presence_events_per_second": { + "type": "integer", + "minimum": 1, + "maximum": 5000, + "description": "Sets maximum number of presence events per second rate limit" + }, + "max_payload_size_in_kb": { + "type": "integer", + "minimum": 1, + "maximum": 10000, + "description": "Sets maximum number of payload size in KB rate limit" + }, + "suspend": { + "type": "boolean", + "description": "Whether to suspend realtime" + } + }, + "additionalProperties": false }, "CreateThirdPartyAuthBody": { "type": "object", @@ -25310,6 +26083,20 @@ }, "required": ["query"] }, + "V1ReadOnlyQueryBody": { + "type": "object", + "properties": { + "query": { + "type": "string", + "minLength": 1 + }, + "parameters": { + "type": "array", + "items": {} + } + }, + "required": ["query"] + }, "GetProjectDbMetadataResponse": { "type": "object", "properties": { @@ -25342,6 +26129,25 @@ }, "required": ["databases"] }, + "V1UpdatePasswordBody": { + "type": "object", + "properties": { + "password": { + "type": "string", + "minLength": 4 + } + }, + "required": ["password"] + }, + "V1UpdatePasswordResponse": { + "type": "object", + "properties": { + "message": { + "type": "string" + } + }, + "required": ["message"] + }, "JitAccessResponse": { "type": "object", "properties": { diff --git a/apps/studio/components/interfaces/Auth/OAuthApps/CreateOAuthAppSheet.tsx b/apps/studio/components/interfaces/Auth/OAuthApps/CreateOAuthAppSheet.tsx deleted file mode 100644 index 3eae0ae5c5b14..0000000000000 --- a/apps/studio/components/interfaces/Auth/OAuthApps/CreateOAuthAppSheet.tsx +++ /dev/null @@ -1,306 +0,0 @@ -import { zodResolver } from '@hookform/resolvers/zod' -import type { CreateOAuthClientParams, OAuthClient } from '@supabase/supabase-js' -import { Plus, Trash2, X } from 'lucide-react' -import Link from 'next/link' -import { useEffect } from 'react' -import { useFieldArray, useForm } from 'react-hook-form' -import { toast } from 'sonner' -import * as z from 'zod' - -import { useParams } from 'common' -import { useOAuthServerAppCreateMutation } from 'data/oauth-server-apps/oauth-server-app-create-mutation' -import { useSupabaseClientQuery } from 'hooks/use-supabase-client-query' -import { - Button, - FormControl_Shadcn_, - FormDescription_Shadcn_, - FormField_Shadcn_, - FormItem_Shadcn_, - FormLabel_Shadcn_, - FormMessage_Shadcn_, - Form_Shadcn_, - Input_Shadcn_, - Separator, - Sheet, - SheetClose, - SheetContent, - SheetFooter, - SheetHeader, - SheetSection, - SheetTitle, - Switch, - cn, -} from 'ui' -import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout' - -interface CreateOAuthAppSheetProps { - visible: boolean - onSuccess: (app: OAuthClient) => void - onCancel: () => void -} - -const FormSchema = z.object({ - name: z - .string() - .min(1, 'Please provide a name for your OAuth app') - .max(100, 'Name must be less than 100 characters'), - type: z.enum(['manual', 'dynamic']).default('manual'), - // scope: z.string().min(1, 'Please select a scope'), - redirect_uris: z - .object({ - value: z.string().trim().url('Please provide a valid URL'), - }) - .array() - .min(1, 'At least one redirect URI is required'), - is_public: z.boolean().default(false), -}) - -const FORM_ID = 'create-or-update-oauth-app-form' - -const initialValues = { - name: '', - type: 'manual' as const, - // scope: 'email', - redirect_uris: [{ value: '' }], - is_public: false, -} - -export const CreateOAuthAppSheet = ({ visible, onSuccess, onCancel }: CreateOAuthAppSheetProps) => { - const { ref: projectRef } = useParams() - - const form = useForm>({ - resolver: zodResolver(FormSchema), - defaultValues: initialValues, - }) - - const { - fields: redirectUriFields, - append: appendRedirectUri, - remove: removeRedirectUri, - } = useFieldArray({ - name: 'redirect_uris', - control: form.control, - }) - - const { data: supabaseClientData } = useSupabaseClientQuery({ projectRef }) - - const { mutateAsync: createOAuthApp, isPending: isCreating } = useOAuthServerAppCreateMutation({ - onSuccess: (data) => { - toast.success(`Successfully created OAuth app "${data.client_name}"`) - onSuccess(data) - }, - onError: (error) => { - toast.error(error.message) - }, - }) - - useEffect(() => { - if (visible) { - form.reset(initialValues) - } - }, [visible]) - - const onSubmit = async (data: z.infer) => { - // Filter out empty redirect URIs - const validRedirectUris = data.redirect_uris - .map((uri) => uri.value.trim()) - .filter((uri) => uri !== '') - - const payload: CreateOAuthClientParams = { - client_name: data.name, - client_uri: '', - // scope: data.scope, - redirect_uris: validRedirectUris, - } - - createOAuthApp({ - projectRef, - supabaseClient: supabaseClientData?.supabaseClient, - ...payload, - }) - } - - const onClose = () => { - form.reset(initialValues) - onCancel() - } - - return ( - <> - onCancel()}> - - -
- - - Close - - Create a new OAuth app -
-
- - -
- ( - - - - - - )} - /> - - {/* ( - - Select the permissions your app will request from users.{' '} - - Learn more - - - } - className={'px-5'} - > - - - - - - - {OAUTH_APP_SCOPE_OPTIONS.map((scope) => ( - - {scope.name} - - ))} - - - - - )} - /> */} - -
- Redirect URIs - -
- {redirectUriFields.map((fieldItem, index) => ( - ( - -
- - { - inputField.onChange(e) - }} - /> - - {redirectUriFields.length > 1 && ( -
- -
- )} - /> - ))} -
-
- -
- - URLs where users will be redirected after authentication. - -
- - - ( - - If enabled, the Authorization Code with PKCE (Proof Key for Code Exchange) - flow can be used, particularly beneficial for applications that cannot - securely store Client Secrets, such as native and mobile apps.{' '} - - Learn more - - - } - className={'px-5'} - > - - - - - )} - /> - -
-
- - - - -
-
- - ) -} diff --git a/apps/studio/components/interfaces/Auth/OAuthApps/CreateOrUpdateOAuthAppSheet.tsx b/apps/studio/components/interfaces/Auth/OAuthApps/CreateOrUpdateOAuthAppSheet.tsx new file mode 100644 index 0000000000000..ba69df9be790a --- /dev/null +++ b/apps/studio/components/interfaces/Auth/OAuthApps/CreateOrUpdateOAuthAppSheet.tsx @@ -0,0 +1,535 @@ +import { zodResolver } from '@hookform/resolvers/zod' +import type { + CreateOAuthClientParams, + OAuthClient, + UpdateOAuthClientParams, +} from '@supabase/supabase-js' +import { Plus, Trash2, Upload, X } from 'lucide-react' +import Link from 'next/link' +import { type ChangeEvent, useEffect, useRef, useState } from 'react' +import { useFieldArray, useForm } from 'react-hook-form' +import { toast } from 'sonner' +import * as z from 'zod' + +import { useParams } from 'common' +import { useOAuthServerAppCreateMutation } from 'data/oauth-server-apps/oauth-server-app-create-mutation' +import { useOAuthServerAppRegenerateSecretMutation } from 'data/oauth-server-apps/oauth-server-app-regenerate-secret-mutation' +import { useOAuthServerAppUpdateMutation } from 'data/oauth-server-apps/oauth-server-app-update-mutation' +import { useSupabaseClientQuery } from 'hooks/use-supabase-client-query' +import { + Button, + FormControl_Shadcn_, + FormDescription_Shadcn_, + FormField_Shadcn_, + FormItem_Shadcn_, + FormLabel_Shadcn_, + FormMessage_Shadcn_, + Form_Shadcn_, + Input_Shadcn_, + Separator, + Sheet, + SheetClose, + SheetContent, + SheetFooter, + SheetHeader, + SheetSection, + SheetTitle, + Switch, + cn, +} from 'ui' +import ConfirmationModal from 'ui-patterns/Dialogs/ConfirmationModal' +import { Input } from 'ui-patterns/DataInputs/Input' +import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout' +import Panel from 'components/ui/Panel' + +interface CreateOrUpdateOAuthAppSheetProps { + visible: boolean + appToEdit?: OAuthClient + onSuccess: (app: OAuthClient) => void + onCancel: () => void +} + +const FormSchema = z.object({ + name: z + .string() + .min(1, 'Please provide a name for your OAuth app') + .max(100, 'Name must be less than 100 characters'), + type: z.enum(['manual', 'dynamic']).default('manual'), + redirect_uris: z + .object({ + value: z.string().trim().url('Please provide a valid URL'), + }) + .array() + .min(1, 'At least one redirect URI is required'), + client_type: z.enum(['public', 'confidential']).default('confidential'), + client_id: z.string().optional(), + client_secret: z.string().optional(), + logo_uri: z.string().optional(), +}) + +const FORM_ID = 'create-or-update-oauth-app-form' + +const initialValues = { + name: '', + type: 'manual' as const, + redirect_uris: [{ value: '' }], + client_type: 'confidential' as const, + client_id: '', + client_secret: '', + logo_uri: '', +} + +export const CreateOrUpdateOAuthAppSheet = ({ + visible, + appToEdit, + onSuccess, + onCancel, +}: CreateOrUpdateOAuthAppSheetProps) => { + const { ref: projectRef } = useParams() + const isEditMode = !!appToEdit + const [showRegenerateDialog, setShowRegenerateDialog] = useState(false) + const uploadButtonRef = useRef(null) + const [logoFile, setLogoFile] = useState() + const [logoUrl, setLogoUrl] = useState() + const [logoRemoved, setLogoRemoved] = useState(false) + const hasLogo = logoUrl !== undefined + const isPublicClient = appToEdit?.client_type === 'public' + + const form = useForm>({ + resolver: zodResolver(FormSchema), + defaultValues: initialValues, + }) + + const { + fields: redirectUriFields, + append: appendRedirectUri, + remove: removeRedirectUri, + } = useFieldArray({ + name: 'redirect_uris', + control: form.control, + }) + + const { data: supabaseClientData } = useSupabaseClientQuery({ projectRef }) + const { mutateAsync: createOAuthApp, isPending: isCreating } = useOAuthServerAppCreateMutation({ + onSuccess: (data) => { + toast.success(`Successfully created OAuth app "${data.client_name}"`) + onSuccess(data) + }, + onError: (error) => { + toast.error(error.message) + }, + }) + const { mutateAsync: updateOAuthApp, isPending: isUpdating } = useOAuthServerAppUpdateMutation({ + onSuccess: (data) => { + toast.success(`Successfully updated OAuth app "${data.client_name}"`) + onSuccess(data) + }, + onError: (error) => { + toast.error(error.message) + }, + }) + const { mutateAsync: regenerateSecret, isPending: isRegenerating } = + useOAuthServerAppRegenerateSecretMutation({ + onSuccess: (data) => { + if (data) { + toast.success(`Successfully regenerated client secret for "${appToEdit?.client_name}"`) + onSuccess(data) + setShowRegenerateDialog(false) + } + }, + onError: (error) => { + toast.error(error.message) + }, + }) + + useEffect(() => { + if (visible) { + setLogoFile(undefined) + setLogoRemoved(false) + if (appToEdit) { + form.reset({ + name: appToEdit.client_name, + type: 'manual' as const, + redirect_uris: + appToEdit.redirect_uris && appToEdit.redirect_uris.length > 0 + ? appToEdit.redirect_uris.map((uri) => ({ value: uri })) + : [{ value: '' }], + client_type: appToEdit.client_type, + client_id: appToEdit.client_id, + client_secret: '****************************************************************', + logo_uri: appToEdit.logo_uri || undefined, + }) + setLogoUrl(appToEdit.logo_uri || undefined) + } else { + form.reset(initialValues) + setLogoUrl(undefined) + } + } + }, [visible, appToEdit, form]) + + const onFileUpload = async (event: ChangeEvent) => { + event.persist() + const files = event.target.files + if (files && files.length > 0) { + const file = files[0] + setLogoFile(file) + setLogoUrl(URL.createObjectURL(file)) + setLogoRemoved(false) + event.target.value = '' + } + } + + const onSubmit = async (data: z.infer) => { + const validRedirectUris = data.redirect_uris + .map((uri) => uri.value.trim()) + .filter((uri) => uri !== '') + + let uploadedLogoUri: string | undefined = undefined + + if (logoRemoved) { + uploadedLogoUri = '' + } else if (logoFile) { + const reader = new FileReader() + uploadedLogoUri = await new Promise((resolve) => { + reader.onloadend = () => resolve(reader.result as string) + reader.readAsDataURL(logoFile) + }) + } else if (logoUrl) { + uploadedLogoUri = logoUrl + } + + if (isEditMode && appToEdit) { + const payload: UpdateOAuthClientParams = { + client_name: data.name, + redirect_uris: validRedirectUris, + logo_uri: uploadedLogoUri, + } + + updateOAuthApp({ + projectRef, + supabaseClient: supabaseClientData?.supabaseClient, + clientId: appToEdit.client_id, + ...payload, + }) + } else { + const payload: CreateOAuthClientParams & { logo_uri?: string; client_type?: string } = { + client_name: data.name, + client_uri: '', + client_type: data.client_type, + redirect_uris: validRedirectUris, + logo_uri: uploadedLogoUri || undefined, + } + + createOAuthApp({ + projectRef, + supabaseClient: supabaseClientData?.supabaseClient, + ...payload, + }) + } + } + + const onClose = () => { + form.reset(initialValues) + onCancel() + } + + const handleRegenerateSecret = () => { + setShowRegenerateDialog(true) + } + + const handleConfirmRegenerate = () => { + if (appToEdit?.client_id) { + regenerateSecret({ + projectRef, + supabaseClient: supabaseClientData?.supabaseClient, + clientId: appToEdit.client_id, + }) + } + } + + const handleUploadLogo = () => uploadButtonRef.current?.click() + const handleRemoveLogo = () => { + setLogoFile(undefined) + setLogoUrl(undefined) + setLogoRemoved(true) + } + + return ( + <> + onCancel()}> + + +
+ + + Close + + + {isEditMode ? 'Update OAuth app' : 'Create a new OAuth app'} + +
+
+ + +
+
+
+ ( + + + + + + )} + /> + ( + + +
+ +
+ + {hasLogo && ( +
+ +
+
+
+ )} + /> +
+
+ + {isEditMode && appToEdit && ( + <> + +
+ + + ( + + + {}} + onCopy={() => toast.success('Client ID copied to clipboard')} + /> + + + )} + /> + + {!isPublicClient && ( + <> + ( + + + {}} + /> + + + )} + /> + + + + )} + + +
+ + )} + +
+ Redirect URIs + +
+ {redirectUriFields.map((fieldItem, index) => ( + ( + +
+ + { + inputField.onChange(e) + }} + /> + + {redirectUriFields.length > 1 && ( +
+ +
+ )} + /> + ))} +
+
+ +
+ + URLs where users will be redirected after authentication. + +
+ + + ( + + If enabled, the Authorization Code with PKCE (Proof Key for Code Exchange) + flow can be used, particularly beneficial for applications that cannot + securely store Client Secrets, such as native and mobile apps. This cannot + be changed after creation.{' '} + + Learn more + + + } + className={'px-5'} + > + + + field.onChange(checked ? 'public' : 'confidential') + } + disabled={isEditMode} + /> + + + )} + /> + +
+
+ + + + +
+
+ + setShowRegenerateDialog(false)} + onConfirm={handleConfirmRegenerate} + > +

+ Are you sure you wish to regenerate the client secret for "{appToEdit?.client_name}"? + You'll need to update it in all applications that use it. This action cannot be undone. +

+
+ + ) +} diff --git a/apps/studio/components/interfaces/Auth/OAuthApps/NewOAuthAppBanner.tsx b/apps/studio/components/interfaces/Auth/OAuthApps/NewOAuthAppBanner.tsx index 9718ffcc6476a..15db25423170c 100644 --- a/apps/studio/components/interfaces/Auth/OAuthApps/NewOAuthAppBanner.tsx +++ b/apps/studio/components/interfaces/Auth/OAuthApps/NewOAuthAppBanner.tsx @@ -23,23 +23,23 @@ export const NewOAuthAppBanner = ({ oauthApp, onClose }: NewOAuthAppBannerProps) Do copy this client id and client secret and store it in a secure place - you will not be able to see it again.

-
+
{}} onCopy={() => toast.success('Client Id copied to clipboard')} />
-
+
{}} onCopy={() => toast.success('Client secret copied to clipboard')} @@ -51,7 +51,7 @@ export const NewOAuthAppBanner = ({ oauthApp, onClose }: NewOAuthAppBannerProps)
{
- - + +
Name Client ID - Type - Scope + Client Type + Registration Type Created - + +
+ - {oAuthApps.length === 0 && ( + {filteredOAuthApps.length === 0 && (

No OAuth apps found

)} - {oAuthApps.length > 0 && - oAuthApps.map((app) => ( + {filteredOAuthApps.length > 0 && + filteredOAuthApps.map((app) => ( - - {app.client_name} + + - + {app.client_id} - - {app.client_type === 'public' ? 'Public' : 'Private'} + + {app.client_type} - - {app.scope ? ( - {app.scope} - ) : ( - N/A - )} + + {app.registration_type} - + - -
+ +
- { + const isCreating = !appToEdit setShowCreateSheet(false) + setSelectedAppToEdit(null) setSelectedApp(undefined) - setNewOAuthApp(app) + // Only show banner for new apps or regenerated secrets, not for simple edits + if (isCreating || app.client_secret) { + setNewOAuthApp(app) + } }} onCancel={() => { setShowCreateSheet(false) + setSelectedAppToEdit(null) setSelectedApp(undefined) }} /> diff --git a/apps/studio/components/interfaces/Auth/OAuthApps/OAuthServerSettingsForm.tsx b/apps/studio/components/interfaces/Auth/OAuthApps/OAuthServerSettingsForm.tsx index 491804aff1207..611eeef749a1c 100644 --- a/apps/studio/components/interfaces/Auth/OAuthApps/OAuthServerSettingsForm.tsx +++ b/apps/studio/components/interfaces/Auth/OAuthApps/OAuthServerSettingsForm.tsx @@ -321,7 +321,7 @@ export const OAuthServerSettingsForm = () => { Enable dynamic OAuth app registration. Apps can be registered programmatically via APIs.{' '} { variant="warning" visible={showDynamicAppsConfirmation} size="large" - title="Enable dynamic client registration" - confirmLabel="Enable dynamic registration" + title="Enable dynamic OAuth app registration" + confirmLabel="Enable dynamic app registration" onConfirm={confirmDynamicApps} onCancel={cancelDynamicApps} alert={{ title: - 'By confirming, you acknowledge the risks and would like to move forward with enabling dynamic client registration.', + 'By confirming, you acknowledge the risks and would like to move forward with enabling dynamic OAuth app registration.', }} >

- Enabling dynamic client registration will open up a public API endpoint that anyone can - use to register OAuth applications with your app. This can be a security concern, as - attackers could register OAuth applications with legitimate-sounding names and send them - to your users for approval. + Dynamic OAuth apps (also known as dynamic client registration) exposes a public endpoint + allowing anyone to register OAuth clients. Bad actors could create malicious apps with + legitimate-sounding names to phish your users for authorization.

- If your users don't look carefully and accept, the attacker could potentially take over - the user's account. Attackers can also flood your application with thousands of OAuth - applications that cannot be attributed to anyone (as it's a public endpoint), and make it - difficult for you to find and shut them down, or even find legitimate ones. + You may also see spam registrations that are difficult to trace or moderate, making it + harder to identify trustworthy applications in your OAuth apps list.

- If dynamic client registration is enabled, the consent screen is forced to be enabled for - all OAuth flows and can no longer be disabled. Disabling the consent screen opens up a - CSRF vulnerability in your app. + Only enable this if you have a specific use case requiring programmatic client + registration and understand the security implications.

diff --git a/apps/studio/components/interfaces/Auth/OAuthApps/oauthApps.utils.ts b/apps/studio/components/interfaces/Auth/OAuthApps/oauthApps.utils.ts new file mode 100644 index 0000000000000..f1f6ad52c6e46 --- /dev/null +++ b/apps/studio/components/interfaces/Auth/OAuthApps/oauthApps.utils.ts @@ -0,0 +1,53 @@ +import type { OAuthClient } from '@supabase/supabase-js' + +export const OAUTH_APP_REGISTRATION_TYPE_OPTIONS = [ + { name: 'Manual', value: 'manual' }, + { name: 'Dynamic', value: 'dynamic' }, +] + +export const OAUTH_APP_CLIENT_TYPE_OPTIONS = [ + { name: 'Public', value: 'public' }, + { name: 'Confidential', value: 'confidential' }, +] + +interface FilterOAuthAppsParams { + apps: OAuthClient[] + searchString?: string + registrationTypes?: string[] + clientTypes?: string[] +} + +export function filterOAuthApps({ + apps, + searchString, + registrationTypes = [], + clientTypes = [], +}: FilterOAuthAppsParams): OAuthClient[] { + return apps.filter((app) => { + // Filter by search string + if (searchString) { + const searchLower = searchString.toLowerCase() + const matchesName = app.client_name.toLowerCase().includes(searchLower) + const matchesClientId = app.client_id.toLowerCase().includes(searchLower) + if (!matchesName && !matchesClientId) { + return false + } + } + + // Filter by registration type + if (registrationTypes.length > 0) { + if (!registrationTypes.includes(app.registration_type)) { + return false + } + } + + // Filter by client type + if (clientTypes.length > 0) { + if (!clientTypes.includes(app.client_type)) { + return false + } + } + + return true + }) +} diff --git a/apps/studio/components/ui/AIAssistantPanel/AIAssistant.tsx b/apps/studio/components/ui/AIAssistantPanel/AIAssistant.tsx index 3f353fb3712a6..6f0eb73e1af81 100644 --- a/apps/studio/components/ui/AIAssistantPanel/AIAssistant.tsx +++ b/apps/studio/components/ui/AIAssistantPanel/AIAssistant.tsx @@ -129,7 +129,7 @@ export const AIAssistant = ({ className }: AIAssistantProps) => { state.setContext({ projectRef: project?.ref, orgSlug: selectedOrganizationRef.current?.slug, - connectionString: project?.connectionString || undefined, + connectionString: project?.connectionString ?? '', }) }, [project?.ref, project?.connectionString, selectedOrganizationRef.current?.slug, state]) diff --git a/apps/studio/data/oauth-server-apps/oauth-server-app-update-mutation.ts b/apps/studio/data/oauth-server-apps/oauth-server-app-update-mutation.ts new file mode 100644 index 0000000000000..e3d6b7bd41ee5 --- /dev/null +++ b/apps/studio/data/oauth-server-apps/oauth-server-app-update-mutation.ts @@ -0,0 +1,60 @@ +import { UpdateOAuthClientParams, SupabaseClient } from '@supabase/supabase-js' +import { useMutation, useQueryClient } from '@tanstack/react-query' +import { toast } from 'sonner' + +import { handleError } from 'data/fetchers' +import type { ResponseError, UseCustomMutationOptions } from 'types' +import { oauthServerAppKeys } from './keys' + +export type OAuthServerAppUpdateVariables = UpdateOAuthClientParams & { + clientId: string + projectRef?: string + supabaseClient?: SupabaseClient +} + +export async function updateOAuthServerApp({ + clientId, + projectRef, + supabaseClient, + ...params +}: OAuthServerAppUpdateVariables) { + if (!projectRef) throw new Error('Project reference is required') + if (!supabaseClient) throw new Error('Supabase client is required') + + const { data, error } = await supabaseClient.auth.admin.oauth.updateClient(clientId, params) + + if (error) return handleError(error) + return data +} + +type OAuthAppUpdateData = Awaited> + +export const useOAuthServerAppUpdateMutation = ({ + onSuccess, + onError, + ...options +}: Omit< + UseCustomMutationOptions, + 'mutationFn' +> = {}) => { + const queryClient = useQueryClient() + + return useMutation({ + mutationFn: (vars) => updateOAuthServerApp(vars), + onSuccess: async (data, variables, context) => { + const { projectRef } = variables + await queryClient.invalidateQueries({ + queryKey: oauthServerAppKeys.list(projectRef), + }) + await onSuccess?.(data, variables, context) + }, + onError: async (data, variables, context) => { + if (onError === undefined) { + toast.error(`Failed to update OAuth Server application: ${data.message}`) + } else { + onError(data, variables, context) + } + }, + ...options, + }) +} diff --git a/apps/studio/hooks/misc/useCheckEntitlements.ts b/apps/studio/hooks/misc/useCheckEntitlements.ts index e82dbe0573c60..bcb7f9da6a947 100644 --- a/apps/studio/hooks/misc/useCheckEntitlements.ts +++ b/apps/studio/hooks/misc/useCheckEntitlements.ts @@ -6,6 +6,7 @@ import type { EntitlementConfig, EntitlementType, } from 'data/entitlements/entitlements-query' +import { IS_PLATFORM } from 'lib/constants' function isNumericConfig( config: EntitlementConfig, @@ -71,7 +72,7 @@ export function useCheckEntitlements( }) const finalOrgSlug = organizationSlug || selectedOrg?.slug - const enabled = options?.enabled !== false && !!finalOrgSlug + const enabled = IS_PLATFORM ? options?.enabled !== false && !!finalOrgSlug : false const { data: entitlementsData, @@ -100,7 +101,7 @@ export function useCheckEntitlements( : isSuccessEntitlements return { - hasAccess: entitlement?.hasAccess ?? false, + hasAccess: IS_PLATFORM ? entitlement?.hasAccess ?? false : true, isLoading, isSuccess, getEntitlementNumericValue: () => getEntitlementNumericValue(entitlement), diff --git a/apps/studio/pages/project/[ref]/auth/oauth-apps.tsx b/apps/studio/pages/project/[ref]/auth/oauth-apps.tsx index 9bef1ba0308a3..837250177bd75 100644 --- a/apps/studio/pages/project/[ref]/auth/oauth-apps.tsx +++ b/apps/studio/pages/project/[ref]/auth/oauth-apps.tsx @@ -3,16 +3,14 @@ import AuthLayout from 'components/layouts/AuthLayout/AuthLayout' import DefaultLayout from 'components/layouts/DefaultLayout' import { ScaffoldContainer, ScaffoldSection } from 'components/layouts/Scaffold' import { FormHeader } from 'components/ui/Forms/FormHeader' +import { DOCS_URL } from 'lib/constants' import type { NextPageWithLayout } from 'types' const OAuthApps: NextPageWithLayout = () => (
- +
diff --git a/apps/studio/pages/project/[ref]/auth/oauth-server.tsx b/apps/studio/pages/project/[ref]/auth/oauth-server.tsx index 4f70f8e00f275..d98b2c4fc5d5a 100644 --- a/apps/studio/pages/project/[ref]/auth/oauth-server.tsx +++ b/apps/studio/pages/project/[ref]/auth/oauth-server.tsx @@ -2,7 +2,9 @@ import { OAuthServerSettingsForm } from 'components/interfaces/Auth/OAuthApps/OA import AuthLayout from 'components/layouts/AuthLayout/AuthLayout' import DefaultLayout from 'components/layouts/DefaultLayout' import { PageLayout } from 'components/layouts/PageLayout/PageLayout' +import { DocsButton } from 'components/ui/DocsButton' import { ScaffoldContainer } from 'components/layouts/Scaffold' +import { DOCS_URL } from 'lib/constants' import type { NextPageWithLayout } from 'types' const ProvidersPage: NextPageWithLayout = () => { @@ -13,12 +15,15 @@ const ProvidersPage: NextPageWithLayout = () => { ) } +const secondaryActions = [] + ProvidersPage.getLayout = (page) => ( {page} diff --git a/apps/www/_events/2025-12-11__jsmonthly-x-svelte-community-xmas-meetup.mdx b/apps/www/_events/2025-12-11__jsmonthly-x-svelte-community-xmas-meetup.mdx new file mode 100644 index 0000000000000..88d661fe13c75 --- /dev/null +++ b/apps/www/_events/2025-12-11__jsmonthly-x-svelte-community-xmas-meetup.mdx @@ -0,0 +1,52 @@ +--- +title: JSMonthly x Svelte Community Xmas Meetup +description: >- + A Christmas-themed collaboration between JSMonthly and Svelte Community featuring + four technical presentations. Join us for talks on AI-assisted code modernization, + building AI-powered side projects, real-time geospatial features with Supabase, + and an AI bubble roundtable discussion. +type: meetup +cover_url: '' +onDemand: false +disable_page_build: true +link: + href: 'https://guild.host/events/jsmonthly-x-svelte-community-a7ui0j' + target: _blank +date: '2025-12-11T18:00:00.000+00:00' +timezone: Europe/London +duration: 3 hours +categories: + - meetup +hosts: + - name: JavaScript Monthly London + avatar_url: 'https://ik.imagekit.io/guild/prod/tr:w-40,h-40,dpr-3/9655fd1e-5c38-41df-872f-b89fc1cd62da.jpeg' + - name: Svelte Society London + avatar_url: '' +sponsors: + - name: Supabase + avatar_url: 'https://github.com/supabase.png' + - name: Storyblok + avatar_url: '' +agenda: + - time: '18:00' + title: 'Doors open' + - time: '18:45' + title: 'Introduction' + - time: '19:00' + title: 'Refactoring 370 Files in 11 Hours (thanks Claude)' + speaker: 'Scott Spence' + - time: '19:25' + title: 'Building an AI-powered side project during career transition' + speaker: 'Sol Lee' + - time: '19:40' + title: 'Break' + - time: '20:00' + title: 'Real-time geospatial features using Supabase' + speaker: 'Katerina Skroumpelou' + - time: '20:25' + title: 'AI Bubble Round Table' + speaker: 'Panel Discussion' + - time: '21:00' + title: 'Networking and pub gathering' +location: Foolproof, London +--- diff --git a/apps/www/_events/2025-12-11__xmas-jsmonthly-svelte-community.mdx b/apps/www/_events/2025-12-11__xmas-jsmonthly-svelte-community.mdx new file mode 100644 index 0000000000000..479e2b15713d9 --- /dev/null +++ b/apps/www/_events/2025-12-11__xmas-jsmonthly-svelte-community.mdx @@ -0,0 +1,48 @@ +--- +title: XMAS Special - JSMonthly x Svelte Community Meetup +description: >- + Christmas-themed collaboration between JSMonthly and Svelte Community featuring + technical presentations on AI-assisted code modernization by Scott Spence, + AI side projects by Sol Lee, multiplayer spatial Supabase session by + Katerina Skroumpelou, and an AI discussion roundtable with David Benson. + Sponsored by Supabase and Storyblok with refreshments provided. +type: meetup +cover_url: '' +onDemand: false +disable_page_build: true +link: + href: 'https://guild.host/events/xmas-special-jsmonthly-x0c1hz' + target: _blank +date: '2025-12-11T18:00:00.000+00:00' +timezone: Europe/London +duration: 3 hours +categories: + - meetup +hosts: + - name: Svelte Society - London + avatar_url: 'https://ik.imagekit.io/guild/prod/tr:w-40,h-40,dpr-3/64dea53b-4b35-44be-80bf-37efd8ee4fcc.png' +sponsors: + - name: Supabase + avatar_url: 'https://github.com/supabase.png' + - name: Storyblok + avatar_url: '' +agenda: + - time: '18:00' + title: 'Doors open' + - time: '19:00' + title: 'Refactoring 370 Files in 11 Hours (thanks Claude)' + speaker: 'Scott Spence' + - time: '19:25' + title: 'AI side projects' + speaker: 'Sol Lee' + - time: '20:00' + title: 'Multiplayer spatial Supabase session' + speaker: 'Katerina Skroumpelou' + - time: '20:25' + title: 'AI discussion roundtable' + speaker: 'David Benson' + - time: '21:00' + title: 'Networking at local pub' +location: Foolproof, London +attendees: 24 +--- diff --git a/apps/www/_events/2025-12-11__xmas-special-jsmonthly-svelte-meetup.mdx b/apps/www/_events/2025-12-11__xmas-special-jsmonthly-svelte-meetup.mdx new file mode 100644 index 0000000000000..17e0cb501e674 --- /dev/null +++ b/apps/www/_events/2025-12-11__xmas-special-jsmonthly-svelte-meetup.mdx @@ -0,0 +1,31 @@ +--- +title: XMAS Special - JSMonthly x Svelte Community Meetup +description: >- + Join the JavaScript Monthly London Meetup for a festive collaboration with + the Svelte Community. This private in-person meetup brings together developers + passionate about JavaScript applications, frameworks, ReactJS, and Single Page + Applications. Connect with 5,255+ members of the JavaScript community in London. +type: meetup +cover_url: '' +onDemand: false +disable_page_build: true +link: + href: 'https://www.meetup.com/javascript-monthly-london/events/312081066/' + target: _blank +date: '2025-12-11T18:00:00.000+00:00' +timezone: Europe/London +duration: 3 hours +categories: + - meetup +hosts: + - name: JavaScript Monthly London Meetup + avatar_url: 'https://secure.meetupstatic.com/photos/event/d/4/0/5/event_526794277.jpeg?w=256' +topics: + - JavaScript Applications + - Open Source + - ReactJS + - Single Page Applications + - Front-end Development +location: London, United Kingdom +attendees: 21 +--- diff --git a/supa-mdx-lint/Rule001HeadingCase.toml b/supa-mdx-lint/Rule001HeadingCase.toml index 5e559e3a6529f..e046d71d57f2e 100644 --- a/supa-mdx-lint/Rule001HeadingCase.toml +++ b/supa-mdx-lint/Rule001HeadingCase.toml @@ -135,6 +135,7 @@ may_uppercase = [ "Marketplace", "Mixpeek", "Mixpeek Embed", + "Model Context Protocol", "MySQL", "Navigable Small World", "Neon", @@ -146,6 +147,7 @@ may_uppercase = [ "Okta", "Ollama", "OpenAI", + "OpenID Connect", "Open ID Connect", "OrbStack", "OrioleDB", diff --git a/supa-mdx-lint/Rule003Spelling.toml b/supa-mdx-lint/Rule003Spelling.toml index bb972d24e2135..c8d32266ab1ee 100644 --- a/supa-mdx-lint/Rule003Spelling.toml +++ b/supa-mdx-lint/Rule003Spelling.toml @@ -22,6 +22,7 @@ allow_list = [ "[A-Za-z0-9_-]+(\\.[A-Z-a-z0-9_-]+)+(\\/[A-Za-z0-9_-]+)*", "[Aa]dd-ons?", "[Aa]llowlists?", + "[Aa]uditability", "[Aa]utomations?", "[Aa]utovacuum(s|ing|ed)?", "[Bb]ackend", @@ -181,6 +182,7 @@ allow_list = [ "Erlang", "ESZip", "Ethereum", + "FastMCP", "Fiberplane", "Figma", "Firestore", @@ -312,6 +314,7 @@ allow_list = [ "Uppy", "Upstash", "[Uu]pvote(s|d)?", + "userinfo", "VSCode", "Vecs", "Vercel", @@ -396,6 +399,7 @@ allow_list = [ "uBlock Origin", "unbilled", "untrusted", + "UserInfo", "vCPUs", "vecs", "vs",