@imbricate/core 3.10.0 → 3.10.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.
@@ -67,8 +67,8 @@ export type DatabaseEditOperation<T extends IMBRICATE_DATABASE_EDIT_TYPE> = {
67
67
  export type DatabaseEditRecord = {
68
68
  readonly uniqueIdentifier: string;
69
69
  readonly editAt: Date;
70
- readonly beforeVersion: string;
71
- readonly afterVersion: string;
70
+ readonly beforeVersion: number;
71
+ readonly afterVersion: number;
72
72
  readonly operations: Array<DatabaseEditOperation<IMBRICATE_DATABASE_EDIT_TYPE>>;
73
73
  readonly author?: ImbricateAuthor;
74
74
  };
@@ -34,8 +34,8 @@ export type DocumentEditOperation<T extends IMBRICATE_DOCUMENT_EDIT_TYPE> = {
34
34
  export type DocumentEditRecord = {
35
35
  readonly uniqueIdentifier: string;
36
36
  readonly editAt: Date;
37
- readonly beforeVersion: string;
38
- readonly afterVersion: string;
37
+ readonly beforeVersion: number;
38
+ readonly afterVersion: number;
39
39
  readonly operations: Array<DocumentEditOperation<IMBRICATE_DOCUMENT_EDIT_TYPE>>;
40
40
  readonly author?: ImbricateAuthor;
41
41
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imbricate/core",
3
3
  "main": "index.js",
4
- "version": "3.10.0",
4
+ "version": "3.10.1",
5
5
  "description": "Imbricate Core, Notebook for Engineers",
6
6
  "repository": {
7
7
  "type": "git",