Skip to content

Commit

Permalink
Regenerate pinecone-generated-ts-fetch (#206)
Browse files Browse the repository at this point in the history
## Problem
There are some remaining OpenAPI changes that we want to pull in before
releasing.

## Solution
Regenerate `pinecone-generated-ts-fetch`.

## Type of Change
- [X] Non-code change (docs, etc)

## Test Plan
CI: Integration + Unit Tests
  • Loading branch information
austin-denoble authored Mar 6, 2024
1 parent b25a631 commit 3d5920a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pinecone-generated-ts-fetch/apis/DataPlaneApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export class DataPlaneApi extends runtime.BaseAPI {
}

/**
* The `fetch` operation looks up and returns vectors, by ID, from a single namespace. The returned vectors include the vector data and/or metadata. For guidance and examples, see [Fetch data](https://docs.pinecone.io/reference/fetch).
* The `fetch` operation looks up and returns vectors, by ID, from a single namespace. The returned vectors include the vector data and/or metadata. For guidance and examples, see [Fetch data](https://docs.pinecone.io/docs/fetch-data).
* Fetch vectors
*/
async fetchRaw(requestParameters: FetchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<FetchResponse>> {
Expand Down Expand Up @@ -285,7 +285,7 @@ export class DataPlaneApi extends runtime.BaseAPI {
}

/**
* The `fetch` operation looks up and returns vectors, by ID, from a single namespace. The returned vectors include the vector data and/or metadata. For guidance and examples, see [Fetch data](https://docs.pinecone.io/reference/fetch).
* The `fetch` operation looks up and returns vectors, by ID, from a single namespace. The returned vectors include the vector data and/or metadata. For guidance and examples, see [Fetch data](https://docs.pinecone.io/docs/fetch-data).
* Fetch vectors
*/
async fetch(requestParameters: FetchRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<FetchResponse> {
Expand Down Expand Up @@ -381,7 +381,7 @@ export class DataPlaneApi extends runtime.BaseAPI {
}

/**
* The `update` operation updates a vector in a namespace. If a value is included, it will overwrite the previous value. If a `set_metadata` is included, the values of the fields specified in it will be added or overwrite the previous value. For guidance and examples, see [Update data](https://docs.pinecone.io/reference/update).
* The `update` operation updates a vector in a namespace. If a value is included, it will overwrite the previous value. If a `set_metadata` is included, the values of the fields specified in it will be added or overwrite the previous value. For guidance and examples, see [Update data](https://docs.pinecone.io/docs/update-data).
* Update a vector
*/
async updateRaw(requestParameters: UpdateOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<object>> {
Expand Down Expand Up @@ -411,7 +411,7 @@ export class DataPlaneApi extends runtime.BaseAPI {
}

/**
* The `update` operation updates a vector in a namespace. If a value is included, it will overwrite the previous value. If a `set_metadata` is included, the values of the fields specified in it will be added or overwrite the previous value. For guidance and examples, see [Update data](https://docs.pinecone.io/reference/update).
* The `update` operation updates a vector in a namespace. If a value is included, it will overwrite the previous value. If a `set_metadata` is included, the values of the fields specified in it will be added or overwrite the previous value. For guidance and examples, see [Update data](https://docs.pinecone.io/docs/update-data).
* Update a vector
*/
async update(requestParameters: UpdateOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<object> {
Expand Down

0 comments on commit 3d5920a

Please sign in to comment.