UNPKG

@qdrant/js-client-rest

Version:

This repository contains the REST client for the [Qdrant](https://github.com/qdrant/qdrant) vector search engine.

84 lines (83 loc) 3.51 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createCollectionsApi = void 0; function createCollectionsApi(client) { return { /** * Get cluster information for a collection */ collectionClusterInfo: client.path('/collections/{collection_name}/cluster').method('get').create(), /** * Create new collection with given parameters */ createCollection: client.path('/collections/{collection_name}').method('put').create({ timeout: true }), /** * Create index for field in collection */ createFieldIndex: client .path('/collections/{collection_name}/index') .method('put') .create({ ordering: true, wait: true }), /** * Create new snapshot for a collection */ createSnapshot: client.path('/collections/{collection_name}/snapshots').method('post').create({ wait: true }), /** * Drop collection and all associated data */ deleteCollection: client.path('/collections/{collection_name}').method('delete').create({ timeout: true }), /** * Delete field index for collection */ deleteFieldIndex: client .path('/collections/{collection_name}/index/{field_name}') .method('delete') .create({ ordering: true, wait: true }), /** * Delete snapshot for a collection */ deleteSnapshots: client .path('/collections/{collection_name}/snapshots/{snapshot_name}') .method('delete') .create({ wait: true }), /** * Get detailed information about specified existing collection */ getCollection: client.path('/collections/{collection_name}').method('get').create(), /** * Get list of all aliases for a collection */ getCollectionAliases: client.path('/collections/{collection_name}/aliases').method('get').create(), /** * Get list name of all existing collections */ getCollections: client.path('/collections').method('get').create(), /** * Get list of all existing collections aliases */ getCollectionsAliases: client.path('/aliases').method('get').create(), /** * Check the existence of a collection */ collectionExists: client.path('/collections/{collection_name}/exists').method('get').create(), /** * Download specified snapshot from a collection as a file * @todo Fetcher needs to handle Blob for file downloads */ getSnapshot: client.path('/collections/{collection_name}/snapshots/{snapshot_name}').method('get').create(), /** * Get list of snapshots for a collection */ listSnapshots: client.path('/collections/{collection_name}/snapshots').method('get').create(), updateAliases: client.path('/collections/aliases').method('post').create({ timeout: true }), /** * Update parameters of the existing collection */ updateCollection: client.path('/collections/{collection_name}').method('patch').create({ timeout: true }), updateCollectionCluster: client .path('/collections/{collection_name}/cluster') .method('post') .create({ timeout: true }), }; } exports.createCollectionsApi = createCollectionsApi;