@dxos/protocols 0.5.9-main.2e4fe25 → 0.5.9-main.7f832ba

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;AA+DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA2iB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,uv1GAAuv1G,CAAC,CAAC,CAAC;AAChz1G,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;AA+DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA2iB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,il1GAAil1G,CAAC,CAAC,CAAC;AAC1o1G,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.9-main.2e4fe25",
3
+ "version": "0.5.9-main.7f832ba",
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.5.9-main.2e4fe25",
37
- "@dxos/keys": "0.5.9-main.2e4fe25",
38
- "@dxos/invariant": "0.5.9-main.2e4fe25",
39
- "@dxos/timeframe": "0.5.9-main.2e4fe25"
36
+ "@dxos/codec-protobuf": "0.5.9-main.7f832ba",
37
+ "@dxos/invariant": "0.5.9-main.7f832ba",
38
+ "@dxos/keys": "0.5.9-main.7f832ba",
39
+ "@dxos/timeframe": "0.5.9-main.7f832ba"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -35,12 +35,8 @@ message AppContextRequest {
35
35
  /// The display mode that shell should use.
36
36
  optional ShellDisplay display = 1;
37
37
 
38
- // TODO(wittjosiah): Remove.
39
38
  /// The key of the joined space.
40
39
  optional dxos.keys.PublicKey space_key = 2;
41
-
42
- /// The id of the joined space.
43
- optional string space_id = 5;
44
40
 
45
41
  /// Target to redirect to after a successful invitation.
46
42
  optional string target = 3;
@@ -75,13 +71,9 @@ message LayoutRequest {
75
71
  /// Invitation code to join a space.
76
72
  optional string invitation_code = 2;
77
73
 
78
- // TODO(wittjosiah): Remove.
79
74
  /// Key of the space to share.
80
75
  optional dxos.keys.PublicKey space_key = 3;
81
76
 
82
- /// Id of the space to share.
83
- optional string space_id = 5;
84
-
85
77
  /// Target to include in an invitation for redirecting after a successful invitation.
86
78
  optional string target = 4;
87
79
  }
@@ -122,13 +122,6 @@ export interface AppContextRequest {
122
122
  * - proto3_optional = true
123
123
  */
124
124
  spaceKey?: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
125
- /**
126
- * The id of the joined space.
127
- *
128
- * Options:
129
- * - proto3_optional = true
130
- */
131
- spaceId?: string;
132
125
  /**
133
126
  * Target to redirect to after a successful invitation.
134
127
  *
@@ -191,13 +184,6 @@ export interface LayoutRequest {
191
184
  * - proto3_optional = true
192
185
  */
193
186
  spaceKey?: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
194
- /**
195
- * Id of the space to share.
196
- *
197
- * Options:
198
- * - proto3_optional = true
199
- */
200
- spaceId?: string;
201
187
  /**
202
188
  * Target to include in an invitation for redirecting after a successful invitation.
203
189
  *
@@ -80,14 +80,14 @@ export enum NullValue {
80
80
  export interface ListValue {
81
81
  values?: Value[];
82
82
  }
83
- export interface Any {
84
- type_url: string;
85
- value: Uint8Array;
86
- }
87
83
  export interface Timestamp {
88
84
  seconds: string;
89
85
  nanos: number;
90
86
  }
87
+ export interface Any {
88
+ type_url: string;
89
+ value: Uint8Array;
90
+ }
91
91
  export interface FileDescriptorSet {
92
92
  file?: FileDescriptorProto[];
93
93
  }