@dxos/protocols 0.5.1-main.c37e119 → 0.5.1-main.ff7d242

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;AAgiB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,o1vGAAo1vG,CAAC,CAAC,CAAC;AAC74vG,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;AAiiB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,skwGAAskwG,CAAC,CAAC,CAAC;AAC/nwG,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.5.1-main.c37e119",
3
+ "version": "0.5.1-main.ff7d242",
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/keys": "0.5.1-main.c37e119",
37
- "@dxos/invariant": "0.5.1-main.c37e119",
38
- "@dxos/timeframe": "0.5.1-main.c37e119",
39
- "@dxos/codec-protobuf": "0.5.1-main.c37e119"
36
+ "@dxos/codec-protobuf": "0.5.1-main.ff7d242",
37
+ "@dxos/invariant": "0.5.1-main.ff7d242",
38
+ "@dxos/timeframe": "0.5.1-main.ff7d242",
39
+ "@dxos/keys": "0.5.1-main.ff7d242"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -18,6 +18,15 @@ message QueryRequest {
18
18
  dxos.echo.filter.Filter filter = 2;
19
19
  }
20
20
 
21
+ /**
22
+ * Automerge heads.
23
+ * Used for encoding in Index metadata store.
24
+ * @see https://automerge.org/automerge-repo/types/_automerge_automerge_repo.Heads.html
25
+ */
26
+ message Heads {
27
+ repeated string hashes = 1;
28
+ }
29
+
21
30
  message QueryResult {
22
31
  string id = 1;
23
32
  dxos.keys.PublicKey spaceKey = 2;
@@ -72,6 +72,17 @@ export interface QueryRequest {
72
72
  queryId?: string;
73
73
  filter: dxos_echo_filter.Filter;
74
74
  }
75
+ /**
76
+ * Automerge heads.
77
+ * Used for encoding in Index metadata store.
78
+ * @see https://automerge.org/automerge-repo/types/_automerge_automerge_repo.Heads.html
79
+ *
80
+ * Defined in:
81
+ * {@link file://./../../../dxos/echo/query.proto}
82
+ */
83
+ export interface Heads {
84
+ hashes?: string[];
85
+ }
75
86
  /**
76
87
  * Defined in:
77
88
  * {@link file://./../../../dxos/echo/query.proto}
@@ -79,14 +79,14 @@ export enum NullValue {
79
79
  export interface ListValue {
80
80
  values?: Value[];
81
81
  }
82
- export interface Timestamp {
83
- seconds: string;
84
- nanos: number;
85
- }
86
82
  export interface Any {
87
83
  type_url: string;
88
84
  value: Uint8Array;
89
85
  }
86
+ export interface Timestamp {
87
+ seconds: string;
88
+ nanos: number;
89
+ }
90
90
  export interface FileDescriptorSet {
91
91
  file?: FileDescriptorProto[];
92
92
  }