@imbricate/core 1.8.2 → 1.8.3

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.2",
4
+ "version": "1.8.3",
5
5
  "description": "Core for Imbricate",
6
6
  "repository": {
7
7
  "type": "git",
@@ -8,6 +8,7 @@ import { ImbricatePageAttributes } from "./definition";
8
8
  export interface IImbricatePage {
9
9
  readonly title: string;
10
10
  readonly identifier: string;
11
+ readonly description?: string;
11
12
  readonly createdAt: Date;
12
13
  readonly updatedAt: Date;
13
14
  readContent(): PromiseOr<string>;
@@ -11,6 +11,7 @@ import { ImbricateScriptAttributes } from "./definition";
11
11
  export interface IImbricateScript {
12
12
  readonly scriptName: string;
13
13
  readonly identifier: string;
14
+ readonly description?: string;
14
15
  readonly createdAt: Date;
15
16
  readonly updatedAt: Date;
16
17
  readScript(): PromiseOr<string>;