@dxos/protocols 0.3.5-main.8a2ebe5 → 0.3.5-main.8bd48da

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/protocols",
3
- "version": "0.3.5-main.8a2ebe5",
3
+ "version": "0.3.5-main.8bd48da",
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.3.5-main.8a2ebe5",
37
- "@dxos/invariant": "0.3.5-main.8a2ebe5",
38
- "@dxos/keys": "0.3.5-main.8a2ebe5",
39
- "@dxos/timeframe": "0.3.5-main.8a2ebe5"
36
+ "@dxos/codec-protobuf": "0.3.5-main.8bd48da",
37
+ "@dxos/invariant": "0.3.5-main.8bd48da",
38
+ "@dxos/keys": "0.3.5-main.8bd48da",
39
+ "@dxos/timeframe": "0.3.5-main.8bd48da"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -42,22 +42,22 @@ message Value {
42
42
  * Ordered collection of values.
43
43
  */
44
44
  message Array {
45
- repeated Value values = 1;
45
+ repeated Value values = 1;
46
46
  }
47
47
 
48
48
  /**
49
49
  * Key x Value tuple.
50
50
  */
51
51
  message KeyValue {
52
- string key = 1;
53
- Value value = 2;
52
+ string key = 1;
53
+ Value value = 2;
54
54
  }
55
55
 
56
56
  /**
57
57
  * Object data definition.
58
58
  */
59
59
  message KeyValueObject {
60
- repeated KeyValue properties = 1;
60
+ repeated KeyValue properties = 1;
61
61
  }
62
62
 
63
63
  /**
@@ -65,7 +65,7 @@ message KeyValueObject {
65
65
  */
66
66
  message Reference {
67
67
  // TODO(dmaretskyi): Rename `id`.
68
- string itemId = 1;
68
+ string itemId = 1;
69
69
 
70
70
  /// "space", or "protobuf"
71
71
  optional string protocol = 2;
@@ -154,7 +154,7 @@ message ObjectMutationSet {
154
154
  optional Reference type_ref = 4;
155
155
 
156
156
  repeated ObjectMutation mutations = 2;
157
-
157
+
158
158
  // Mutations for the `meta` keyspace.
159
159
  repeated ObjectMutation meta_mutations = 3;
160
160
  }