@imbricate/core 1.8.5 → 1.8.7

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.8.5",
4
+ "version": "1.8.7",
5
5
  "description": "Core for Imbricate",
6
6
  "repository": {
7
7
  "type": "git",
@@ -10,9 +10,9 @@ export type ImbricatePageSearchSnippet = ImbricateSearchSnippet<IMBRICATE_SEARCH
10
10
  export type ImbricatePageSnapshot = {
11
11
  readonly title: string;
12
12
  readonly identifier: string;
13
- readonly description?: string;
14
13
  };
15
14
  export type ImbricatePageMetadata = {
16
15
  readonly createdAt: Date;
17
16
  readonly updatedAt: Date;
17
+ readonly description?: string;
18
18
  } & ImbricatePageSnapshot;
@@ -9,6 +9,6 @@ export type ImbricateQueryTime = {
9
9
  };
10
10
  export type ImbricateQueryString = {
11
11
  readonly equal?: string;
12
- readonly include?: string;
13
- readonly exclude?: string;
12
+ readonly include?: string[];
13
+ readonly exclude?: string[];
14
14
  };
@@ -10,9 +10,9 @@ export type ImbricateScriptSearchSnippet = ImbricateSearchSnippet<IMBRICATE_SEAR
10
10
  export type ImbricateScriptSnapshot = {
11
11
  readonly scriptName: string;
12
12
  readonly identifier: string;
13
- readonly description?: string;
14
13
  };
15
14
  export type ImbricateScriptMetadata = {
16
15
  readonly createdAt: Date;
17
16
  readonly updatedAt: Date;
17
+ readonly description?: string;
18
18
  } & ImbricateScriptSnapshot;