@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
|
@@ -411,6 +411,10 @@ export const OpenExternalUrlBody = {
|
|
|
411
411
|
return obj;
|
|
412
412
|
},
|
|
413
413
|
|
|
414
|
+
create<I extends Exact<DeepPartial<OpenExternalUrlBody>, I>>(base?: I): OpenExternalUrlBody {
|
|
415
|
+
return OpenExternalUrlBody.fromPartial(base ?? {});
|
|
416
|
+
},
|
|
417
|
+
|
|
414
418
|
fromPartial<I extends Exact<DeepPartial<OpenExternalUrlBody>, I>>(object: I): OpenExternalUrlBody {
|
|
415
419
|
const message = createBaseOpenExternalUrlBody();
|
|
416
420
|
message.url = object.url ?? "";
|
|
@@ -476,6 +480,10 @@ export const OpenNFTDialogBody = {
|
|
|
476
480
|
return obj;
|
|
477
481
|
},
|
|
478
482
|
|
|
483
|
+
create<I extends Exact<DeepPartial<OpenNFTDialogBody>, I>>(base?: I): OpenNFTDialogBody {
|
|
484
|
+
return OpenNFTDialogBody.fromPartial(base ?? {});
|
|
485
|
+
},
|
|
486
|
+
|
|
479
487
|
fromPartial<I extends Exact<DeepPartial<OpenNFTDialogBody>, I>>(object: I): OpenNFTDialogBody {
|
|
480
488
|
const message = createBaseOpenNFTDialogBody();
|
|
481
489
|
message.assetContractAddress = object.assetContractAddress ?? "";
|
|
@@ -525,6 +533,10 @@ export const CreateEntityBody = {
|
|
|
525
533
|
return obj;
|
|
526
534
|
},
|
|
527
535
|
|
|
536
|
+
create<I extends Exact<DeepPartial<CreateEntityBody>, I>>(base?: I): CreateEntityBody {
|
|
537
|
+
return CreateEntityBody.fromPartial(base ?? {});
|
|
538
|
+
},
|
|
539
|
+
|
|
528
540
|
fromPartial<I extends Exact<DeepPartial<CreateEntityBody>, I>>(object: I): CreateEntityBody {
|
|
529
541
|
const message = createBaseCreateEntityBody();
|
|
530
542
|
message.id = object.id ?? "";
|
|
@@ -572,6 +584,10 @@ export const RemoveEntityBody = {
|
|
|
572
584
|
return obj;
|
|
573
585
|
},
|
|
574
586
|
|
|
587
|
+
create<I extends Exact<DeepPartial<RemoveEntityBody>, I>>(base?: I): RemoveEntityBody {
|
|
588
|
+
return RemoveEntityBody.fromPartial(base ?? {});
|
|
589
|
+
},
|
|
590
|
+
|
|
575
591
|
fromPartial<I extends Exact<DeepPartial<RemoveEntityBody>, I>>(object: I): RemoveEntityBody {
|
|
576
592
|
const message = createBaseRemoveEntityBody();
|
|
577
593
|
message.id = object.id ?? "";
|
|
@@ -645,6 +661,10 @@ export const UpdateEntityComponentBody = {
|
|
|
645
661
|
return obj;
|
|
646
662
|
},
|
|
647
663
|
|
|
664
|
+
create<I extends Exact<DeepPartial<UpdateEntityComponentBody>, I>>(base?: I): UpdateEntityComponentBody {
|
|
665
|
+
return UpdateEntityComponentBody.fromPartial(base ?? {});
|
|
666
|
+
},
|
|
667
|
+
|
|
648
668
|
fromPartial<I extends Exact<DeepPartial<UpdateEntityComponentBody>, I>>(object: I): UpdateEntityComponentBody {
|
|
649
669
|
const message = createBaseUpdateEntityComponentBody();
|
|
650
670
|
message.entityId = object.entityId ?? "";
|
|
@@ -713,6 +733,10 @@ export const AttachEntityComponentBody = {
|
|
|
713
733
|
return obj;
|
|
714
734
|
},
|
|
715
735
|
|
|
736
|
+
create<I extends Exact<DeepPartial<AttachEntityComponentBody>, I>>(base?: I): AttachEntityComponentBody {
|
|
737
|
+
return AttachEntityComponentBody.fromPartial(base ?? {});
|
|
738
|
+
},
|
|
739
|
+
|
|
716
740
|
fromPartial<I extends Exact<DeepPartial<AttachEntityComponentBody>, I>>(object: I): AttachEntityComponentBody {
|
|
717
741
|
const message = createBaseAttachEntityComponentBody();
|
|
718
742
|
message.entityId = object.entityId ?? "";
|
|
@@ -772,6 +796,10 @@ export const ComponentRemovedBody = {
|
|
|
772
796
|
return obj;
|
|
773
797
|
},
|
|
774
798
|
|
|
799
|
+
create<I extends Exact<DeepPartial<ComponentRemovedBody>, I>>(base?: I): ComponentRemovedBody {
|
|
800
|
+
return ComponentRemovedBody.fromPartial(base ?? {});
|
|
801
|
+
},
|
|
802
|
+
|
|
775
803
|
fromPartial<I extends Exact<DeepPartial<ComponentRemovedBody>, I>>(object: I): ComponentRemovedBody {
|
|
776
804
|
const message = createBaseComponentRemovedBody();
|
|
777
805
|
message.entityId = object.entityId ?? "";
|
|
@@ -830,6 +858,10 @@ export const SetEntityParentBody = {
|
|
|
830
858
|
return obj;
|
|
831
859
|
},
|
|
832
860
|
|
|
861
|
+
create<I extends Exact<DeepPartial<SetEntityParentBody>, I>>(base?: I): SetEntityParentBody {
|
|
862
|
+
return SetEntityParentBody.fromPartial(base ?? {});
|
|
863
|
+
},
|
|
864
|
+
|
|
833
865
|
fromPartial<I extends Exact<DeepPartial<SetEntityParentBody>, I>>(object: I): SetEntityParentBody {
|
|
834
866
|
const message = createBaseSetEntityParentBody();
|
|
835
867
|
message.entityId = object.entityId ?? "";
|
|
@@ -888,6 +920,10 @@ export const QueryBody = {
|
|
|
888
920
|
return obj;
|
|
889
921
|
},
|
|
890
922
|
|
|
923
|
+
create<I extends Exact<DeepPartial<QueryBody>, I>>(base?: I): QueryBody {
|
|
924
|
+
return QueryBody.fromPartial(base ?? {});
|
|
925
|
+
},
|
|
926
|
+
|
|
891
927
|
fromPartial<I extends Exact<DeepPartial<QueryBody>, I>>(object: I): QueryBody {
|
|
892
928
|
const message = createBaseQueryBody();
|
|
893
929
|
message.queryId = object.queryId ?? 0;
|
|
@@ -954,6 +990,10 @@ export const ComponentCreatedBody = {
|
|
|
954
990
|
return obj;
|
|
955
991
|
},
|
|
956
992
|
|
|
993
|
+
create<I extends Exact<DeepPartial<ComponentCreatedBody>, I>>(base?: I): ComponentCreatedBody {
|
|
994
|
+
return ComponentCreatedBody.fromPartial(base ?? {});
|
|
995
|
+
},
|
|
996
|
+
|
|
957
997
|
fromPartial<I extends Exact<DeepPartial<ComponentCreatedBody>, I>>(object: I): ComponentCreatedBody {
|
|
958
998
|
const message = createBaseComponentCreatedBody();
|
|
959
999
|
message.id = object.id ?? "";
|
|
@@ -1003,6 +1043,10 @@ export const ComponentDisposedBody = {
|
|
|
1003
1043
|
return obj;
|
|
1004
1044
|
},
|
|
1005
1045
|
|
|
1046
|
+
create<I extends Exact<DeepPartial<ComponentDisposedBody>, I>>(base?: I): ComponentDisposedBody {
|
|
1047
|
+
return ComponentDisposedBody.fromPartial(base ?? {});
|
|
1048
|
+
},
|
|
1049
|
+
|
|
1006
1050
|
fromPartial<I extends Exact<DeepPartial<ComponentDisposedBody>, I>>(object: I): ComponentDisposedBody {
|
|
1007
1051
|
const message = createBaseComponentDisposedBody();
|
|
1008
1052
|
message.id = object.id ?? "";
|
|
@@ -1057,6 +1101,10 @@ export const ComponentUpdatedBody = {
|
|
|
1057
1101
|
return obj;
|
|
1058
1102
|
},
|
|
1059
1103
|
|
|
1104
|
+
create<I extends Exact<DeepPartial<ComponentUpdatedBody>, I>>(base?: I): ComponentUpdatedBody {
|
|
1105
|
+
return ComponentUpdatedBody.fromPartial(base ?? {});
|
|
1106
|
+
},
|
|
1107
|
+
|
|
1060
1108
|
fromPartial<I extends Exact<DeepPartial<ComponentUpdatedBody>, I>>(object: I): ComponentUpdatedBody {
|
|
1061
1109
|
const message = createBaseComponentUpdatedBody();
|
|
1062
1110
|
message.id = object.id ?? "";
|
|
@@ -1098,6 +1146,10 @@ export const InitMessagesFinishedBody = {
|
|
|
1098
1146
|
return obj;
|
|
1099
1147
|
},
|
|
1100
1148
|
|
|
1149
|
+
create<I extends Exact<DeepPartial<InitMessagesFinishedBody>, I>>(base?: I): InitMessagesFinishedBody {
|
|
1150
|
+
return InitMessagesFinishedBody.fromPartial(base ?? {});
|
|
1151
|
+
},
|
|
1152
|
+
|
|
1101
1153
|
fromPartial<I extends Exact<DeepPartial<InitMessagesFinishedBody>, I>>(_: I): InitMessagesFinishedBody {
|
|
1102
1154
|
const message = createBaseInitMessagesFinishedBody();
|
|
1103
1155
|
return message;
|
|
@@ -1289,6 +1341,10 @@ export const Payload = {
|
|
|
1289
1341
|
return obj;
|
|
1290
1342
|
},
|
|
1291
1343
|
|
|
1344
|
+
create<I extends Exact<DeepPartial<Payload>, I>>(base?: I): Payload {
|
|
1345
|
+
return Payload.fromPartial(base ?? {});
|
|
1346
|
+
},
|
|
1347
|
+
|
|
1292
1348
|
fromPartial<I extends Exact<DeepPartial<Payload>, I>>(object: I): Payload {
|
|
1293
1349
|
const message = createBasePayload();
|
|
1294
1350
|
message.openExternalUrl = (object.openExternalUrl !== undefined && object.openExternalUrl !== null)
|
|
@@ -1394,6 +1450,10 @@ export const EntityAction = {
|
|
|
1394
1450
|
return obj;
|
|
1395
1451
|
},
|
|
1396
1452
|
|
|
1453
|
+
create<I extends Exact<DeepPartial<EntityAction>, I>>(base?: I): EntityAction {
|
|
1454
|
+
return EntityAction.fromPartial(base ?? {});
|
|
1455
|
+
},
|
|
1456
|
+
|
|
1397
1457
|
fromPartial<I extends Exact<DeepPartial<EntityAction>, I>>(object: I): EntityAction {
|
|
1398
1458
|
const message = createBaseEntityAction();
|
|
1399
1459
|
message.type = object.type ?? 0;
|
|
@@ -1449,6 +1509,10 @@ export const ManyEntityAction = {
|
|
|
1449
1509
|
return obj;
|
|
1450
1510
|
},
|
|
1451
1511
|
|
|
1512
|
+
create<I extends Exact<DeepPartial<ManyEntityAction>, I>>(base?: I): ManyEntityAction {
|
|
1513
|
+
return ManyEntityAction.fromPartial(base ?? {});
|
|
1514
|
+
},
|
|
1515
|
+
|
|
1452
1516
|
fromPartial<I extends Exact<DeepPartial<ManyEntityAction>, I>>(object: I): ManyEntityAction {
|
|
1453
1517
|
const message = createBaseManyEntityAction();
|
|
1454
1518
|
message.actions = object.actions?.map((e) => EntityAction.fromPartial(e)) || [];
|
|
@@ -1500,6 +1564,10 @@ export const SendBatchResponse = {
|
|
|
1500
1564
|
return obj;
|
|
1501
1565
|
},
|
|
1502
1566
|
|
|
1567
|
+
create<I extends Exact<DeepPartial<SendBatchResponse>, I>>(base?: I): SendBatchResponse {
|
|
1568
|
+
return SendBatchResponse.fromPartial(base ?? {});
|
|
1569
|
+
},
|
|
1570
|
+
|
|
1503
1571
|
fromPartial<I extends Exact<DeepPartial<SendBatchResponse>, I>>(object: I): SendBatchResponse {
|
|
1504
1572
|
const message = createBaseSendBatchResponse();
|
|
1505
1573
|
message.events = object.events?.map((e) => EventData.fromPartial(e)) || [];
|
|
@@ -1547,6 +1615,10 @@ export const UnsubscribeRequest = {
|
|
|
1547
1615
|
return obj;
|
|
1548
1616
|
},
|
|
1549
1617
|
|
|
1618
|
+
create<I extends Exact<DeepPartial<UnsubscribeRequest>, I>>(base?: I): UnsubscribeRequest {
|
|
1619
|
+
return UnsubscribeRequest.fromPartial(base ?? {});
|
|
1620
|
+
},
|
|
1621
|
+
|
|
1550
1622
|
fromPartial<I extends Exact<DeepPartial<UnsubscribeRequest>, I>>(object: I): UnsubscribeRequest {
|
|
1551
1623
|
const message = createBaseUnsubscribeRequest();
|
|
1552
1624
|
message.eventId = object.eventId ?? "";
|
|
@@ -1594,6 +1666,10 @@ export const SubscribeRequest = {
|
|
|
1594
1666
|
return obj;
|
|
1595
1667
|
},
|
|
1596
1668
|
|
|
1669
|
+
create<I extends Exact<DeepPartial<SubscribeRequest>, I>>(base?: I): SubscribeRequest {
|
|
1670
|
+
return SubscribeRequest.fromPartial(base ?? {});
|
|
1671
|
+
},
|
|
1672
|
+
|
|
1597
1673
|
fromPartial<I extends Exact<DeepPartial<SubscribeRequest>, I>>(object: I): SubscribeRequest {
|
|
1598
1674
|
const message = createBaseSubscribeRequest();
|
|
1599
1675
|
message.eventId = object.eventId ?? "";
|
|
@@ -1634,6 +1710,10 @@ export const SubscribeResponse = {
|
|
|
1634
1710
|
return obj;
|
|
1635
1711
|
},
|
|
1636
1712
|
|
|
1713
|
+
create<I extends Exact<DeepPartial<SubscribeResponse>, I>>(base?: I): SubscribeResponse {
|
|
1714
|
+
return SubscribeResponse.fromPartial(base ?? {});
|
|
1715
|
+
},
|
|
1716
|
+
|
|
1637
1717
|
fromPartial<I extends Exact<DeepPartial<SubscribeResponse>, I>>(_: I): SubscribeResponse {
|
|
1638
1718
|
const message = createBaseSubscribeResponse();
|
|
1639
1719
|
return message;
|
|
@@ -1673,6 +1753,10 @@ export const UnsubscribeResponse = {
|
|
|
1673
1753
|
return obj;
|
|
1674
1754
|
},
|
|
1675
1755
|
|
|
1756
|
+
create<I extends Exact<DeepPartial<UnsubscribeResponse>, I>>(base?: I): UnsubscribeResponse {
|
|
1757
|
+
return UnsubscribeResponse.fromPartial(base ?? {});
|
|
1758
|
+
},
|
|
1759
|
+
|
|
1676
1760
|
fromPartial<I extends Exact<DeepPartial<UnsubscribeResponse>, I>>(_: I): UnsubscribeResponse {
|
|
1677
1761
|
const message = createBaseUnsubscribeResponse();
|
|
1678
1762
|
return message;
|
|
@@ -1729,6 +1813,10 @@ export const GenericPayload = {
|
|
|
1729
1813
|
return obj;
|
|
1730
1814
|
},
|
|
1731
1815
|
|
|
1816
|
+
create<I extends Exact<DeepPartial<GenericPayload>, I>>(base?: I): GenericPayload {
|
|
1817
|
+
return GenericPayload.fromPartial(base ?? {});
|
|
1818
|
+
},
|
|
1819
|
+
|
|
1732
1820
|
fromPartial<I extends Exact<DeepPartial<GenericPayload>, I>>(object: I): GenericPayload {
|
|
1733
1821
|
const message = createBaseGenericPayload();
|
|
1734
1822
|
message.eventId = object.eventId ?? "";
|
|
@@ -1795,6 +1883,10 @@ export const ReadOnlyVector3 = {
|
|
|
1795
1883
|
return obj;
|
|
1796
1884
|
},
|
|
1797
1885
|
|
|
1886
|
+
create<I extends Exact<DeepPartial<ReadOnlyVector3>, I>>(base?: I): ReadOnlyVector3 {
|
|
1887
|
+
return ReadOnlyVector3.fromPartial(base ?? {});
|
|
1888
|
+
},
|
|
1889
|
+
|
|
1798
1890
|
fromPartial<I extends Exact<DeepPartial<ReadOnlyVector3>, I>>(object: I): ReadOnlyVector3 {
|
|
1799
1891
|
const message = createBaseReadOnlyVector3();
|
|
1800
1892
|
message.x = object.x ?? 0;
|
|
@@ -1870,6 +1962,10 @@ export const ReadOnlyQuaternion = {
|
|
|
1870
1962
|
return obj;
|
|
1871
1963
|
},
|
|
1872
1964
|
|
|
1965
|
+
create<I extends Exact<DeepPartial<ReadOnlyQuaternion>, I>>(base?: I): ReadOnlyQuaternion {
|
|
1966
|
+
return ReadOnlyQuaternion.fromPartial(base ?? {});
|
|
1967
|
+
},
|
|
1968
|
+
|
|
1873
1969
|
fromPartial<I extends Exact<DeepPartial<ReadOnlyQuaternion>, I>>(object: I): ReadOnlyQuaternion {
|
|
1874
1970
|
const message = createBaseReadOnlyQuaternion();
|
|
1875
1971
|
message.x = object.x ?? 0;
|
|
@@ -1940,6 +2036,10 @@ export const PositionChangedPayload = {
|
|
|
1940
2036
|
return obj;
|
|
1941
2037
|
},
|
|
1942
2038
|
|
|
2039
|
+
create<I extends Exact<DeepPartial<PositionChangedPayload>, I>>(base?: I): PositionChangedPayload {
|
|
2040
|
+
return PositionChangedPayload.fromPartial(base ?? {});
|
|
2041
|
+
},
|
|
2042
|
+
|
|
1943
2043
|
fromPartial<I extends Exact<DeepPartial<PositionChangedPayload>, I>>(object: I): PositionChangedPayload {
|
|
1944
2044
|
const message = createBasePositionChangedPayload();
|
|
1945
2045
|
message.position = (object.position !== undefined && object.position !== null)
|
|
@@ -2005,6 +2105,10 @@ export const RotationChangedPayload = {
|
|
|
2005
2105
|
return obj;
|
|
2006
2106
|
},
|
|
2007
2107
|
|
|
2108
|
+
create<I extends Exact<DeepPartial<RotationChangedPayload>, I>>(base?: I): RotationChangedPayload {
|
|
2109
|
+
return RotationChangedPayload.fromPartial(base ?? {});
|
|
2110
|
+
},
|
|
2111
|
+
|
|
2008
2112
|
fromPartial<I extends Exact<DeepPartial<RotationChangedPayload>, I>>(object: I): RotationChangedPayload {
|
|
2009
2113
|
const message = createBaseRotationChangedPayload();
|
|
2010
2114
|
message.rotation = (object.rotation !== undefined && object.rotation !== null)
|
|
@@ -2092,6 +2196,10 @@ export const EventData = {
|
|
|
2092
2196
|
return obj;
|
|
2093
2197
|
},
|
|
2094
2198
|
|
|
2199
|
+
create<I extends Exact<DeepPartial<EventData>, I>>(base?: I): EventData {
|
|
2200
|
+
return EventData.fromPartial(base ?? {});
|
|
2201
|
+
},
|
|
2202
|
+
|
|
2095
2203
|
fromPartial<I extends Exact<DeepPartial<EventData>, I>>(object: I): EventData {
|
|
2096
2204
|
const message = createBaseEventData();
|
|
2097
2205
|
message.type = object.type ?? 0;
|
|
@@ -2149,6 +2257,10 @@ export const CrdtSendToRendererRequest = {
|
|
|
2149
2257
|
return obj;
|
|
2150
2258
|
},
|
|
2151
2259
|
|
|
2260
|
+
create<I extends Exact<DeepPartial<CrdtSendToRendererRequest>, I>>(base?: I): CrdtSendToRendererRequest {
|
|
2261
|
+
return CrdtSendToRendererRequest.fromPartial(base ?? {});
|
|
2262
|
+
},
|
|
2263
|
+
|
|
2152
2264
|
fromPartial<I extends Exact<DeepPartial<CrdtSendToRendererRequest>, I>>(object: I): CrdtSendToRendererRequest {
|
|
2153
2265
|
const message = createBaseCrdtSendToRendererRequest();
|
|
2154
2266
|
message.data = object.data ?? new Uint8Array();
|
|
@@ -2200,6 +2312,10 @@ export const CrdtSendToResponse = {
|
|
|
2200
2312
|
return obj;
|
|
2201
2313
|
},
|
|
2202
2314
|
|
|
2315
|
+
create<I extends Exact<DeepPartial<CrdtSendToResponse>, I>>(base?: I): CrdtSendToResponse {
|
|
2316
|
+
return CrdtSendToResponse.fromPartial(base ?? {});
|
|
2317
|
+
},
|
|
2318
|
+
|
|
2203
2319
|
fromPartial<I extends Exact<DeepPartial<CrdtSendToResponse>, I>>(object: I): CrdtSendToResponse {
|
|
2204
2320
|
const message = createBaseCrdtSendToResponse();
|
|
2205
2321
|
message.data = object.data?.map((e) => e) || [];
|
|
@@ -2240,6 +2356,10 @@ export const CrdtGetStateRequest = {
|
|
|
2240
2356
|
return obj;
|
|
2241
2357
|
},
|
|
2242
2358
|
|
|
2359
|
+
create<I extends Exact<DeepPartial<CrdtGetStateRequest>, I>>(base?: I): CrdtGetStateRequest {
|
|
2360
|
+
return CrdtGetStateRequest.fromPartial(base ?? {});
|
|
2361
|
+
},
|
|
2362
|
+
|
|
2243
2363
|
fromPartial<I extends Exact<DeepPartial<CrdtGetStateRequest>, I>>(_: I): CrdtGetStateRequest {
|
|
2244
2364
|
const message = createBaseCrdtGetStateRequest();
|
|
2245
2365
|
return message;
|
|
@@ -2300,6 +2420,10 @@ export const CrdtGetStateResponse = {
|
|
|
2300
2420
|
return obj;
|
|
2301
2421
|
},
|
|
2302
2422
|
|
|
2423
|
+
create<I extends Exact<DeepPartial<CrdtGetStateResponse>, I>>(base?: I): CrdtGetStateResponse {
|
|
2424
|
+
return CrdtGetStateResponse.fromPartial(base ?? {});
|
|
2425
|
+
},
|
|
2426
|
+
|
|
2303
2427
|
fromPartial<I extends Exact<DeepPartial<CrdtGetStateResponse>, I>>(object: I): CrdtGetStateResponse {
|
|
2304
2428
|
const message = createBaseCrdtGetStateResponse();
|
|
2305
2429
|
message.hasEntities = object.hasEntities ?? false;
|
|
@@ -2341,6 +2465,10 @@ export const CrdtMessageFromRendererRequest = {
|
|
|
2341
2465
|
return obj;
|
|
2342
2466
|
},
|
|
2343
2467
|
|
|
2468
|
+
create<I extends Exact<DeepPartial<CrdtMessageFromRendererRequest>, I>>(base?: I): CrdtMessageFromRendererRequest {
|
|
2469
|
+
return CrdtMessageFromRendererRequest.fromPartial(base ?? {});
|
|
2470
|
+
},
|
|
2471
|
+
|
|
2344
2472
|
fromPartial<I extends Exact<DeepPartial<CrdtMessageFromRendererRequest>, I>>(_: I): CrdtMessageFromRendererRequest {
|
|
2345
2473
|
const message = createBaseCrdtMessageFromRendererRequest();
|
|
2346
2474
|
return message;
|
|
@@ -2391,6 +2519,10 @@ export const CrdtMessageFromRendererResponse = {
|
|
|
2391
2519
|
return obj;
|
|
2392
2520
|
},
|
|
2393
2521
|
|
|
2522
|
+
create<I extends Exact<DeepPartial<CrdtMessageFromRendererResponse>, I>>(base?: I): CrdtMessageFromRendererResponse {
|
|
2523
|
+
return CrdtMessageFromRendererResponse.fromPartial(base ?? {});
|
|
2524
|
+
},
|
|
2525
|
+
|
|
2394
2526
|
fromPartial<I extends Exact<DeepPartial<CrdtMessageFromRendererResponse>, I>>(
|
|
2395
2527
|
object: I,
|
|
2396
2528
|
): CrdtMessageFromRendererResponse {
|
|
@@ -130,6 +130,10 @@ export const MinimalRunnableEntity = {
|
|
|
130
130
|
return obj;
|
|
131
131
|
},
|
|
132
132
|
|
|
133
|
+
create<I extends Exact<DeepPartial<MinimalRunnableEntity>, I>>(base?: I): MinimalRunnableEntity {
|
|
134
|
+
return MinimalRunnableEntity.fromPartial(base ?? {});
|
|
135
|
+
},
|
|
136
|
+
|
|
133
137
|
fromPartial<I extends Exact<DeepPartial<MinimalRunnableEntity>, I>>(object: I): MinimalRunnableEntity {
|
|
134
138
|
const message = createBaseMinimalRunnableEntity();
|
|
135
139
|
message.content = object.content?.map((e) => ContentMapping.fromPartial(e)) || [];
|
|
@@ -205,6 +209,10 @@ export const BootstrapDataResponse = {
|
|
|
205
209
|
return obj;
|
|
206
210
|
},
|
|
207
211
|
|
|
212
|
+
create<I extends Exact<DeepPartial<BootstrapDataResponse>, I>>(base?: I): BootstrapDataResponse {
|
|
213
|
+
return BootstrapDataResponse.fromPartial(base ?? {});
|
|
214
|
+
},
|
|
215
|
+
|
|
208
216
|
fromPartial<I extends Exact<DeepPartial<BootstrapDataResponse>, I>>(object: I): BootstrapDataResponse {
|
|
209
217
|
const message = createBaseBootstrapDataResponse();
|
|
210
218
|
message.id = object.id ?? "";
|
|
@@ -257,6 +265,10 @@ export const PreviewModeResponse = {
|
|
|
257
265
|
return obj;
|
|
258
266
|
},
|
|
259
267
|
|
|
268
|
+
create<I extends Exact<DeepPartial<PreviewModeResponse>, I>>(base?: I): PreviewModeResponse {
|
|
269
|
+
return PreviewModeResponse.fromPartial(base ?? {});
|
|
270
|
+
},
|
|
271
|
+
|
|
260
272
|
fromPartial<I extends Exact<DeepPartial<PreviewModeResponse>, I>>(object: I): PreviewModeResponse {
|
|
261
273
|
const message = createBasePreviewModeResponse();
|
|
262
274
|
message.isPreview = object.isPreview ?? false;
|
|
@@ -304,6 +316,10 @@ export const AreUnsafeRequestAllowedResponse = {
|
|
|
304
316
|
return obj;
|
|
305
317
|
},
|
|
306
318
|
|
|
319
|
+
create<I extends Exact<DeepPartial<AreUnsafeRequestAllowedResponse>, I>>(base?: I): AreUnsafeRequestAllowedResponse {
|
|
320
|
+
return AreUnsafeRequestAllowedResponse.fromPartial(base ?? {});
|
|
321
|
+
},
|
|
322
|
+
|
|
307
323
|
fromPartial<I extends Exact<DeepPartial<AreUnsafeRequestAllowedResponse>, I>>(
|
|
308
324
|
object: I,
|
|
309
325
|
): AreUnsafeRequestAllowedResponse {
|
|
@@ -353,6 +369,10 @@ export const GetPlatformResponse = {
|
|
|
353
369
|
return obj;
|
|
354
370
|
},
|
|
355
371
|
|
|
372
|
+
create<I extends Exact<DeepPartial<GetPlatformResponse>, I>>(base?: I): GetPlatformResponse {
|
|
373
|
+
return GetPlatformResponse.fromPartial(base ?? {});
|
|
374
|
+
},
|
|
375
|
+
|
|
356
376
|
fromPartial<I extends Exact<DeepPartial<GetPlatformResponse>, I>>(object: I): GetPlatformResponse {
|
|
357
377
|
const message = createBaseGetPlatformResponse();
|
|
358
378
|
message.platform = object.platform ?? "";
|
|
@@ -442,6 +462,10 @@ export const EnvironmentRealm = {
|
|
|
442
462
|
return obj;
|
|
443
463
|
},
|
|
444
464
|
|
|
465
|
+
create<I extends Exact<DeepPartial<EnvironmentRealm>, I>>(base?: I): EnvironmentRealm {
|
|
466
|
+
return EnvironmentRealm.fromPartial(base ?? {});
|
|
467
|
+
},
|
|
468
|
+
|
|
445
469
|
fromPartial<I extends Exact<DeepPartial<EnvironmentRealm>, I>>(object: I): EnvironmentRealm {
|
|
446
470
|
const message = createBaseEnvironmentRealm();
|
|
447
471
|
message.domain = object.domain ?? "";
|
|
@@ -495,6 +519,10 @@ export const GetCurrentRealmResponse = {
|
|
|
495
519
|
return obj;
|
|
496
520
|
},
|
|
497
521
|
|
|
522
|
+
create<I extends Exact<DeepPartial<GetCurrentRealmResponse>, I>>(base?: I): GetCurrentRealmResponse {
|
|
523
|
+
return GetCurrentRealmResponse.fromPartial(base ?? {});
|
|
524
|
+
},
|
|
525
|
+
|
|
498
526
|
fromPartial<I extends Exact<DeepPartial<GetCurrentRealmResponse>, I>>(object: I): GetCurrentRealmResponse {
|
|
499
527
|
const message = createBaseGetCurrentRealmResponse();
|
|
500
528
|
message.currentRealm = (object.currentRealm !== undefined && object.currentRealm !== null)
|
|
@@ -568,6 +596,12 @@ export const GetExplorerConfigurationResponse = {
|
|
|
568
596
|
return obj;
|
|
569
597
|
},
|
|
570
598
|
|
|
599
|
+
create<I extends Exact<DeepPartial<GetExplorerConfigurationResponse>, I>>(
|
|
600
|
+
base?: I,
|
|
601
|
+
): GetExplorerConfigurationResponse {
|
|
602
|
+
return GetExplorerConfigurationResponse.fromPartial(base ?? {});
|
|
603
|
+
},
|
|
604
|
+
|
|
571
605
|
fromPartial<I extends Exact<DeepPartial<GetExplorerConfigurationResponse>, I>>(
|
|
572
606
|
object: I,
|
|
573
607
|
): GetExplorerConfigurationResponse {
|
|
@@ -636,6 +670,12 @@ export const GetExplorerConfigurationResponse_ConfigurationsEntry = {
|
|
|
636
670
|
return obj;
|
|
637
671
|
},
|
|
638
672
|
|
|
673
|
+
create<I extends Exact<DeepPartial<GetExplorerConfigurationResponse_ConfigurationsEntry>, I>>(
|
|
674
|
+
base?: I,
|
|
675
|
+
): GetExplorerConfigurationResponse_ConfigurationsEntry {
|
|
676
|
+
return GetExplorerConfigurationResponse_ConfigurationsEntry.fromPartial(base ?? {});
|
|
677
|
+
},
|
|
678
|
+
|
|
639
679
|
fromPartial<I extends Exact<DeepPartial<GetExplorerConfigurationResponse_ConfigurationsEntry>, I>>(
|
|
640
680
|
object: I,
|
|
641
681
|
): GetExplorerConfigurationResponse_ConfigurationsEntry {
|
|
@@ -686,6 +726,10 @@ export const GetDecentralandTimeResponse = {
|
|
|
686
726
|
return obj;
|
|
687
727
|
},
|
|
688
728
|
|
|
729
|
+
create<I extends Exact<DeepPartial<GetDecentralandTimeResponse>, I>>(base?: I): GetDecentralandTimeResponse {
|
|
730
|
+
return GetDecentralandTimeResponse.fromPartial(base ?? {});
|
|
731
|
+
},
|
|
732
|
+
|
|
689
733
|
fromPartial<I extends Exact<DeepPartial<GetDecentralandTimeResponse>, I>>(object: I): GetDecentralandTimeResponse {
|
|
690
734
|
const message = createBaseGetDecentralandTimeResponse();
|
|
691
735
|
message.seconds = object.seconds ?? 0;
|
|
@@ -726,6 +770,10 @@ export const GetBootstrapDataRequest = {
|
|
|
726
770
|
return obj;
|
|
727
771
|
},
|
|
728
772
|
|
|
773
|
+
create<I extends Exact<DeepPartial<GetBootstrapDataRequest>, I>>(base?: I): GetBootstrapDataRequest {
|
|
774
|
+
return GetBootstrapDataRequest.fromPartial(base ?? {});
|
|
775
|
+
},
|
|
776
|
+
|
|
729
777
|
fromPartial<I extends Exact<DeepPartial<GetBootstrapDataRequest>, I>>(_: I): GetBootstrapDataRequest {
|
|
730
778
|
const message = createBaseGetBootstrapDataRequest();
|
|
731
779
|
return message;
|
|
@@ -765,6 +813,10 @@ export const IsPreviewModeRequest = {
|
|
|
765
813
|
return obj;
|
|
766
814
|
},
|
|
767
815
|
|
|
816
|
+
create<I extends Exact<DeepPartial<IsPreviewModeRequest>, I>>(base?: I): IsPreviewModeRequest {
|
|
817
|
+
return IsPreviewModeRequest.fromPartial(base ?? {});
|
|
818
|
+
},
|
|
819
|
+
|
|
768
820
|
fromPartial<I extends Exact<DeepPartial<IsPreviewModeRequest>, I>>(_: I): IsPreviewModeRequest {
|
|
769
821
|
const message = createBaseIsPreviewModeRequest();
|
|
770
822
|
return message;
|
|
@@ -804,6 +856,10 @@ export const GetPlatformRequest = {
|
|
|
804
856
|
return obj;
|
|
805
857
|
},
|
|
806
858
|
|
|
859
|
+
create<I extends Exact<DeepPartial<GetPlatformRequest>, I>>(base?: I): GetPlatformRequest {
|
|
860
|
+
return GetPlatformRequest.fromPartial(base ?? {});
|
|
861
|
+
},
|
|
862
|
+
|
|
807
863
|
fromPartial<I extends Exact<DeepPartial<GetPlatformRequest>, I>>(_: I): GetPlatformRequest {
|
|
808
864
|
const message = createBaseGetPlatformRequest();
|
|
809
865
|
return message;
|
|
@@ -843,6 +899,10 @@ export const AreUnsafeRequestAllowedRequest = {
|
|
|
843
899
|
return obj;
|
|
844
900
|
},
|
|
845
901
|
|
|
902
|
+
create<I extends Exact<DeepPartial<AreUnsafeRequestAllowedRequest>, I>>(base?: I): AreUnsafeRequestAllowedRequest {
|
|
903
|
+
return AreUnsafeRequestAllowedRequest.fromPartial(base ?? {});
|
|
904
|
+
},
|
|
905
|
+
|
|
846
906
|
fromPartial<I extends Exact<DeepPartial<AreUnsafeRequestAllowedRequest>, I>>(_: I): AreUnsafeRequestAllowedRequest {
|
|
847
907
|
const message = createBaseAreUnsafeRequestAllowedRequest();
|
|
848
908
|
return message;
|
|
@@ -882,6 +942,10 @@ export const GetCurrentRealmRequest = {
|
|
|
882
942
|
return obj;
|
|
883
943
|
},
|
|
884
944
|
|
|
945
|
+
create<I extends Exact<DeepPartial<GetCurrentRealmRequest>, I>>(base?: I): GetCurrentRealmRequest {
|
|
946
|
+
return GetCurrentRealmRequest.fromPartial(base ?? {});
|
|
947
|
+
},
|
|
948
|
+
|
|
885
949
|
fromPartial<I extends Exact<DeepPartial<GetCurrentRealmRequest>, I>>(_: I): GetCurrentRealmRequest {
|
|
886
950
|
const message = createBaseGetCurrentRealmRequest();
|
|
887
951
|
return message;
|
|
@@ -921,6 +985,10 @@ export const GetExplorerConfigurationRequest = {
|
|
|
921
985
|
return obj;
|
|
922
986
|
},
|
|
923
987
|
|
|
988
|
+
create<I extends Exact<DeepPartial<GetExplorerConfigurationRequest>, I>>(base?: I): GetExplorerConfigurationRequest {
|
|
989
|
+
return GetExplorerConfigurationRequest.fromPartial(base ?? {});
|
|
990
|
+
},
|
|
991
|
+
|
|
924
992
|
fromPartial<I extends Exact<DeepPartial<GetExplorerConfigurationRequest>, I>>(_: I): GetExplorerConfigurationRequest {
|
|
925
993
|
const message = createBaseGetExplorerConfigurationRequest();
|
|
926
994
|
return message;
|
|
@@ -960,6 +1028,10 @@ export const GetDecentralandTimeRequest = {
|
|
|
960
1028
|
return obj;
|
|
961
1029
|
},
|
|
962
1030
|
|
|
1031
|
+
create<I extends Exact<DeepPartial<GetDecentralandTimeRequest>, I>>(base?: I): GetDecentralandTimeRequest {
|
|
1032
|
+
return GetDecentralandTimeRequest.fromPartial(base ?? {});
|
|
1033
|
+
},
|
|
1034
|
+
|
|
963
1035
|
fromPartial<I extends Exact<DeepPartial<GetDecentralandTimeRequest>, I>>(_: I): GetDecentralandTimeRequest {
|
|
964
1036
|
const message = createBaseGetDecentralandTimeRequest();
|
|
965
1037
|
return message;
|
|
@@ -1003,6 +1075,7 @@ export const EnvironmentApiServiceDefinition = {
|
|
|
1003
1075
|
responseStream: false,
|
|
1004
1076
|
options: {},
|
|
1005
1077
|
},
|
|
1078
|
+
/** @deprecated, use GetCurrentRealm from runtime_api instead */
|
|
1006
1079
|
getCurrentRealm: {
|
|
1007
1080
|
name: "GetCurrentRealm",
|
|
1008
1081
|
requestType: GetCurrentRealmRequest,
|
|
@@ -1019,6 +1092,7 @@ export const EnvironmentApiServiceDefinition = {
|
|
|
1019
1092
|
responseStream: false,
|
|
1020
1093
|
options: {},
|
|
1021
1094
|
},
|
|
1095
|
+
/** @deprecated, use GetTime from runtime_api instead */
|
|
1022
1096
|
getDecentralandTime: {
|
|
1023
1097
|
name: "GetDecentralandTime",
|
|
1024
1098
|
requestType: GetDecentralandTimeRequest,
|
|
@@ -116,6 +116,10 @@ export const RequirePaymentRequest = {
|
|
|
116
116
|
return obj;
|
|
117
117
|
},
|
|
118
118
|
|
|
119
|
+
create<I extends Exact<DeepPartial<RequirePaymentRequest>, I>>(base?: I): RequirePaymentRequest {
|
|
120
|
+
return RequirePaymentRequest.fromPartial(base ?? {});
|
|
121
|
+
},
|
|
122
|
+
|
|
119
123
|
fromPartial<I extends Exact<DeepPartial<RequirePaymentRequest>, I>>(object: I): RequirePaymentRequest {
|
|
120
124
|
const message = createBaseRequirePaymentRequest();
|
|
121
125
|
message.toAddress = object.toAddress ?? "";
|
|
@@ -165,6 +169,10 @@ export const RequirePaymentResponse = {
|
|
|
165
169
|
return obj;
|
|
166
170
|
},
|
|
167
171
|
|
|
172
|
+
create<I extends Exact<DeepPartial<RequirePaymentResponse>, I>>(base?: I): RequirePaymentResponse {
|
|
173
|
+
return RequirePaymentResponse.fromPartial(base ?? {});
|
|
174
|
+
},
|
|
175
|
+
|
|
168
176
|
fromPartial<I extends Exact<DeepPartial<RequirePaymentResponse>, I>>(object: I): RequirePaymentResponse {
|
|
169
177
|
const message = createBaseRequirePaymentResponse();
|
|
170
178
|
message.jsonAnyResponse = object.jsonAnyResponse ?? "";
|
|
@@ -227,6 +235,10 @@ export const SignMessageRequest = {
|
|
|
227
235
|
return obj;
|
|
228
236
|
},
|
|
229
237
|
|
|
238
|
+
create<I extends Exact<DeepPartial<SignMessageRequest>, I>>(base?: I): SignMessageRequest {
|
|
239
|
+
return SignMessageRequest.fromPartial(base ?? {});
|
|
240
|
+
},
|
|
241
|
+
|
|
230
242
|
fromPartial<I extends Exact<DeepPartial<SignMessageRequest>, I>>(object: I): SignMessageRequest {
|
|
231
243
|
const message = createBaseSignMessageRequest();
|
|
232
244
|
message.message = Object.entries(object.message ?? {}).reduce<{ [key: string]: string }>((acc, [key, value]) => {
|
|
@@ -286,6 +298,10 @@ export const SignMessageRequest_MessageEntry = {
|
|
|
286
298
|
return obj;
|
|
287
299
|
},
|
|
288
300
|
|
|
301
|
+
create<I extends Exact<DeepPartial<SignMessageRequest_MessageEntry>, I>>(base?: I): SignMessageRequest_MessageEntry {
|
|
302
|
+
return SignMessageRequest_MessageEntry.fromPartial(base ?? {});
|
|
303
|
+
},
|
|
304
|
+
|
|
289
305
|
fromPartial<I extends Exact<DeepPartial<SignMessageRequest_MessageEntry>, I>>(
|
|
290
306
|
object: I,
|
|
291
307
|
): SignMessageRequest_MessageEntry {
|
|
@@ -354,6 +370,10 @@ export const SignMessageResponse = {
|
|
|
354
370
|
return obj;
|
|
355
371
|
},
|
|
356
372
|
|
|
373
|
+
create<I extends Exact<DeepPartial<SignMessageResponse>, I>>(base?: I): SignMessageResponse {
|
|
374
|
+
return SignMessageResponse.fromPartial(base ?? {});
|
|
375
|
+
},
|
|
376
|
+
|
|
357
377
|
fromPartial<I extends Exact<DeepPartial<SignMessageResponse>, I>>(object: I): SignMessageResponse {
|
|
358
378
|
const message = createBaseSignMessageResponse();
|
|
359
379
|
message.message = object.message ?? "";
|
|
@@ -403,6 +423,10 @@ export const ConvertMessageToObjectRequest = {
|
|
|
403
423
|
return obj;
|
|
404
424
|
},
|
|
405
425
|
|
|
426
|
+
create<I extends Exact<DeepPartial<ConvertMessageToObjectRequest>, I>>(base?: I): ConvertMessageToObjectRequest {
|
|
427
|
+
return ConvertMessageToObjectRequest.fromPartial(base ?? {});
|
|
428
|
+
},
|
|
429
|
+
|
|
406
430
|
fromPartial<I extends Exact<DeepPartial<ConvertMessageToObjectRequest>, I>>(
|
|
407
431
|
object: I,
|
|
408
432
|
): ConvertMessageToObjectRequest {
|
|
@@ -467,6 +491,10 @@ export const ConvertMessageToObjectResponse = {
|
|
|
467
491
|
return obj;
|
|
468
492
|
},
|
|
469
493
|
|
|
494
|
+
create<I extends Exact<DeepPartial<ConvertMessageToObjectResponse>, I>>(base?: I): ConvertMessageToObjectResponse {
|
|
495
|
+
return ConvertMessageToObjectResponse.fromPartial(base ?? {});
|
|
496
|
+
},
|
|
497
|
+
|
|
470
498
|
fromPartial<I extends Exact<DeepPartial<ConvertMessageToObjectResponse>, I>>(
|
|
471
499
|
object: I,
|
|
472
500
|
): ConvertMessageToObjectResponse {
|
|
@@ -528,6 +556,12 @@ export const ConvertMessageToObjectResponse_DictEntry = {
|
|
|
528
556
|
return obj;
|
|
529
557
|
},
|
|
530
558
|
|
|
559
|
+
create<I extends Exact<DeepPartial<ConvertMessageToObjectResponse_DictEntry>, I>>(
|
|
560
|
+
base?: I,
|
|
561
|
+
): ConvertMessageToObjectResponse_DictEntry {
|
|
562
|
+
return ConvertMessageToObjectResponse_DictEntry.fromPartial(base ?? {});
|
|
563
|
+
},
|
|
564
|
+
|
|
531
565
|
fromPartial<I extends Exact<DeepPartial<ConvertMessageToObjectResponse_DictEntry>, I>>(
|
|
532
566
|
object: I,
|
|
533
567
|
): ConvertMessageToObjectResponse_DictEntry {
|
|
@@ -596,6 +630,10 @@ export const SendAsyncRequest = {
|
|
|
596
630
|
return obj;
|
|
597
631
|
},
|
|
598
632
|
|
|
633
|
+
create<I extends Exact<DeepPartial<SendAsyncRequest>, I>>(base?: I): SendAsyncRequest {
|
|
634
|
+
return SendAsyncRequest.fromPartial(base ?? {});
|
|
635
|
+
},
|
|
636
|
+
|
|
599
637
|
fromPartial<I extends Exact<DeepPartial<SendAsyncRequest>, I>>(object: I): SendAsyncRequest {
|
|
600
638
|
const message = createBaseSendAsyncRequest();
|
|
601
639
|
message.id = object.id ?? 0;
|
|
@@ -645,6 +683,10 @@ export const SendAsyncResponse = {
|
|
|
645
683
|
return obj;
|
|
646
684
|
},
|
|
647
685
|
|
|
686
|
+
create<I extends Exact<DeepPartial<SendAsyncResponse>, I>>(base?: I): SendAsyncResponse {
|
|
687
|
+
return SendAsyncResponse.fromPartial(base ?? {});
|
|
688
|
+
},
|
|
689
|
+
|
|
648
690
|
fromPartial<I extends Exact<DeepPartial<SendAsyncResponse>, I>>(object: I): SendAsyncResponse {
|
|
649
691
|
const message = createBaseSendAsyncResponse();
|
|
650
692
|
message.jsonAnyResponse = object.jsonAnyResponse ?? "";
|
|
@@ -685,6 +727,10 @@ export const GetUserAccountRequest = {
|
|
|
685
727
|
return obj;
|
|
686
728
|
},
|
|
687
729
|
|
|
730
|
+
create<I extends Exact<DeepPartial<GetUserAccountRequest>, I>>(base?: I): GetUserAccountRequest {
|
|
731
|
+
return GetUserAccountRequest.fromPartial(base ?? {});
|
|
732
|
+
},
|
|
733
|
+
|
|
688
734
|
fromPartial<I extends Exact<DeepPartial<GetUserAccountRequest>, I>>(_: I): GetUserAccountRequest {
|
|
689
735
|
const message = createBaseGetUserAccountRequest();
|
|
690
736
|
return message;
|
|
@@ -731,6 +777,10 @@ export const GetUserAccountResponse = {
|
|
|
731
777
|
return obj;
|
|
732
778
|
},
|
|
733
779
|
|
|
780
|
+
create<I extends Exact<DeepPartial<GetUserAccountResponse>, I>>(base?: I): GetUserAccountResponse {
|
|
781
|
+
return GetUserAccountResponse.fromPartial(base ?? {});
|
|
782
|
+
},
|
|
783
|
+
|
|
734
784
|
fromPartial<I extends Exact<DeepPartial<GetUserAccountResponse>, I>>(object: I): GetUserAccountResponse {
|
|
735
785
|
const message = createBaseGetUserAccountResponse();
|
|
736
786
|
message.address = object.address ?? undefined;
|