Preparing search index...

    Supabase project asset with connection credentials.

        const model = this.pluginSystem.findInterface(Editor.Model.IModel) as Editor.Model.IModel;
    const assetManager = model.project.assetManager;
    const supabaseProjects = assetManager.assets.filter(
    (a) => a.isOfType('SupabaseProject')
    ) as Editor.Assets.SupabaseProject[];

    // Each SupabaseProject exposes projectId, projectName, projectUrl, publicToken
    for (const proj of supabaseProjects) {
    const _config = {
    id: proj.projectId,
    name: proj.projectName,
    url: proj.projectUrl,
    token: proj.publicToken,
    };
    }

    console.log(`Found ${supabaseProjects.length} SupabaseProject(s)`);

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    cacheFile: Path

    Path to the cached asset file.

    Import metadata for the asset.

    id: Uuid

    The unique id of the entity.

    meta: Meta

    Metadata associated with this entity, providing access to its unique identifier and other descriptive properties.

    name: string

    The name of the asset.

    projectId: string

    Unique identifier of the Supabase project.

    projectName: string

    Display name of the Supabase project.

    projectUrl: string

    URL of the Supabase project API endpoint.

    publicToken: string

    Public API token for the Supabase project.

    type: string

    The entity's type.

    Methods

    • Returns the name of this object's type.

      Returns string

    • Returns true if the object is of the specified type.

      Parameters

      • type: string

      Returns boolean

    • Returns true if this object refers to the same instance as the given object.

      Parameters

      Returns boolean