@imbricate/core 1.25.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "1.25.0",
4
+ "version": "1.26.0",
5
5
  "description": "Imbricate Core, Notebook for Engineers",
6
6
  "repository": {
7
7
  "type": "git",
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 limit?: number;
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 limit?: number;
15
+ readonly itemLimit?: number;
16
+ readonly snippetLimit?: number;
16
17
  };
17
18
  export type ImbricateScriptQueryConfig = {
18
19
  readonly limit?: number;
@@ -20,6 +20,7 @@ export type ImbricateScriptMetadata = {
20
20
  readonly createdAt: Date;
21
21
  readonly updatedAt: Date;
22
22
  readonly digest: string;
23
+ readonly attributes: ImbricateScriptAttributes;
23
24
  readonly historyRecords: ImbricateScriptHistoryRecord[];
24
25
  readonly description?: string;
25
26
  } & ImbricateScriptSnapshot;