@stacksjs/search-engine 0.68.2 → 0.69.1
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/add.d.ts +3 -0
- package/dist/flush.d.ts +3 -0
- package/dist/helpers.d.ts +0 -1
- package/dist/index-list.d.ts +3 -0
- package/dist/index.d.ts +4 -17
- package/dist/index.js +3265 -42
- package/dist/meilisearch.d.ts +58 -0
- package/dist/settings.d.ts +3 -0
- package/package.json +5 -7
package/dist/add.d.ts
ADDED
package/dist/flush.d.ts
ADDED
package/dist/helpers.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
declare const pages: UiEngine.Ref<number[]>;
|
|
6
|
-
export declare const currentPage: ComputedRef;
|
|
7
|
-
export declare const filters: ComputedRef;
|
|
8
|
-
export declare const goToPage: ComputedRef;
|
|
9
|
-
export declare const hits: ComputedRef;
|
|
10
|
-
export declare const lastPageNumber: ComputedRef<number>;
|
|
11
|
-
export declare const query: ComputedRef<string | undefined>;
|
|
12
|
-
export declare const searchFilters: ComputedRef;
|
|
13
|
-
export declare const setTotalHits: ComputedRef;
|
|
14
|
-
export declare const sorts: ComputedRef;
|
|
15
|
-
declare function client(): string;
|
|
16
|
-
export declare function useSearchEngine(): string;
|
|
17
|
-
export declare function calculatePagination(): void;
|
|
1
|
+
export * from './add'
|
|
2
|
+
export * from './flush'
|
|
3
|
+
export * from './index-list'
|
|
4
|
+
export * from './settings'
|