@dxos/protocols 0.4.10-main.99ef736 → 0.4.10-main.a14f081

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;AA8DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA4hB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,m1rGAAm1rG,CAAC,CAAC,CAAC;AAC54rG,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;AA8DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA4hB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,y+rGAAy+rG,CAAC,CAAC,CAAC;AAClisG,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.10-main.99ef736",
3
+ "version": "0.4.10-main.a14f081",
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.10-main.99ef736",
37
- "@dxos/keys": "0.4.10-main.99ef736",
38
- "@dxos/timeframe": "0.4.10-main.99ef736",
39
- "@dxos/invariant": "0.4.10-main.99ef736"
36
+ "@dxos/invariant": "0.4.10-main.a14f081",
37
+ "@dxos/keys": "0.4.10-main.a14f081",
38
+ "@dxos/timeframe": "0.4.10-main.a14f081",
39
+ "@dxos/codec-protobuf": "0.4.10-main.a14f081"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -356,6 +356,9 @@ message CreateEpochRequest {
356
356
 
357
357
  /// Init new automerge root by clonning the current space root. History is pruned.
358
358
  PRUNE_AUTOMERGE_ROOT_HISTORY = 2;
359
+
360
+ /// Create a new space root and move objects from the current space root to separate automerge documents and.
361
+ FRAGMENT_AUTOMERGE_ROOT = 3;
359
362
  }
360
363
 
361
364
  dxos.keys.PublicKey space_key = 1;
@@ -804,7 +804,8 @@ export namespace CreateEpochRequest {
804
804
  export enum Migration {
805
805
  NONE = 0,
806
806
  INIT_AUTOMERGE = 1,
807
- PRUNE_AUTOMERGE_ROOT_HISTORY = 2
807
+ PRUNE_AUTOMERGE_ROOT_HISTORY = 2,
808
+ FRAGMENT_AUTOMERGE_ROOT = 3
808
809
  }
809
810
  }
810
811
  /**
@@ -79,14 +79,14 @@ export enum NullValue {
79
79
  export interface ListValue {
80
80
  values?: Value[];
81
81
  }
82
- export interface Any {
83
- type_url: string;
84
- value: Uint8Array;
85
- }
86
82
  export interface Timestamp {
87
83
  seconds: string;
88
84
  nanos: number;
89
85
  }
86
+ export interface Any {
87
+ type_url: string;
88
+ value: Uint8Array;
89
+ }
90
90
  export interface FileDescriptorSet {
91
91
  file?: FileDescriptorProto[];
92
92
  }