Type alias UpstashDeleteParams
 
UpstashDeleteParams: { 
    ids: string | string[]; 
    deleteAll?: never; 
} | { 
    deleteAll: boolean; 
    ids?: never; 
}
Type declaration
- 
ids: string | string[]
- 
OptionaldeleteAll?: never
 
Type declaration
- 
deleteAll: boolean
- 
Optionalids?: 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.