vectocore4 0.0.8 → 0.0.10

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 CHANGED
@@ -131,12 +131,9 @@ class Vectocore {
131
131
  });
132
132
  }
133
133
  /**
134
- * 특정 인덱스에 저장된 모든 지식 데이터를 리스트로 가져옵니다.
135
- * * @param {Object} param0 - 조회 매개변수
136
- * @param {string} param0.indexName - 데이터를 추출할 **인덱스의 고유 이름**입니다. (필수)
137
- * @param {boolean} [param0.withVectorValue=false] - 결과 데이터에 **고차원 벡터값(keywords_vector)을 포함할지** 여부입니다.
138
- * true 설정 시 응답 크기가 커질 수 있습니다.
139
- * * @returns {Promise<any>} 서버로부터 전달받은 데이터 목록 응답
134
+ * 특정 인덱스에 저장된 모든 지식 데이터를 조회합니다.
135
+ * * @param params - 조회에 필요한 매개변수 객체 ({@link ListAllExtremeDataParams})
136
+ * @returns 인덱스 목록
140
137
  */
141
138
  listAllExtremeData(_a) {
142
139
  return __awaiter(this, arguments, void 0, function* ({ indexName, withVectorValue }) {
package/dist/index.d.ts CHANGED
@@ -174,12 +174,9 @@ export declare class Vectocore {
174
174
  getExtremeData({ indexName, documentId }: GetExtremeDataParams): Promise<any>;
175
175
  listExtremeData({ indexName, lastKey, withVectorValue }: ListExtremeDataParams): Promise<any>;
176
176
  /**
177
- * 특정 인덱스에 저장된 모든 지식 데이터를 리스트로 가져옵니다.
178
- * * @param {Object} param0 - 조회 매개변수
179
- * @param {string} param0.indexName - 데이터를 추출할 **인덱스의 고유 이름**입니다. (필수)
180
- * @param {boolean} [param0.withVectorValue=false] - 결과 데이터에 **고차원 벡터값(keywords_vector)을 포함할지** 여부입니다.
181
- * true 설정 시 응답 크기가 커질 수 있습니다.
182
- * * @returns {Promise<any>} 서버로부터 전달받은 데이터 목록 응답
177
+ * 특정 인덱스에 저장된 모든 지식 데이터를 조회합니다.
178
+ * * @param params - 조회에 필요한 매개변수 객체 ({@link ListAllExtremeDataParams})
179
+ * @returns 인덱스 목록
183
180
  */
184
181
  listAllExtremeData({ indexName, withVectorValue }: ListAllExtremeDataParams): Promise<any>;
185
182
  deleteExtremeData({ indexName, documentId }: DeleteExtremeDataParams): Promise<any>;
package/dist/mjs/index.js CHANGED
@@ -103,12 +103,9 @@ export class Vectocore {
103
103
  return response;
104
104
  }
105
105
  /**
106
- * 특정 인덱스에 저장된 모든 지식 데이터를 리스트로 가져옵니다.
107
- * * @param {Object} param0 - 조회 매개변수
108
- * @param {string} param0.indexName - 데이터를 추출할 **인덱스의 고유 이름**입니다. (필수)
109
- * @param {boolean} [param0.withVectorValue=false] - 결과 데이터에 **고차원 벡터값(keywords_vector)을 포함할지** 여부입니다.
110
- * true 설정 시 응답 크기가 커질 수 있습니다.
111
- * * @returns {Promise<any>} 서버로부터 전달받은 데이터 목록 응답
106
+ * 특정 인덱스에 저장된 모든 지식 데이터를 조회합니다.
107
+ * * @param params - 조회에 필요한 매개변수 객체 ({@link ListAllExtremeDataParams})
108
+ * @returns 인덱스 목록
112
109
  */
113
110
  async listAllExtremeData({ indexName, withVectorValue }) {
114
111
  const requestParam = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vectocore4",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/cjs/index.js",