@imbricate/core 1.25.1 → 1.26.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/package.json +1 -1
- package/query/page.d.ts +2 -1
- package/query/script.d.ts +2 -1
package/package.json
CHANGED
package/query/page.d.ts
CHANGED
|
@@ -12,7 +12,8 @@ export type ImbricatePageQuery = {
|
|
|
12
12
|
};
|
|
13
13
|
export type ImbricateSearchPageConfig = {
|
|
14
14
|
readonly exact?: boolean;
|
|
15
|
-
readonly
|
|
15
|
+
readonly itemLimit?: number;
|
|
16
|
+
readonly snippetLimit?: number;
|
|
16
17
|
};
|
|
17
18
|
export type ImbricatePageQueryConfig = {
|
|
18
19
|
readonly limit?: number;
|
package/query/script.d.ts
CHANGED
|
@@ -12,7 +12,8 @@ export type ImbricateScriptQuery = {
|
|
|
12
12
|
};
|
|
13
13
|
export type ImbricateSearchScriptConfig = {
|
|
14
14
|
readonly exact?: boolean;
|
|
15
|
-
readonly
|
|
15
|
+
readonly itemLimit?: number;
|
|
16
|
+
readonly snippetLimit?: number;
|
|
16
17
|
};
|
|
17
18
|
export type ImbricateScriptQueryConfig = {
|
|
18
19
|
readonly limit?: number;
|