@imbricate/core 1.24.4 → 1.25.1

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.24.4",
4
+ "version": "1.25.1",
5
5
  "description": "Imbricate Core, Notebook for Engineers",
6
6
  "repository": {
7
7
  "type": "git",
@@ -21,6 +21,7 @@ export type ImbricatePageMetadata = {
21
21
  readonly createdAt: Date;
22
22
  readonly updatedAt: Date;
23
23
  readonly digest: string;
24
+ readonly attributes: ImbricatePageAttributes;
24
25
  readonly historyRecords: ImbricatePageHistoryRecord[];
25
26
  readonly description?: string;
26
27
  } & ImbricatePageSnapshot;
@@ -20,6 +20,7 @@ export type ImbricateScriptMetadata = {
20
20
  readonly createdAt: Date;
21
21
  readonly updatedAt: Date;
22
22
  readonly digest: string;
23
+ readonly attributes: ImbricateScriptAttributes;
23
24
  readonly historyRecords: ImbricateScriptHistoryRecord[];
24
25
  readonly description?: string;
25
26
  } & ImbricateScriptSnapshot;