VectorIndex
import type { VectorIndex } from "https://esm.sh/@supabase/storage-js@2.89.0/dist/index.d.mts";Vector index configuration and metadata
interface VectorIndex {
creationTime?: number;
dataType: VectorDataType;
dimension: number;
distanceMetric: DistanceMetric;
indexName: string;
metadataConfiguration?: MetadataConfiguration;
vectorBucketName: string;
}