@dxos/protocols 0.5.1-main.39e0ee2 → 0.5.1-main.3c7169d

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;AA0iB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,wuzGAAwuzG,CAAC,CAAC,CAAC;AACjyzG,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;AAyiB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,q3yGAAq3yG,CAAC,CAAC,CAAC;AAC96yG,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.39e0ee2",
3
+ "version": "0.5.1-main.3c7169d",
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.39e0ee2",
37
- "@dxos/timeframe": "0.5.1-main.39e0ee2",
38
- "@dxos/codec-protobuf": "0.5.1-main.39e0ee2",
39
- "@dxos/invariant": "0.5.1-main.39e0ee2"
36
+ "@dxos/codec-protobuf": "0.5.1-main.3c7169d",
37
+ "@dxos/keys": "0.5.1-main.3c7169d",
38
+ "@dxos/invariant": "0.5.1-main.3c7169d",
39
+ "@dxos/timeframe": "0.5.1-main.3c7169d"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -78,19 +78,7 @@ message LayoutRequest {
78
78
  optional string target = 4;
79
79
  }
80
80
 
81
- message InvitationUrlRequest {
82
- /// Base URL for invitations.
83
- string invitation_url = 1;
84
-
85
- /// Query parameter for device invitations.
86
- string device_invitation_param = 2;
87
-
88
- /// Query parameter for space invitations.
89
- string space_invitation_param = 3;
90
- }
91
-
92
81
  /// Shell UI RPCs.
93
82
  service ShellService {
94
83
  rpc SetLayout(LayoutRequest) returns (google.protobuf.Empty);
95
- rpc SetInvitationUrl(InvitationUrlRequest) returns (google.protobuf.Empty);
96
84
  }
@@ -192,24 +192,6 @@ export interface LayoutRequest {
192
192
  */
193
193
  target?: string;
194
194
  }
195
- /**
196
- * Defined in:
197
- * {@link file://./../../dxos/iframe.proto}
198
- */
199
- export interface InvitationUrlRequest {
200
- /**
201
- * Base URL for invitations.
202
- */
203
- invitationUrl: string;
204
- /**
205
- * Query parameter for device invitations.
206
- */
207
- deviceInvitationParam: string;
208
- /**
209
- * Query parameter for space invitations.
210
- */
211
- spaceInvitationParam: string;
212
- }
213
195
  /**
214
196
  * Shell UI RPCs.
215
197
  *
@@ -218,5 +200,4 @@ export interface InvitationUrlRequest {
218
200
  */
219
201
  export interface ShellService {
220
202
  setLayout: (request: LayoutRequest, options?: RequestOptions) => Promise<void>;
221
- setInvitationUrl: (request: InvitationUrlRequest, options?: RequestOptions) => Promise<void>;
222
203
  }