Cloudflare/vectorize
@webframp/cloudflare/vectorizev2026.07.19.1
01README
Cloudflare Vectorize — vector indexes, insert/query/delete operations
02Release Notes
2026.07.19.1
Added: Initial code-generated release of @webframp/cloudflare/vectorize with 14 methods covering the Cloudflare vectorize API surface.
03Models
@webframp/cloudflare/vectorizev2026.07.19.1cloudflare/vectorize.ts
Global Arguments
| Argument | Type | Description |
|---|---|---|
| apiToken | string | Cloudflare API token |
| accountId | string | Cloudflare account ID |
fn list_vectorize_indexes()
List Vectorize Indexes
fn create_vectorize_index(config: unknown, description?: unknown, name: unknown)
Create Vectorize Index
| Argument | Type | Description |
|---|---|---|
| config | unknown | |
| description? | unknown | |
| name | unknown |
fn get_vectorize_index(index_name: string)
Get Vectorize Index
| Argument | Type | Description |
|---|---|---|
| index_name | string |
fn delete_vectorize_index(index_name: string)
Delete Vectorize Index
| Argument | Type | Description |
|---|---|---|
| index_name | string |
fn delete_vectors_by_id(index_name: string, ids?: array)
Delete Vectors By Identifier
| Argument | Type | Description |
|---|---|---|
| index_name | string | |
| ids? | array | A list of vector identifiers to delete from the index indicated by the path. |
fn get_vectors_by_id(index_name: string, ids?: array)
Get Vectors By Identifier
| Argument | Type | Description |
|---|---|---|
| index_name | string | |
| ids? | array | A list of vector identifiers to retrieve from the index indicated by the path. |
fn get_vectorize_index_info(index_name: string)
Get Vectorize Index Info
| Argument | Type | Description |
|---|---|---|
| index_name | string |
fn vectorize_insert_vector(index_name: string, unparsable_behavior?: enum)
Insert Vectors
| Argument | Type | Description |
|---|---|---|
| index_name | string | |
| unparsable_behavior? | enum |
fn list_vectors(index_name: string, count?: number, cursor?: string)
List Vectors
| Argument | Type | Description |
|---|---|---|
| index_name | string | |
| count? | number | |
| cursor? | string |
fn create_metadata_index(index_name: string, indexType: enum, propertyName: string)
Create Metadata Index
| Argument | Type | Description |
|---|---|---|
| index_name | string | |
| indexType | enum | Specifies the type of metadata property to index. |
| propertyName | string | Specifies the metadata property to index. |
fn delete_metadata_index(index_name: string, propertyName: string)
Delete Metadata Index
| Argument | Type | Description |
|---|---|---|
| index_name | string | |
| propertyName | string | Specifies the metadata property for which the index must be deleted. |
fn list_metadata_indexes(index_name: string)
List Metadata Indexes
| Argument | Type | Description |
|---|---|---|
| index_name | string |
fn create_vectorize_query_vector(index_name: string, filter?: object, returnMetadata?: enum, returnValues?: boolean, topK?: number, vector: array)
Query Vectors
| Argument | Type | Description |
|---|---|---|
| index_name | string | |
| filter? | object | A metadata filter expression used to limit nearest neighbor results. |
| returnMetadata? | enum | Whether to return no metadata, indexed metadata or all metadata associated wi... |
| returnValues? | boolean | Whether to return the values associated with the closest vectors. |
| topK? | number | The number of nearest neighbors to find. |
| vector | array | The search vector that will be used to find the nearest neighbors. |
fn vectorize_upsert_vector(index_name: string, unparsable_behavior?: enum)
Upsert Vectors
| Argument | Type | Description |
|---|---|---|
| index_name | string | |
| unparsable_behavior? | enum |
Resources
vectorize_indexes(infinite)— List Vectorize Indexes
vectorize_index(infinite)— Create Vectorize Index
delete_vectors_by_id(infinite)— Delete Vectors By Identifier
vectors_by_id(infinite)— Get Vectors By Identifier
vectorize_index_info(infinite)— Get Vectorize Index Info
vectorize_insert_vector(infinite)— Insert Vectors
list_vectors(infinite)— List Vectors
metadata_index(infinite)— Create Metadata Index
delete_metadata_index(infinite)— Delete Metadata Index
list_metadata_indexes(infinite)— List Metadata Indexes
vectorize_query_vector(infinite)— Query Vectors
vectorize_upsert_vector(infinite)— Upsert Vectors
04Stats
A
100 / 100
Downloads
0
Archive size
9.7 KB
- Has README or module doc2/2earned
- README has a code example1/1earned
- README is substantive1/1earned
- Most symbols documented1/1earned
- No slow types (deprecated)1/1earned
- Dependencies pass trust audit2/2earned
- Has description1/1earned
- Platform support declared (or universal)2/2earned
- License declared1/1earned
- Verified public repository2/2earned
05Platforms
06Labels