Type alias UpstashDeleteParams
UpstashDeleteParams: { 
    ids: string | string[]; 
    deleteAll?: never; 
} | { 
    deleteAll: boolean; 
    ids?: never; 
}
Type declaration
ids: string | string[]
Optional deleteAll?: never
Type declaration
deleteAll: boolean
Optional ids?: never
Type that defines the parameters for the delete method. It can either contain the target id(s) or the deleteAll config to reset all the vectors.