@imbricate/core 1.14.2 → 1.14.4

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.14.2",
4
+ "version": "1.14.4",
5
5
  "description": "Core for Imbricate",
6
6
  "repository": {
7
7
  "type": "git",
@@ -9,7 +9,7 @@ export type ImbricatePageSearchResult = ImbricateSearchResult<IMBRICATE_SEARCH_R
9
9
  export type ImbricatePageSearchSnippet = ImbricateSearchSnippet<IMBRICATE_SEARCH_RESULT_TYPE.PAGE>;
10
10
  export type ImbricatePageSnapshot = {
11
11
  readonly title: string;
12
- readonly paths: string[];
12
+ readonly directories: string[];
13
13
  readonly identifier: string;
14
14
  };
15
15
  export type ImbricatePageHistoryRecord = {
@@ -7,6 +7,7 @@ import { PromiseOr } from "../definition/promise";
7
7
  import { ImbricatePageAttributes, ImbricatePageHistoryRecord } from "./definition";
8
8
  export interface IImbricatePage {
9
9
  readonly title: string;
10
+ readonly directories: string[];
10
11
  readonly identifier: string;
11
12
  readonly digest: string;
12
13
  readonly historyRecords: ImbricatePageHistoryRecord[];