@imbricate/core 1.8.5 → 1.8.6
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 +1 -1
- package/page/definition.d.ts +1 -1
- package/script/definition.d.ts +1 -1
package/package.json
CHANGED
package/page/definition.d.ts
CHANGED
|
@@ -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;
|
package/script/definition.d.ts
CHANGED
|
@@ -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;
|