@dxos/protocols 0.3.10-main.fe592a2 → 0.3.10-next.3597a2d

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;AAghB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,gliGAAgliG,CAAC,CAAC,CAAC;AACzoiG,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;AAghB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,iliGAAiliG,CAAC,CAAC,CAAC;AAC1oiG,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.3.10-main.fe592a2",
3
+ "version": "0.3.10-next.3597a2d",
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.10-main.fe592a2",
37
- "@dxos/timeframe": "0.3.10-main.fe592a2",
38
- "@dxos/keys": "0.3.10-main.fe592a2",
39
- "@dxos/invariant": "0.3.10-main.fe592a2"
36
+ "@dxos/codec-protobuf": "0.3.10-next.3597a2d",
37
+ "@dxos/invariant": "0.3.10-next.3597a2d",
38
+ "@dxos/keys": "0.3.10-next.3597a2d",
39
+ "@dxos/timeframe": "0.3.10-next.3597a2d"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -174,10 +174,10 @@ message SpaceMember {
174
174
  /// Runtime state of the space object.
175
175
  enum SpaceState {
176
176
  ///
177
- /// Persitent states.
177
+ /// Persistent states.
178
178
  ///
179
179
 
180
- /// Space is inactive. No swarming or repication will be done.
180
+ /// Space is inactive. No swarming or replication will be done.
181
181
  INACTIVE = 2;
182
182
 
183
183
  /// Space is active. Swarming and replication will be done.
@@ -78,14 +78,14 @@ export enum NullValue {
78
78
  export interface ListValue {
79
79
  values?: Value[];
80
80
  }
81
- export interface Any {
82
- type_url: string;
83
- value: Uint8Array;
84
- }
85
81
  export interface Timestamp {
86
82
  seconds: string;
87
83
  nanos: number;
88
84
  }
85
+ export interface Any {
86
+ type_url: string;
87
+ value: Uint8Array;
88
+ }
89
89
  export interface FileDescriptorSet {
90
90
  file?: FileDescriptorProto[];
91
91
  }