@imbricate/core 1.8.1 → 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.
@@ -10,7 +10,7 @@ export type ImbricateSearchPageConfig = {
10
10
  readonly exact?: boolean;
11
11
  };
12
12
  export type ImbricatePageQuery = {
13
- readonly limit: number;
13
+ readonly limit?: number;
14
14
  };
15
15
  export interface IImbricateOriginCollection {
16
16
  readonly collectionName: string;
@@ -12,7 +12,7 @@ export type ImbricateSearchScriptConfig = {
12
12
  readonly exact?: boolean;
13
13
  };
14
14
  export type ImbricateScriptQuery = {
15
- readonly limit: number;
15
+ readonly limit?: number;
16
16
  };
17
17
  export interface IImbricateOrigin {
18
18
  readonly metadata: ImbricateOriginMetadata;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "1.8.1",
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>;