@dxos/protocols 0.4.7-main.aa6dc1f → 0.4.7-main.b51ad3a

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/proto/gen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AA6DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAuhB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,46nGAA46nG,CAAC,CAAC,CAAC;AACr+nG,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAkB,UAAU,EAAE,aAAa,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/proto/gen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AA6DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAuhB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,2ioGAA2ioG,CAAC,CAAC,CAAC;AACpmoG,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAkB,UAAU,EAAE,aAAa,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/protocols",
3
- "version": "0.4.7-main.aa6dc1f",
3
+ "version": "0.4.7-main.b51ad3a",
4
4
  "description": "Protobuf definitions for DXOS protocols.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -33,10 +33,10 @@
33
33
  "src"
34
34
  ],
35
35
  "dependencies": {
36
- "@dxos/codec-protobuf": "0.4.7-main.aa6dc1f",
37
- "@dxos/keys": "0.4.7-main.aa6dc1f",
38
- "@dxos/timeframe": "0.4.7-main.aa6dc1f",
39
- "@dxos/invariant": "0.4.7-main.aa6dc1f"
36
+ "@dxos/invariant": "0.4.7-main.b51ad3a",
37
+ "@dxos/codec-protobuf": "0.4.7-main.b51ad3a",
38
+ "@dxos/keys": "0.4.7-main.b51ad3a",
39
+ "@dxos/timeframe": "0.4.7-main.b51ad3a"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -351,6 +351,9 @@ message CreateEpochRequest {
351
351
 
352
352
  /// Init empty automerge document as the space root. Disables legacy ECHO snapshot creation.
353
353
  INIT_AUTOMERGE = 1;
354
+
355
+ /// Init new automerge root by clonning the current space root. History is pruned.
356
+ PRUNE_AUTOMERGE_ROOT_HISTORY = 2;
354
357
  }
355
358
 
356
359
  dxos.keys.PublicKey space_key = 1;
@@ -802,7 +802,8 @@ export namespace CreateEpochRequest {
802
802
  */
803
803
  export enum Migration {
804
804
  NONE = 0,
805
- INIT_AUTOMERGE = 1
805
+ INIT_AUTOMERGE = 1,
806
+ PRUNE_AUTOMERGE_ROOT_HISTORY = 2
806
807
  }
807
808
  }
808
809
  /**