vectocore4 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/mjs/index.js +2 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -133,6 +133,8 @@ class Vectocore {
|
|
|
133
133
|
/**
|
|
134
134
|
* 특정 인덱스에 저장된 모든 지식 데이터를 조회합니다.
|
|
135
135
|
* * @param params - 조회에 필요한 매개변수 객체 ({@link ListAllExtremeDataParams})
|
|
136
|
+
* - **indexName**: string (필수)
|
|
137
|
+
* - withVectorValye: bool (선택) 결과에 벡터값 포함 여부. 기본값 : 'false'
|
|
136
138
|
* @returns 인덱스 목록
|
|
137
139
|
*/
|
|
138
140
|
listAllExtremeData(_a) {
|
package/dist/index.d.ts
CHANGED
|
@@ -176,6 +176,8 @@ export declare class Vectocore {
|
|
|
176
176
|
/**
|
|
177
177
|
* 특정 인덱스에 저장된 모든 지식 데이터를 조회합니다.
|
|
178
178
|
* * @param params - 조회에 필요한 매개변수 객체 ({@link ListAllExtremeDataParams})
|
|
179
|
+
* - **indexName**: string (필수)
|
|
180
|
+
* - withVectorValye: bool (선택) 결과에 벡터값 포함 여부. 기본값 : 'false'
|
|
179
181
|
* @returns 인덱스 목록
|
|
180
182
|
*/
|
|
181
183
|
listAllExtremeData({ indexName, withVectorValue }: ListAllExtremeDataParams): Promise<any>;
|
package/dist/mjs/index.js
CHANGED
|
@@ -105,6 +105,8 @@ export class Vectocore {
|
|
|
105
105
|
/**
|
|
106
106
|
* 특정 인덱스에 저장된 모든 지식 데이터를 조회합니다.
|
|
107
107
|
* * @param params - 조회에 필요한 매개변수 객체 ({@link ListAllExtremeDataParams})
|
|
108
|
+
* - **indexName**: string (필수)
|
|
109
|
+
* - withVectorValye: bool (선택) 결과에 벡터값 포함 여부. 기본값 : 'false'
|
|
108
110
|
* @returns 인덱스 목록
|
|
109
111
|
*/
|
|
110
112
|
async listAllExtremeData({ indexName, withVectorValue }) {
|