@dcl/protocol 1.0.0-3874595169.commit-f6a7e18 → 1.0.0-3939040004.commit-2c2721f
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.
- package/out-ts/decentraland/bff/authentication_service.gen.ts +16 -0
- package/out-ts/decentraland/bff/comms_director_service.gen.ts +12 -0
- package/out-ts/decentraland/bff/comms_service.gen.ts +8 -0
- package/out-ts/decentraland/bff/http_endpoints.gen.ts +38 -0
- package/out-ts/decentraland/bff/topics_service.gen.ts +22 -0
- package/out-ts/decentraland/common/content_mapping.gen.ts +4 -0
- package/out-ts/decentraland/common/entity.gen.ts +4 -0
- package/out-ts/decentraland/common/sdk/user_data.gen.ts +12 -0
- package/out-ts/decentraland/common/vectors.gen.ts +12 -0
- package/out-ts/decentraland/kernel/apis/communications_controller.gen.ts +8 -0
- package/out-ts/decentraland/kernel/apis/dev_tools.gen.ts +8 -0
- package/out-ts/decentraland/kernel/apis/engine_api.gen.ts +132 -0
- package/out-ts/decentraland/kernel/apis/environment_api.gen.ts +74 -0
- package/out-ts/decentraland/kernel/apis/ethereum_controller.gen.ts +50 -0
- package/out-ts/decentraland/kernel/apis/parcel_identity.gen.ts +32 -0
- package/out-ts/decentraland/kernel/apis/permissions.gen.ts +16 -0
- package/out-ts/decentraland/kernel/apis/players.gen.ts +24 -0
- package/out-ts/decentraland/kernel/apis/portable_experiences.gen.ts +40 -0
- package/out-ts/decentraland/kernel/apis/restricted_actions.gen.ts +48 -0
- package/out-ts/decentraland/kernel/apis/runtime.gen.ts +336 -0
- package/out-ts/decentraland/kernel/apis/signed_fetch.gen.ts +20 -0
- package/out-ts/decentraland/kernel/apis/social_controller.gen.ts +12 -0
- package/out-ts/decentraland/kernel/apis/user_action_module.gen.ts +8 -0
- package/out-ts/decentraland/kernel/apis/user_identity.gen.ts +16 -0
- package/out-ts/decentraland/kernel/comms/rfc4/comms.gen.ts +32 -0
- package/out-ts/decentraland/kernel/comms/rfc5/ws_comms.gen.ts +40 -0
- package/out-ts/decentraland/kernel/comms/v3/archipelago.gen.ts +54 -0
- package/out-ts/decentraland/renderer/common/friend_request_common.gen.ts +4 -0
- package/out-ts/decentraland/renderer/engine_interface.gen.ts +264 -0
- package/out-ts/decentraland/renderer/kernel_services/analytics.gen.ts +42 -0
- package/out-ts/decentraland/renderer/kernel_services/emotes_kernel.gen.ts +8 -0
- package/out-ts/decentraland/renderer/kernel_services/friend_request_kernel.gen.ts +60 -0
- package/out-ts/decentraland/renderer/kernel_services/friends_kernel.gen.ts +191 -0
- package/out-ts/decentraland/renderer/renderer_services/crdt.gen.ts +12 -0
- package/out-ts/decentraland/renderer/renderer_services/emotes_renderer.gen.ts +12 -0
- package/out-ts/decentraland/renderer/renderer_services/friend_request_renderer.gen.ts +32 -0
- package/out-ts/decentraland/renderer/renderer_services/scene_controller.gen.ts +28 -0
- package/out-ts/decentraland/renderer/renderer_services/transport.gen.ts +4 -0
- package/out-ts/google/protobuf/empty.gen.ts +4 -0
- package/package.json +2 -2
- package/proto/decentraland/kernel/apis/environment_api.proto +2 -0
- package/proto/decentraland/kernel/apis/runtime.proto +29 -0
- package/proto/decentraland/renderer/kernel_services/friends_kernel.proto +22 -0
- package/public/renderer-interface.proto +2 -1
- package/public/sdk-apis.proto +1 -0
|
@@ -167,6 +167,10 @@ export const Position3DMessage = {
|
|
|
167
167
|
return obj;
|
|
168
168
|
},
|
|
169
169
|
|
|
170
|
+
create<I extends Exact<DeepPartial<Position3DMessage>, I>>(base?: I): Position3DMessage {
|
|
171
|
+
return Position3DMessage.fromPartial(base ?? {});
|
|
172
|
+
},
|
|
173
|
+
|
|
170
174
|
fromPartial<I extends Exact<DeepPartial<Position3DMessage>, I>>(object: I): Position3DMessage {
|
|
171
175
|
const message = createBasePosition3DMessage();
|
|
172
176
|
message.x = object.x ?? 0;
|
|
@@ -255,6 +259,10 @@ export const IslandChangedMessage = {
|
|
|
255
259
|
return obj;
|
|
256
260
|
},
|
|
257
261
|
|
|
262
|
+
create<I extends Exact<DeepPartial<IslandChangedMessage>, I>>(base?: I): IslandChangedMessage {
|
|
263
|
+
return IslandChangedMessage.fromPartial(base ?? {});
|
|
264
|
+
},
|
|
265
|
+
|
|
258
266
|
fromPartial<I extends Exact<DeepPartial<IslandChangedMessage>, I>>(object: I): IslandChangedMessage {
|
|
259
267
|
const message = createBaseIslandChangedMessage();
|
|
260
268
|
message.islandId = object.islandId ?? "";
|
|
@@ -323,6 +331,10 @@ export const IslandChangedMessage_PeersEntry = {
|
|
|
323
331
|
return obj;
|
|
324
332
|
},
|
|
325
333
|
|
|
334
|
+
create<I extends Exact<DeepPartial<IslandChangedMessage_PeersEntry>, I>>(base?: I): IslandChangedMessage_PeersEntry {
|
|
335
|
+
return IslandChangedMessage_PeersEntry.fromPartial(base ?? {});
|
|
336
|
+
},
|
|
337
|
+
|
|
326
338
|
fromPartial<I extends Exact<DeepPartial<IslandChangedMessage_PeersEntry>, I>>(
|
|
327
339
|
object: I,
|
|
328
340
|
): IslandChangedMessage_PeersEntry {
|
|
@@ -385,6 +397,10 @@ export const LeftIslandMessage = {
|
|
|
385
397
|
return obj;
|
|
386
398
|
},
|
|
387
399
|
|
|
400
|
+
create<I extends Exact<DeepPartial<LeftIslandMessage>, I>>(base?: I): LeftIslandMessage {
|
|
401
|
+
return LeftIslandMessage.fromPartial(base ?? {});
|
|
402
|
+
},
|
|
403
|
+
|
|
388
404
|
fromPartial<I extends Exact<DeepPartial<LeftIslandMessage>, I>>(object: I): LeftIslandMessage {
|
|
389
405
|
const message = createBaseLeftIslandMessage();
|
|
390
406
|
message.islandId = object.islandId ?? "";
|
|
@@ -443,6 +459,10 @@ export const JoinIslandMessage = {
|
|
|
443
459
|
return obj;
|
|
444
460
|
},
|
|
445
461
|
|
|
462
|
+
create<I extends Exact<DeepPartial<JoinIslandMessage>, I>>(base?: I): JoinIslandMessage {
|
|
463
|
+
return JoinIslandMessage.fromPartial(base ?? {});
|
|
464
|
+
},
|
|
465
|
+
|
|
446
466
|
fromPartial<I extends Exact<DeepPartial<JoinIslandMessage>, I>>(object: I): JoinIslandMessage {
|
|
447
467
|
const message = createBaseJoinIslandMessage();
|
|
448
468
|
message.islandId = object.islandId ?? "";
|
|
@@ -530,6 +550,10 @@ export const IslandData = {
|
|
|
530
550
|
return obj;
|
|
531
551
|
},
|
|
532
552
|
|
|
553
|
+
create<I extends Exact<DeepPartial<IslandData>, I>>(base?: I): IslandData {
|
|
554
|
+
return IslandData.fromPartial(base ?? {});
|
|
555
|
+
},
|
|
556
|
+
|
|
533
557
|
fromPartial<I extends Exact<DeepPartial<IslandData>, I>>(object: I): IslandData {
|
|
534
558
|
const message = createBaseIslandData();
|
|
535
559
|
message.id = object.id ?? "";
|
|
@@ -587,6 +611,10 @@ export const IslandStatusMessage = {
|
|
|
587
611
|
return obj;
|
|
588
612
|
},
|
|
589
613
|
|
|
614
|
+
create<I extends Exact<DeepPartial<IslandStatusMessage>, I>>(base?: I): IslandStatusMessage {
|
|
615
|
+
return IslandStatusMessage.fromPartial(base ?? {});
|
|
616
|
+
},
|
|
617
|
+
|
|
590
618
|
fromPartial<I extends Exact<DeepPartial<IslandStatusMessage>, I>>(object: I): IslandStatusMessage {
|
|
591
619
|
const message = createBaseIslandStatusMessage();
|
|
592
620
|
message.data = object.data?.map((e) => IslandData.fromPartial(e)) || [];
|
|
@@ -644,6 +672,10 @@ export const TransportInit = {
|
|
|
644
672
|
return obj;
|
|
645
673
|
},
|
|
646
674
|
|
|
675
|
+
create<I extends Exact<DeepPartial<TransportInit>, I>>(base?: I): TransportInit {
|
|
676
|
+
return TransportInit.fromPartial(base ?? {});
|
|
677
|
+
},
|
|
678
|
+
|
|
647
679
|
fromPartial<I extends Exact<DeepPartial<TransportInit>, I>>(object: I): TransportInit {
|
|
648
680
|
const message = createBaseTransportInit();
|
|
649
681
|
message.type = object.type ?? 0;
|
|
@@ -702,6 +734,10 @@ export const TransportHeartbeat = {
|
|
|
702
734
|
return obj;
|
|
703
735
|
},
|
|
704
736
|
|
|
737
|
+
create<I extends Exact<DeepPartial<TransportHeartbeat>, I>>(base?: I): TransportHeartbeat {
|
|
738
|
+
return TransportHeartbeat.fromPartial(base ?? {});
|
|
739
|
+
},
|
|
740
|
+
|
|
705
741
|
fromPartial<I extends Exact<DeepPartial<TransportHeartbeat>, I>>(object: I): TransportHeartbeat {
|
|
706
742
|
const message = createBaseTransportHeartbeat();
|
|
707
743
|
message.availableSeats = object.availableSeats ?? 0;
|
|
@@ -772,6 +808,10 @@ export const TransportAuthorizationRequest = {
|
|
|
772
808
|
return obj;
|
|
773
809
|
},
|
|
774
810
|
|
|
811
|
+
create<I extends Exact<DeepPartial<TransportAuthorizationRequest>, I>>(base?: I): TransportAuthorizationRequest {
|
|
812
|
+
return TransportAuthorizationRequest.fromPartial(base ?? {});
|
|
813
|
+
},
|
|
814
|
+
|
|
775
815
|
fromPartial<I extends Exact<DeepPartial<TransportAuthorizationRequest>, I>>(
|
|
776
816
|
object: I,
|
|
777
817
|
): TransportAuthorizationRequest {
|
|
@@ -847,6 +887,10 @@ export const TransportAuthorizationResponse = {
|
|
|
847
887
|
return obj;
|
|
848
888
|
},
|
|
849
889
|
|
|
890
|
+
create<I extends Exact<DeepPartial<TransportAuthorizationResponse>, I>>(base?: I): TransportAuthorizationResponse {
|
|
891
|
+
return TransportAuthorizationResponse.fromPartial(base ?? {});
|
|
892
|
+
},
|
|
893
|
+
|
|
850
894
|
fromPartial<I extends Exact<DeepPartial<TransportAuthorizationResponse>, I>>(
|
|
851
895
|
object: I,
|
|
852
896
|
): TransportAuthorizationResponse {
|
|
@@ -909,6 +953,12 @@ export const TransportAuthorizationResponse_ConnStrsEntry = {
|
|
|
909
953
|
return obj;
|
|
910
954
|
},
|
|
911
955
|
|
|
956
|
+
create<I extends Exact<DeepPartial<TransportAuthorizationResponse_ConnStrsEntry>, I>>(
|
|
957
|
+
base?: I,
|
|
958
|
+
): TransportAuthorizationResponse_ConnStrsEntry {
|
|
959
|
+
return TransportAuthorizationResponse_ConnStrsEntry.fromPartial(base ?? {});
|
|
960
|
+
},
|
|
961
|
+
|
|
912
962
|
fromPartial<I extends Exact<DeepPartial<TransportAuthorizationResponse_ConnStrsEntry>, I>>(
|
|
913
963
|
object: I,
|
|
914
964
|
): TransportAuthorizationResponse_ConnStrsEntry {
|
|
@@ -1002,6 +1052,10 @@ export const TransportMessage = {
|
|
|
1002
1052
|
return obj;
|
|
1003
1053
|
},
|
|
1004
1054
|
|
|
1055
|
+
create<I extends Exact<DeepPartial<TransportMessage>, I>>(base?: I): TransportMessage {
|
|
1056
|
+
return TransportMessage.fromPartial(base ?? {});
|
|
1057
|
+
},
|
|
1058
|
+
|
|
1005
1059
|
fromPartial<I extends Exact<DeepPartial<TransportMessage>, I>>(object: I): TransportMessage {
|
|
1006
1060
|
const message = createBaseTransportMessage();
|
|
1007
1061
|
if (object.message?.$case === "init" && object.message?.init !== undefined && object.message?.init !== null) {
|
|
@@ -143,6 +143,10 @@ export const FriendRequestInfo = {
|
|
|
143
143
|
return obj;
|
|
144
144
|
},
|
|
145
145
|
|
|
146
|
+
create<I extends Exact<DeepPartial<FriendRequestInfo>, I>>(base?: I): FriendRequestInfo {
|
|
147
|
+
return FriendRequestInfo.fromPartial(base ?? {});
|
|
148
|
+
},
|
|
149
|
+
|
|
146
150
|
fromPartial<I extends Exact<DeepPartial<FriendRequestInfo>, I>>(object: I): FriendRequestInfo {
|
|
147
151
|
const message = createBaseFriendRequestInfo();
|
|
148
152
|
message.friendRequestId = object.friendRequestId ?? "";
|