33import { type Agent } from './_shims/index' ;
44import * as Core from './core' ;
55import * as Errors from './error' ;
6+ import * as Pagination from './pagination' ;
7+ import { type GetDocumentInfoListCursorParams , GetDocumentInfoListCursorResponse } from './pagination' ;
68import * as Uploads from './uploads' ;
79import * as API from './resources/index' ;
810import {
9- CollectionAddCollectionParams ,
10- CollectionAddCollectionResponse ,
11- CollectionDeleteCollectionParams ,
12- CollectionDeleteCollectionResponse ,
11+ CollectionAddParams ,
12+ CollectionAddResponse ,
13+ CollectionDeleteParams ,
14+ CollectionDeleteResponse ,
1315 CollectionGetListParams ,
1416 CollectionGetListResponse ,
1517 Collections ,
1618} from './resources/collections' ;
1719import {
18- DocumentAddDocumentParams ,
19- DocumentAddDocumentResponse ,
20- DocumentDeleteDocumentParams ,
21- DocumentDeleteDocumentResponse ,
20+ DocumentAddParams ,
21+ DocumentAddResponse ,
22+ DocumentDeleteParams ,
23+ DocumentDeleteResponse ,
2224 DocumentGetInfoListParams ,
2325 DocumentGetInfoListResponse ,
2426 DocumentGetInfoParams ,
@@ -28,7 +30,7 @@ import {
2830 Documents ,
2931} from './resources/documents' ;
3032import { Models , StrJson } from './resources/models' ;
31- import { ParserParseParams , ParserParseResponse , Parsers } from './resources/parsers' ;
33+ import { ParserParseDocumentParams , ParserParseDocumentResponse , Parsers } from './resources/parsers' ;
3234import {
3335 Queries ,
3436 QueryTopDocumentsParams ,
@@ -205,6 +207,12 @@ Zeroentropy.Models = Models;
205207export declare namespace Zeroentropy {
206208 export type RequestOptions = Core . RequestOptions ;
207209
210+ export import GetDocumentInfoListCursor = Pagination . GetDocumentInfoListCursor ;
211+ export {
212+ type GetDocumentInfoListCursorParams as GetDocumentInfoListCursorParams ,
213+ type GetDocumentInfoListCursorResponse as GetDocumentInfoListCursorResponse ,
214+ } ;
215+
208216 export {
209217 Status as Status ,
210218 type StatusGetStatusResponse as StatusGetStatusResponse ,
@@ -213,23 +221,23 @@ export declare namespace Zeroentropy {
213221
214222 export {
215223 Collections as Collections ,
216- type CollectionAddCollectionResponse as CollectionAddCollectionResponse ,
217- type CollectionDeleteCollectionResponse as CollectionDeleteCollectionResponse ,
224+ type CollectionDeleteResponse as CollectionDeleteResponse ,
225+ type CollectionAddResponse as CollectionAddResponse ,
218226 type CollectionGetListResponse as CollectionGetListResponse ,
219- type CollectionAddCollectionParams as CollectionAddCollectionParams ,
220- type CollectionDeleteCollectionParams as CollectionDeleteCollectionParams ,
227+ type CollectionDeleteParams as CollectionDeleteParams ,
228+ type CollectionAddParams as CollectionAddParams ,
221229 type CollectionGetListParams as CollectionGetListParams ,
222230 } ;
223231
224232 export {
225233 Documents as Documents ,
226- type DocumentAddDocumentResponse as DocumentAddDocumentResponse ,
227- type DocumentDeleteDocumentResponse as DocumentDeleteDocumentResponse ,
234+ type DocumentDeleteResponse as DocumentDeleteResponse ,
235+ type DocumentAddResponse as DocumentAddResponse ,
228236 type DocumentGetInfoResponse as DocumentGetInfoResponse ,
229237 type DocumentGetInfoListResponse as DocumentGetInfoListResponse ,
230238 type DocumentGetPageInfoResponse as DocumentGetPageInfoResponse ,
231- type DocumentAddDocumentParams as DocumentAddDocumentParams ,
232- type DocumentDeleteDocumentParams as DocumentDeleteDocumentParams ,
239+ type DocumentDeleteParams as DocumentDeleteParams ,
240+ type DocumentAddParams as DocumentAddParams ,
233241 type DocumentGetInfoParams as DocumentGetInfoParams ,
234242 type DocumentGetInfoListParams as DocumentGetInfoListParams ,
235243 type DocumentGetPageInfoParams as DocumentGetPageInfoParams ,
@@ -247,8 +255,8 @@ export declare namespace Zeroentropy {
247255
248256 export {
249257 Parsers as Parsers ,
250- type ParserParseResponse as ParserParseResponse ,
251- type ParserParseParams as ParserParseParams ,
258+ type ParserParseDocumentResponse as ParserParseDocumentResponse ,
259+ type ParserParseDocumentParams as ParserParseDocumentParams ,
252260 } ;
253261
254262 export { Models as Models , type StrJson as StrJson } ;
0 commit comments