@dcl/protocol 1.0.0-3825036757.commit-42e850e → 1.0.0-3829276743.commit-49cc454
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.
|
@@ -3,15 +3,18 @@ import _m0 from "protobufjs/minimal";
|
|
|
3
3
|
|
|
4
4
|
export const protobufPackage = "decentraland.renderer.renderer_services";
|
|
5
5
|
|
|
6
|
+
/** @deprecated */
|
|
6
7
|
export interface CRDTManyMessages {
|
|
7
8
|
sceneId: string;
|
|
8
9
|
payload: Uint8Array;
|
|
9
10
|
sceneNumber: number;
|
|
10
11
|
}
|
|
11
12
|
|
|
13
|
+
/** @deprecated */
|
|
12
14
|
export interface CRDTResponse {
|
|
13
15
|
}
|
|
14
16
|
|
|
17
|
+
/** @deprecated */
|
|
15
18
|
export interface PullCRDTRequest {
|
|
16
19
|
sceneId: string;
|
|
17
20
|
sceneNumber: number;
|
|
@@ -187,6 +190,7 @@ export const CRDTServiceDefinition = {
|
|
|
187
190
|
name: "CRDTService",
|
|
188
191
|
fullName: "decentraland.renderer.renderer_services.CRDTService",
|
|
189
192
|
methods: {
|
|
193
|
+
/** @deprecated */
|
|
190
194
|
sendCrdt: {
|
|
191
195
|
name: "SendCrdt",
|
|
192
196
|
requestType: CRDTManyMessages,
|
|
@@ -195,6 +199,7 @@ export const CRDTServiceDefinition = {
|
|
|
195
199
|
responseStream: false,
|
|
196
200
|
options: {},
|
|
197
201
|
},
|
|
202
|
+
/** @deprecated */
|
|
198
203
|
pullCrdt: {
|
|
199
204
|
name: "PullCrdt",
|
|
200
205
|
requestType: PullCRDTRequest,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/protocol",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-3829276743.commit-49cc454",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"out-ts",
|
|
26
26
|
"public"
|
|
27
27
|
],
|
|
28
|
-
"commit": "
|
|
28
|
+
"commit": "49cc4543f285d8e48e42d5cfa6945effc10bfc0c"
|
|
29
29
|
}
|
|
@@ -3,19 +3,27 @@ syntax = "proto3";
|
|
|
3
3
|
package decentraland.renderer.renderer_services;
|
|
4
4
|
|
|
5
5
|
message CRDTManyMessages {
|
|
6
|
+
option deprecated = true;
|
|
6
7
|
string scene_id = 1;
|
|
7
8
|
bytes payload = 2;
|
|
8
9
|
int32 scene_number = 3;
|
|
9
10
|
}
|
|
10
11
|
|
|
11
|
-
message CRDTResponse {
|
|
12
|
+
message CRDTResponse {
|
|
13
|
+
option deprecated = true;
|
|
14
|
+
}
|
|
12
15
|
|
|
13
16
|
message PullCRDTRequest {
|
|
17
|
+
option deprecated = true;
|
|
14
18
|
string scene_id = 1;
|
|
15
19
|
int32 scene_number = 3;
|
|
16
20
|
}
|
|
17
21
|
|
|
18
22
|
service CRDTService {
|
|
19
|
-
rpc SendCrdt(CRDTManyMessages) returns (CRDTResponse){
|
|
20
|
-
|
|
23
|
+
rpc SendCrdt(CRDTManyMessages) returns (CRDTResponse){
|
|
24
|
+
option deprecated = true;
|
|
25
|
+
};
|
|
26
|
+
rpc PullCrdt(PullCRDTRequest) returns (CRDTManyMessages){
|
|
27
|
+
option deprecated = true;
|
|
28
|
+
};
|
|
21
29
|
}
|