@prismicio/editor-fields 0.4.39 → 0.4.40
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/core/service/document.d.ts +2 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +19 -19
- package/package.json +3 -3
|
@@ -525,8 +525,9 @@ export type DocumentMeta = z.TypeOf<typeof documentMetaOkType>;
|
|
|
525
525
|
export type DocumentVersion = z.TypeOf<typeof documentVersionOkType>;
|
|
526
526
|
export type DocumentStatus = DocumentVersion["status"];
|
|
527
527
|
export declare function getDocuments(baseUrl: URL, authStrategy: AuthStrategy, queryString: string, limit?: number, cursor?: string): Promise<GetsDocumentApi>;
|
|
528
|
-
export declare function searchFullTextDocuments(baseUrl: URL, authStrategy: AuthStrategy,
|
|
528
|
+
export declare function searchFullTextDocuments(baseUrl: URL, authStrategy: AuthStrategy, queryString: string, options?: Pick<RequestInit, "signal">): Promise<DocumentFullTextSearchApi>;
|
|
529
529
|
export declare function makeSearchFullTextDocumentsQueryString(args: {
|
|
530
|
+
repository: string;
|
|
530
531
|
searchTerm?: string;
|
|
531
532
|
tags?: string[];
|
|
532
533
|
localeId?: string;
|