@or-sdk/lookup 1.24.0-beta.4074.0 → 1.24.1-beta.4095.0
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/CHANGELOG.md +9 -0
- package/dist/types/Lookup.d.ts +0 -202
- package/dist/types/Lookup.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.24.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/lookup@1.23.1...@or-sdk/lookup@1.24.0) (2026-04-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **@or-sdk/agents:** add guardrail identifier to AgentModelOptions type ([4986f19](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/4986f196d6efeb99620d71bc8d6e2ab3ecdbd49f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [1.23.1](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/lookup@1.23.0...@or-sdk/lookup@1.23.1) (2026-02-25)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @or-sdk/lookup
|
package/dist/types/Lookup.d.ts
CHANGED
|
@@ -7,240 +7,38 @@ export declare class Lookup extends Base {
|
|
|
7
7
|
constructor(params: LookupConfig);
|
|
8
8
|
private makeRequest;
|
|
9
9
|
parseError(err: unknown): Error;
|
|
10
|
-
/**
|
|
11
|
-
* Retrieves the AI providers.
|
|
12
|
-
* @returns {Promise<ProvidersList>} A promise that resolves with the AI providers.
|
|
13
|
-
*/
|
|
14
10
|
getAiProviders(): Promise<ProvidersList>;
|
|
15
|
-
/**
|
|
16
|
-
* Load the document into collection.
|
|
17
|
-
* @param collectionId - The ID of the collection the document belongs to.
|
|
18
|
-
* @param params - The document loading parameters.
|
|
19
|
-
* @param [options] - The API call options.
|
|
20
|
-
* @returns The created document.
|
|
21
|
-
*/
|
|
22
11
|
loadDocument(collectionId: string, params: LoadDocument, options?: CallOptions): Promise<Document>;
|
|
23
|
-
/**
|
|
24
|
-
* @param collectionId - The ID of the collection the document belongs to.
|
|
25
|
-
* @param params - The document crawling parameters.
|
|
26
|
-
* @param [options] - The API call options.
|
|
27
|
-
*/
|
|
28
12
|
loadCrawlerDocument(collectionId: string, params: CrawlDocuments, options?: CallOptions): Promise<void>;
|
|
29
|
-
/**
|
|
30
|
-
* Create a new collection.
|
|
31
|
-
* @param params - The collection creation parameters.
|
|
32
|
-
* @param [options={}] - The API call options.
|
|
33
|
-
* @returns The created collection.
|
|
34
|
-
*/
|
|
35
13
|
createCollection(params: CreateCollection, options?: CallOptions): Promise<Collection>;
|
|
36
|
-
/**
|
|
37
|
-
* Create a new passage within the collection.
|
|
38
|
-
* @param collectionId - The ID of the collection the passage belongs to.
|
|
39
|
-
* @param passage - The passage creation parameters.
|
|
40
|
-
* @param [options={}] - The API call options.
|
|
41
|
-
* @returns The created passage.
|
|
42
|
-
*/
|
|
43
14
|
createPassage<T extends Record<string, unknown>>(collectionId: string, passage: CreatePassage<T>, options?: CallOptions): Promise<Passage<T>>;
|
|
44
|
-
/**
|
|
45
|
-
* Create batch of passages within the collection.
|
|
46
|
-
* @param collectionId - The ID of the collection the passage belongs to.
|
|
47
|
-
* @param passages - The passages to create.
|
|
48
|
-
* @param [options={}] - The API call options.
|
|
49
|
-
*/
|
|
50
15
|
createManyPassages<T extends Record<string, unknown>>(collectionId: string, passages: CreatePassage<T>[], options?: CallOptions): Promise<void>;
|
|
51
|
-
/**
|
|
52
|
-
* Delete a collection by ID.
|
|
53
|
-
* @param collectionId - The ID of the collection to delete.
|
|
54
|
-
* @param [options={}] - The API call options.
|
|
55
|
-
* @returns The deleted collection.
|
|
56
|
-
*/
|
|
57
16
|
deleteCollection(collectionId: string, options?: CallOptions): Promise<Collection>;
|
|
58
|
-
/**
|
|
59
|
-
* Delete a passage from a collection.
|
|
60
|
-
* @param collectionId - The ID of the collection the passage belongs to.
|
|
61
|
-
* @param documentId - The ID of the passage to delete.
|
|
62
|
-
* @param ids - The IDs of the passages to delete.
|
|
63
|
-
* @param [options={}] - The API call options.
|
|
64
|
-
* @returns The deleted passage.
|
|
65
|
-
*/
|
|
66
17
|
deleteManyPassages(collectionId: string, documentId: string, ids: string[], options?: CallOptions): Promise<RemoveManyPassagesResult>;
|
|
67
|
-
/**
|
|
68
|
-
* Delete a passage from a collection.
|
|
69
|
-
* @param collectionId - The ID of the collection the passage belongs to.
|
|
70
|
-
* @param passageId - The ID of the passage to delete.
|
|
71
|
-
* @param [options={}] - The API call options.
|
|
72
|
-
* @returns The deleted passage.
|
|
73
|
-
*/
|
|
74
18
|
deletePassage(collectionId: string, passageId: string, options?: CallOptions): Promise<DeletedPassage>;
|
|
75
|
-
/**
|
|
76
|
-
* Search for documents in a collection.
|
|
77
|
-
* @param collectionId - The ID of the collection to search in.
|
|
78
|
-
* @param params - The search parameters.
|
|
79
|
-
* @param [options={}] - The API call options.
|
|
80
|
-
* @returns An array of search results.
|
|
81
|
-
*/
|
|
82
19
|
search(collectionId: string, params: Search, options?: CallOptions): Promise<SearchResult[]>;
|
|
83
|
-
/**
|
|
84
|
-
* Ask a question and generate an answer based on the documents in a collection.
|
|
85
|
-
* @param collectionId - The ID of the collection to use for generating the answer.
|
|
86
|
-
* @param params - The ask question parameters.
|
|
87
|
-
* @param [options={}] - The API call options.
|
|
88
|
-
* @returns The generated answer and search result.
|
|
89
|
-
*/
|
|
90
20
|
ask(collectionId: string, params: Ask, options?: CallOptions): Promise<AskResults>;
|
|
91
|
-
/**
|
|
92
|
-
* Update a document's description.
|
|
93
|
-
* @param collectionId - The ID of the collection the document belongs to.
|
|
94
|
-
* @param documentId - The ID of the document to update.
|
|
95
|
-
* @param params - The update document parameters.
|
|
96
|
-
* @param [options={}] - The API call options.
|
|
97
|
-
* @returns The updated document.
|
|
98
|
-
*/
|
|
99
21
|
updateDocument(collectionId: string, documentId: string, params: UpdateDocument, options?: CallOptions): Promise<Document>;
|
|
100
|
-
/**
|
|
101
|
-
* Update a passage in a collection.
|
|
102
|
-
* @param collectionId - The ID of the collection the passage belongs to.
|
|
103
|
-
* @param passageId - The ID of the passage to update.
|
|
104
|
-
* @param params - The update passage parameters.
|
|
105
|
-
* @param [options={}] - The API call options.
|
|
106
|
-
* @returns The updated passage.
|
|
107
|
-
*/
|
|
108
22
|
updatePassage<T extends Record<string, unknown>>(collectionId: string, passageId: string, params: UpdatePassage<T>, options?: CallOptions): Promise<Passage<T>>;
|
|
109
|
-
/**
|
|
110
|
-
* Update a passage in a collection.
|
|
111
|
-
* @param collectionId - The ID of the collection the passage belongs to.
|
|
112
|
-
* @param documentId - The ID of the document.
|
|
113
|
-
* @param ids - The IDs of the document passages to update.
|
|
114
|
-
* @param params - The update passage parameters.
|
|
115
|
-
* @param [options={}] - The API call options.
|
|
116
|
-
* @returns The updated passage.
|
|
117
|
-
*/
|
|
118
23
|
updateManyPassages<T extends Record<string, unknown>>(collectionId: string, documentId: string, ids: string[], params: Record<string, unknown>, options?: CallOptions): Promise<Passage<T>[]>;
|
|
119
|
-
/**
|
|
120
|
-
* Update a collection's description.
|
|
121
|
-
* @param collectionId - The ID of the collection to update.
|
|
122
|
-
* @param params - The update collection parameters.
|
|
123
|
-
* @param [options={}] - The API call options.
|
|
124
|
-
* @returns The updated collection.
|
|
125
|
-
*/
|
|
126
24
|
updateCollection(collectionId: string, params: UpdateCollection, options?: CallOptions): Promise<Collection>;
|
|
127
|
-
/**
|
|
128
|
-
* Get a document by its ID.
|
|
129
|
-
* @param collectionId - The ID of the collection the document belongs to.
|
|
130
|
-
* @param documentId - The ID of the document to retrieve.
|
|
131
|
-
* @param [options={}] - The API call options.
|
|
132
|
-
* @returns The retrieved document.
|
|
133
|
-
*/
|
|
134
25
|
getDocument(collectionId: string, documentId: string, options?: CallOptions): Promise<Document>;
|
|
135
|
-
/**
|
|
136
|
-
* Get a collection by its ID.
|
|
137
|
-
* @param collectionId - The ID of the collection to retrieve.
|
|
138
|
-
* @param [options={}] - The API call options.
|
|
139
|
-
* @returns The retrieved collection.
|
|
140
|
-
*/
|
|
141
26
|
getCollection(collectionId: string, options?: CallOptions): Promise<Collection>;
|
|
142
|
-
/**
|
|
143
|
-
* Get a single passage from a collection.
|
|
144
|
-
* @param collectionId - The ID of the collection the passage belongs to.
|
|
145
|
-
* @param passageId - The ID of the passage to retrieve.
|
|
146
|
-
* @param [options={}] - The API call options.
|
|
147
|
-
* @returns The retrieved passage.
|
|
148
|
-
*/
|
|
149
27
|
getPassage<T extends Record<string, unknown>>(collectionId: string, passageId: string, options?: CallOptions & {
|
|
150
28
|
params?: {
|
|
151
29
|
vector: boolean;
|
|
152
30
|
};
|
|
153
31
|
}): Promise<Passage<T>>;
|
|
154
|
-
/**
|
|
155
|
-
* Add a custom property to an existing collection.
|
|
156
|
-
* Custom properties can be used to store additional metadata about the collection or its passages.
|
|
157
|
-
* The available data types for properties can be found https://weaviate.io/developers/weaviate/config-refs/datatypes.
|
|
158
|
-
* Note that there are reserved property names:
|
|
159
|
-
* ['accountId', 'collection', 'document', 'content', 'loaderMetadata', 'sourceUrl']
|
|
160
|
-
* @param collectionId - The ID of the collection to add the property to.
|
|
161
|
-
* @param property - The property to add to the collection.
|
|
162
|
-
* @param [options={}] - The API call options.
|
|
163
|
-
* @returns A promise that resolves when the property has been added.
|
|
164
|
-
*/
|
|
165
32
|
addProperty(collectionId: string, property: Property, options?: CallOptions): Promise<void>;
|
|
166
|
-
/**
|
|
167
|
-
* List all documents in a collection with optional pagination and query.
|
|
168
|
-
* @param collectionId - The ID of the collection to retrieve documents from.
|
|
169
|
-
* @param find - Optional find parameters.
|
|
170
|
-
* @param [options={}] - The API call options.
|
|
171
|
-
* @returns An array of documents.
|
|
172
|
-
*/
|
|
173
33
|
listDocuments(collectionId: string, params?: Find, options?: CallOptions): Promise<List<Document>>;
|
|
174
|
-
/**
|
|
175
|
-
* List collections with optional pagination and query.
|
|
176
|
-
* @param params - Optional find parameters.
|
|
177
|
-
* @param [options={}] - The API call options.
|
|
178
|
-
* @returns An array of collections.
|
|
179
|
-
*/
|
|
180
34
|
listCollections(params?: Find, options?: CallOptions): Promise<List<Collection>>;
|
|
181
|
-
/**
|
|
182
|
-
* List all passages in a collection with optional pagination and query.
|
|
183
|
-
* @param collectionId - The ID of the collection to retrieve passages from.
|
|
184
|
-
* @param params - Optional find parameters.
|
|
185
|
-
* @param [options={}] - The API call options.
|
|
186
|
-
* @returns An array of passages.
|
|
187
|
-
*/
|
|
188
35
|
listPassages<T extends Record<string, unknown>>(collectionId: string, params?: FindPassages, options?: CallOptions): Promise<List<Passage<T>>>;
|
|
189
|
-
/**
|
|
190
|
-
* List all passages in a document with optional pagination, query, and ordering.
|
|
191
|
-
* @param collectionId - The ID of the collection containing the document.
|
|
192
|
-
* @param documentId - The ID of the document to retrieve passages from.
|
|
193
|
-
* @param find - Optional find parameters.
|
|
194
|
-
* @param [options={}] - The API call options.
|
|
195
|
-
* @returns An array of passages with pagination info.
|
|
196
|
-
*/
|
|
197
36
|
listPassagesInDocument<T extends Record<string, unknown>>(collectionId: string, documentId: string, find?: FindPassages, options?: CallOptions): Promise<List<Passage<T>>>;
|
|
198
|
-
/**
|
|
199
|
-
* Delete a document from a collection.
|
|
200
|
-
* @param collectionId - The ID of the collection to delete the document from.
|
|
201
|
-
* @param documentId - The ID of the document to delete.
|
|
202
|
-
* @param [options={}] - The API call options.
|
|
203
|
-
* @returns The deleted document.
|
|
204
|
-
*/
|
|
205
37
|
deleteDocument(collectionId: string, documentId: string, options?: CallOptions): Promise<Document>;
|
|
206
|
-
/**
|
|
207
|
-
* Delete multiple documents from a collection.
|
|
208
|
-
@param collectionId - The ID of the collection to delete the document from.
|
|
209
|
-
* @param ids - The ID of the collection to delete the document from.
|
|
210
|
-
* @param [options={}] - The API call options.
|
|
211
|
-
* @returns IDs of deleted documents and passages.
|
|
212
|
-
*/
|
|
213
38
|
deleteManyDocuments(collectionId: string, ids: string[], options?: CallOptions): Promise<RemoveManyDocumentsResult>;
|
|
214
|
-
/**
|
|
215
|
-
* Backup a collection.
|
|
216
|
-
* @param collectionId - The ID of the collection to backup.
|
|
217
|
-
* @param params - The backup parameters.
|
|
218
|
-
* @param [options={}] - The API call options.
|
|
219
|
-
* @returns A response indicating the success of the operation.
|
|
220
|
-
*/
|
|
221
39
|
backupCollection(collectionId: string, params: Backup, options?: CallOptions): Promise<void>;
|
|
222
|
-
/**
|
|
223
|
-
* Restore a collection.
|
|
224
|
-
* @param params - The restoration parameters.
|
|
225
|
-
* @param [options={}] - The API call options.
|
|
226
|
-
* @returns The restored collection information.
|
|
227
|
-
*/
|
|
228
40
|
restoreCollection(params: Restore, options?: CallOptions): Promise<void>;
|
|
229
|
-
/**
|
|
230
|
-
* Split a long text into smaller chunks
|
|
231
|
-
* @param dataToSplit - data to split
|
|
232
|
-
* @param dataToSplit.text - text content that will be divided
|
|
233
|
-
* @param dataToSplit.chunkSize - configure the size of each chunk
|
|
234
|
-
* @param dataToSplit.chunkOverlap - configure chunks overlap value
|
|
235
|
-
* @param [options={}] - The API call options.
|
|
236
|
-
* @returns The array of text chunks
|
|
237
|
-
*/
|
|
238
41
|
splitText(dataToSplit: TextSplitterRequest, options?: CallOptions): Promise<TextSplitterResult>;
|
|
239
|
-
/**
|
|
240
|
-
* Set the session ID.
|
|
241
|
-
* @param sessionId - The session ID to set.
|
|
242
|
-
* @returns The session ID.
|
|
243
|
-
*/
|
|
244
42
|
setSessionId(sessionId: string): string;
|
|
245
43
|
}
|
|
246
44
|
//# sourceMappingURL=Lookup.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Lookup.d.ts","sourceRoot":"","sources":["../../src/Lookup.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAgB,IAAI,EAAY,MAAM,cAAc,CAAC;AAIlE,OAAO,EACL,GAAG,EACH,UAAU,EACV,MAAM,EACN,WAAW,EACX,UAAU,EACV,cAAc,EACd,gBAAgB,EAChB,aAAa,EACb,cAAc,EACd,QAAQ,EACR,IAAI,EACJ,YAAY,EACZ,YAAY,EACZ,YAAY,EACZ,OAAO,EACP,QAAQ,EACR,aAAa,EACb,yBAAyB,EACzB,wBAAwB,EACxB,OAAO,EACP,MAAM,EACN,YAAY,EACZ,gBAAgB,EAChB,cAAc,EACd,aAAa,EAEb,mBAAmB,EACnB,kBAAkB,EACnB,MAAM,SAAS,CAAC;AAIjB,qBAAa,MAAO,SAAQ,IAAI;IAC9B,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAgB;IACzC,OAAO,CAAC,UAAU,CAAC,CAAS;IAC5B,OAAO,CAAC,mBAAmB,CAAC,CAAS;gBAEzB,MAAM,EAAE,YAAY;YAqBlB,WAAW;IAmBzB,UAAU,CAAC,GAAG,EAAE,OAAO;
|
|
1
|
+
{"version":3,"file":"Lookup.d.ts","sourceRoot":"","sources":["../../src/Lookup.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/lookup",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.1-beta.4095.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"test:watch": "vitest --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@or-sdk/base": "^0.44.0"
|
|
24
|
+
"@or-sdk/base": "^0.44.1-beta.4095.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"concurrently": "9.0.1",
|