@dcl/protocol 1.0.0-3874844989.commit-d6daab3 → 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 +8 -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/public/sdk-apis.proto +1 -0
|
@@ -62,6 +62,10 @@ export const GetChallengeRequest = {
|
|
|
62
62
|
return obj;
|
|
63
63
|
},
|
|
64
64
|
|
|
65
|
+
create<I extends Exact<DeepPartial<GetChallengeRequest>, I>>(base?: I): GetChallengeRequest {
|
|
66
|
+
return GetChallengeRequest.fromPartial(base ?? {});
|
|
67
|
+
},
|
|
68
|
+
|
|
65
69
|
fromPartial<I extends Exact<DeepPartial<GetChallengeRequest>, I>>(object: I): GetChallengeRequest {
|
|
66
70
|
const message = createBaseGetChallengeRequest();
|
|
67
71
|
message.address = object.address ?? "";
|
|
@@ -119,6 +123,10 @@ export const GetChallengeResponse = {
|
|
|
119
123
|
return obj;
|
|
120
124
|
},
|
|
121
125
|
|
|
126
|
+
create<I extends Exact<DeepPartial<GetChallengeResponse>, I>>(base?: I): GetChallengeResponse {
|
|
127
|
+
return GetChallengeResponse.fromPartial(base ?? {});
|
|
128
|
+
},
|
|
129
|
+
|
|
122
130
|
fromPartial<I extends Exact<DeepPartial<GetChallengeResponse>, I>>(object: I): GetChallengeResponse {
|
|
123
131
|
const message = createBaseGetChallengeResponse();
|
|
124
132
|
message.challengeToSign = object.challengeToSign ?? "";
|
|
@@ -167,6 +175,10 @@ export const SignedChallenge = {
|
|
|
167
175
|
return obj;
|
|
168
176
|
},
|
|
169
177
|
|
|
178
|
+
create<I extends Exact<DeepPartial<SignedChallenge>, I>>(base?: I): SignedChallenge {
|
|
179
|
+
return SignedChallenge.fromPartial(base ?? {});
|
|
180
|
+
},
|
|
181
|
+
|
|
170
182
|
fromPartial<I extends Exact<DeepPartial<SignedChallenge>, I>>(object: I): SignedChallenge {
|
|
171
183
|
const message = createBaseSignedChallenge();
|
|
172
184
|
message.authChainJson = object.authChainJson ?? "";
|
|
@@ -230,6 +242,10 @@ export const WelcomePeerInformation = {
|
|
|
230
242
|
return obj;
|
|
231
243
|
},
|
|
232
244
|
|
|
245
|
+
create<I extends Exact<DeepPartial<WelcomePeerInformation>, I>>(base?: I): WelcomePeerInformation {
|
|
246
|
+
return WelcomePeerInformation.fromPartial(base ?? {});
|
|
247
|
+
},
|
|
248
|
+
|
|
233
249
|
fromPartial<I extends Exact<DeepPartial<WelcomePeerInformation>, I>>(object: I): WelcomePeerInformation {
|
|
234
250
|
const message = createBaseWelcomePeerInformation();
|
|
235
251
|
message.peerId = object.peerId ?? "";
|
|
@@ -67,6 +67,10 @@ export const WorldCommand = {
|
|
|
67
67
|
return obj;
|
|
68
68
|
},
|
|
69
69
|
|
|
70
|
+
create<I extends Exact<DeepPartial<WorldCommand>, I>>(base?: I): WorldCommand {
|
|
71
|
+
return WorldCommand.fromPartial(base ?? {});
|
|
72
|
+
},
|
|
73
|
+
|
|
70
74
|
fromPartial<I extends Exact<DeepPartial<WorldCommand>, I>>(object: I): WorldCommand {
|
|
71
75
|
const message = createBaseWorldCommand();
|
|
72
76
|
if (
|
|
@@ -123,6 +127,10 @@ export const SetCommsAdapter = {
|
|
|
123
127
|
return obj;
|
|
124
128
|
},
|
|
125
129
|
|
|
130
|
+
create<I extends Exact<DeepPartial<SetCommsAdapter>, I>>(base?: I): SetCommsAdapter {
|
|
131
|
+
return SetCommsAdapter.fromPartial(base ?? {});
|
|
132
|
+
},
|
|
133
|
+
|
|
126
134
|
fromPartial<I extends Exact<DeepPartial<SetCommsAdapter>, I>>(object: I): SetCommsAdapter {
|
|
127
135
|
const message = createBaseSetCommsAdapter();
|
|
128
136
|
message.connectionString = object.connectionString ?? "";
|
|
@@ -180,6 +188,10 @@ export const Heartbeat = {
|
|
|
180
188
|
return obj;
|
|
181
189
|
},
|
|
182
190
|
|
|
191
|
+
create<I extends Exact<DeepPartial<Heartbeat>, I>>(base?: I): Heartbeat {
|
|
192
|
+
return Heartbeat.fromPartial(base ?? {});
|
|
193
|
+
},
|
|
194
|
+
|
|
183
195
|
fromPartial<I extends Exact<DeepPartial<Heartbeat>, I>>(object: I): Heartbeat {
|
|
184
196
|
const message = createBaseHeartbeat();
|
|
185
197
|
message.position = (object.position !== undefined && object.position !== null)
|
|
@@ -58,6 +58,10 @@ export const Subscription = {
|
|
|
58
58
|
return obj;
|
|
59
59
|
},
|
|
60
60
|
|
|
61
|
+
create<I extends Exact<DeepPartial<Subscription>, I>>(base?: I): Subscription {
|
|
62
|
+
return Subscription.fromPartial(base ?? {});
|
|
63
|
+
},
|
|
64
|
+
|
|
61
65
|
fromPartial<I extends Exact<DeepPartial<Subscription>, I>>(object: I): Subscription {
|
|
62
66
|
const message = createBaseSubscription();
|
|
63
67
|
message.subscriptionId = object.subscriptionId ?? 0;
|
|
@@ -105,6 +109,10 @@ export const UnsubscriptionResult = {
|
|
|
105
109
|
return obj;
|
|
106
110
|
},
|
|
107
111
|
|
|
112
|
+
create<I extends Exact<DeepPartial<UnsubscriptionResult>, I>>(base?: I): UnsubscriptionResult {
|
|
113
|
+
return UnsubscriptionResult.fromPartial(base ?? {});
|
|
114
|
+
},
|
|
115
|
+
|
|
108
116
|
fromPartial<I extends Exact<DeepPartial<UnsubscriptionResult>, I>>(object: I): UnsubscriptionResult {
|
|
109
117
|
const message = createBaseUnsubscriptionResult();
|
|
110
118
|
message.ok = object.ok ?? false;
|
|
@@ -188,6 +188,10 @@ export const AboutResponse = {
|
|
|
188
188
|
return obj;
|
|
189
189
|
},
|
|
190
190
|
|
|
191
|
+
create<I extends Exact<DeepPartial<AboutResponse>, I>>(base?: I): AboutResponse {
|
|
192
|
+
return AboutResponse.fromPartial(base ?? {});
|
|
193
|
+
},
|
|
194
|
+
|
|
191
195
|
fromPartial<I extends Exact<DeepPartial<AboutResponse>, I>>(object: I): AboutResponse {
|
|
192
196
|
const message = createBaseAboutResponse();
|
|
193
197
|
message.healthy = object.healthy ?? false;
|
|
@@ -269,6 +273,12 @@ export const AboutResponse_MinimapConfiguration = {
|
|
|
269
273
|
return obj;
|
|
270
274
|
},
|
|
271
275
|
|
|
276
|
+
create<I extends Exact<DeepPartial<AboutResponse_MinimapConfiguration>, I>>(
|
|
277
|
+
base?: I,
|
|
278
|
+
): AboutResponse_MinimapConfiguration {
|
|
279
|
+
return AboutResponse_MinimapConfiguration.fromPartial(base ?? {});
|
|
280
|
+
},
|
|
281
|
+
|
|
272
282
|
fromPartial<I extends Exact<DeepPartial<AboutResponse_MinimapConfiguration>, I>>(
|
|
273
283
|
object: I,
|
|
274
284
|
): AboutResponse_MinimapConfiguration {
|
|
@@ -320,6 +330,12 @@ export const AboutResponse_SkyboxConfiguration = {
|
|
|
320
330
|
return obj;
|
|
321
331
|
},
|
|
322
332
|
|
|
333
|
+
create<I extends Exact<DeepPartial<AboutResponse_SkyboxConfiguration>, I>>(
|
|
334
|
+
base?: I,
|
|
335
|
+
): AboutResponse_SkyboxConfiguration {
|
|
336
|
+
return AboutResponse_SkyboxConfiguration.fromPartial(base ?? {});
|
|
337
|
+
},
|
|
338
|
+
|
|
323
339
|
fromPartial<I extends Exact<DeepPartial<AboutResponse_SkyboxConfiguration>, I>>(
|
|
324
340
|
object: I,
|
|
325
341
|
): AboutResponse_SkyboxConfiguration {
|
|
@@ -439,6 +455,12 @@ export const AboutResponse_AboutConfiguration = {
|
|
|
439
455
|
return obj;
|
|
440
456
|
},
|
|
441
457
|
|
|
458
|
+
create<I extends Exact<DeepPartial<AboutResponse_AboutConfiguration>, I>>(
|
|
459
|
+
base?: I,
|
|
460
|
+
): AboutResponse_AboutConfiguration {
|
|
461
|
+
return AboutResponse_AboutConfiguration.fromPartial(base ?? {});
|
|
462
|
+
},
|
|
463
|
+
|
|
442
464
|
fromPartial<I extends Exact<DeepPartial<AboutResponse_AboutConfiguration>, I>>(
|
|
443
465
|
object: I,
|
|
444
466
|
): AboutResponse_AboutConfiguration {
|
|
@@ -524,6 +546,10 @@ export const AboutResponse_ContentInfo = {
|
|
|
524
546
|
return obj;
|
|
525
547
|
},
|
|
526
548
|
|
|
549
|
+
create<I extends Exact<DeepPartial<AboutResponse_ContentInfo>, I>>(base?: I): AboutResponse_ContentInfo {
|
|
550
|
+
return AboutResponse_ContentInfo.fromPartial(base ?? {});
|
|
551
|
+
},
|
|
552
|
+
|
|
527
553
|
fromPartial<I extends Exact<DeepPartial<AboutResponse_ContentInfo>, I>>(object: I): AboutResponse_ContentInfo {
|
|
528
554
|
const message = createBaseAboutResponse_ContentInfo();
|
|
529
555
|
message.healthy = object.healthy ?? false;
|
|
@@ -600,6 +626,10 @@ export const AboutResponse_LambdasInfo = {
|
|
|
600
626
|
return obj;
|
|
601
627
|
},
|
|
602
628
|
|
|
629
|
+
create<I extends Exact<DeepPartial<AboutResponse_LambdasInfo>, I>>(base?: I): AboutResponse_LambdasInfo {
|
|
630
|
+
return AboutResponse_LambdasInfo.fromPartial(base ?? {});
|
|
631
|
+
},
|
|
632
|
+
|
|
603
633
|
fromPartial<I extends Exact<DeepPartial<AboutResponse_LambdasInfo>, I>>(object: I): AboutResponse_LambdasInfo {
|
|
604
634
|
const message = createBaseAboutResponse_LambdasInfo();
|
|
605
635
|
message.healthy = object.healthy ?? false;
|
|
@@ -708,6 +738,10 @@ export const AboutResponse_CommsInfo = {
|
|
|
708
738
|
return obj;
|
|
709
739
|
},
|
|
710
740
|
|
|
741
|
+
create<I extends Exact<DeepPartial<AboutResponse_CommsInfo>, I>>(base?: I): AboutResponse_CommsInfo {
|
|
742
|
+
return AboutResponse_CommsInfo.fromPartial(base ?? {});
|
|
743
|
+
},
|
|
744
|
+
|
|
711
745
|
fromPartial<I extends Exact<DeepPartial<AboutResponse_CommsInfo>, I>>(object: I): AboutResponse_CommsInfo {
|
|
712
746
|
const message = createBaseAboutResponse_CommsInfo();
|
|
713
747
|
message.healthy = object.healthy ?? false;
|
|
@@ -810,6 +844,10 @@ export const AboutResponse_BffInfo = {
|
|
|
810
844
|
return obj;
|
|
811
845
|
},
|
|
812
846
|
|
|
847
|
+
create<I extends Exact<DeepPartial<AboutResponse_BffInfo>, I>>(base?: I): AboutResponse_BffInfo {
|
|
848
|
+
return AboutResponse_BffInfo.fromPartial(base ?? {});
|
|
849
|
+
},
|
|
850
|
+
|
|
813
851
|
fromPartial<I extends Exact<DeepPartial<AboutResponse_BffInfo>, I>>(object: I): AboutResponse_BffInfo {
|
|
814
852
|
const message = createBaseAboutResponse_BffInfo();
|
|
815
853
|
message.healthy = object.healthy ?? false;
|
|
@@ -67,6 +67,10 @@ export const SubscriptionRequest = {
|
|
|
67
67
|
return obj;
|
|
68
68
|
},
|
|
69
69
|
|
|
70
|
+
create<I extends Exact<DeepPartial<SubscriptionRequest>, I>>(base?: I): SubscriptionRequest {
|
|
71
|
+
return SubscriptionRequest.fromPartial(base ?? {});
|
|
72
|
+
},
|
|
73
|
+
|
|
70
74
|
fromPartial<I extends Exact<DeepPartial<SubscriptionRequest>, I>>(object: I): SubscriptionRequest {
|
|
71
75
|
const message = createBaseSubscriptionRequest();
|
|
72
76
|
message.topic = object.topic ?? "";
|
|
@@ -133,6 +137,10 @@ export const PeerTopicSubscriptionResultElem = {
|
|
|
133
137
|
return obj;
|
|
134
138
|
},
|
|
135
139
|
|
|
140
|
+
create<I extends Exact<DeepPartial<PeerTopicSubscriptionResultElem>, I>>(base?: I): PeerTopicSubscriptionResultElem {
|
|
141
|
+
return PeerTopicSubscriptionResultElem.fromPartial(base ?? {});
|
|
142
|
+
},
|
|
143
|
+
|
|
136
144
|
fromPartial<I extends Exact<DeepPartial<PeerTopicSubscriptionResultElem>, I>>(
|
|
137
145
|
object: I,
|
|
138
146
|
): PeerTopicSubscriptionResultElem {
|
|
@@ -195,6 +203,12 @@ export const SystemTopicSubscriptionResultElem = {
|
|
|
195
203
|
return obj;
|
|
196
204
|
},
|
|
197
205
|
|
|
206
|
+
create<I extends Exact<DeepPartial<SystemTopicSubscriptionResultElem>, I>>(
|
|
207
|
+
base?: I,
|
|
208
|
+
): SystemTopicSubscriptionResultElem {
|
|
209
|
+
return SystemTopicSubscriptionResultElem.fromPartial(base ?? {});
|
|
210
|
+
},
|
|
211
|
+
|
|
198
212
|
fromPartial<I extends Exact<DeepPartial<SystemTopicSubscriptionResultElem>, I>>(
|
|
199
213
|
object: I,
|
|
200
214
|
): SystemTopicSubscriptionResultElem {
|
|
@@ -256,6 +270,10 @@ export const PublishToTopicRequest = {
|
|
|
256
270
|
return obj;
|
|
257
271
|
},
|
|
258
272
|
|
|
273
|
+
create<I extends Exact<DeepPartial<PublishToTopicRequest>, I>>(base?: I): PublishToTopicRequest {
|
|
274
|
+
return PublishToTopicRequest.fromPartial(base ?? {});
|
|
275
|
+
},
|
|
276
|
+
|
|
259
277
|
fromPartial<I extends Exact<DeepPartial<PublishToTopicRequest>, I>>(object: I): PublishToTopicRequest {
|
|
260
278
|
const message = createBasePublishToTopicRequest();
|
|
261
279
|
message.topic = object.topic ?? "";
|
|
@@ -304,6 +322,10 @@ export const PublishToTopicResult = {
|
|
|
304
322
|
return obj;
|
|
305
323
|
},
|
|
306
324
|
|
|
325
|
+
create<I extends Exact<DeepPartial<PublishToTopicResult>, I>>(base?: I): PublishToTopicResult {
|
|
326
|
+
return PublishToTopicResult.fromPartial(base ?? {});
|
|
327
|
+
},
|
|
328
|
+
|
|
307
329
|
fromPartial<I extends Exact<DeepPartial<PublishToTopicResult>, I>>(object: I): PublishToTopicResult {
|
|
308
330
|
const message = createBasePublishToTopicResult();
|
|
309
331
|
message.ok = object.ok ?? false;
|
|
@@ -55,6 +55,10 @@ export const ContentMapping = {
|
|
|
55
55
|
return obj;
|
|
56
56
|
},
|
|
57
57
|
|
|
58
|
+
create<I extends Exact<DeepPartial<ContentMapping>, I>>(base?: I): ContentMapping {
|
|
59
|
+
return ContentMapping.fromPartial(base ?? {});
|
|
60
|
+
},
|
|
61
|
+
|
|
58
62
|
fromPartial<I extends Exact<DeepPartial<ContentMapping>, I>>(object: I): ContentMapping {
|
|
59
63
|
const message = createBaseContentMapping();
|
|
60
64
|
message.file = object.file ?? "";
|
|
@@ -94,6 +94,10 @@ export const Entity = {
|
|
|
94
94
|
return obj;
|
|
95
95
|
},
|
|
96
96
|
|
|
97
|
+
create<I extends Exact<DeepPartial<Entity>, I>>(base?: I): Entity {
|
|
98
|
+
return Entity.fromPartial(base ?? {});
|
|
99
|
+
},
|
|
100
|
+
|
|
97
101
|
fromPartial<I extends Exact<DeepPartial<Entity>, I>>(object: I): Entity {
|
|
98
102
|
const message = createBaseEntity();
|
|
99
103
|
message.id = object.id ?? "";
|
|
@@ -76,6 +76,10 @@ export const Snapshots = {
|
|
|
76
76
|
return obj;
|
|
77
77
|
},
|
|
78
78
|
|
|
79
|
+
create<I extends Exact<DeepPartial<Snapshots>, I>>(base?: I): Snapshots {
|
|
80
|
+
return Snapshots.fromPartial(base ?? {});
|
|
81
|
+
},
|
|
82
|
+
|
|
79
83
|
fromPartial<I extends Exact<DeepPartial<Snapshots>, I>>(object: I): Snapshots {
|
|
80
84
|
const message = createBaseSnapshots();
|
|
81
85
|
message.face256 = object.face256 ?? "";
|
|
@@ -171,6 +175,10 @@ export const AvatarForUserData = {
|
|
|
171
175
|
return obj;
|
|
172
176
|
},
|
|
173
177
|
|
|
178
|
+
create<I extends Exact<DeepPartial<AvatarForUserData>, I>>(base?: I): AvatarForUserData {
|
|
179
|
+
return AvatarForUserData.fromPartial(base ?? {});
|
|
180
|
+
},
|
|
181
|
+
|
|
174
182
|
fromPartial<I extends Exact<DeepPartial<AvatarForUserData>, I>>(object: I): AvatarForUserData {
|
|
175
183
|
const message = createBaseAvatarForUserData();
|
|
176
184
|
message.bodyShape = object.bodyShape ?? "";
|
|
@@ -268,6 +276,10 @@ export const UserData = {
|
|
|
268
276
|
return obj;
|
|
269
277
|
},
|
|
270
278
|
|
|
279
|
+
create<I extends Exact<DeepPartial<UserData>, I>>(base?: I): UserData {
|
|
280
|
+
return UserData.fromPartial(base ?? {});
|
|
281
|
+
},
|
|
282
|
+
|
|
271
283
|
fromPartial<I extends Exact<DeepPartial<UserData>, I>>(object: I): UserData {
|
|
272
284
|
const message = createBaseUserData();
|
|
273
285
|
message.displayName = object.displayName ?? "";
|
|
@@ -78,6 +78,10 @@ export const Position = {
|
|
|
78
78
|
return obj;
|
|
79
79
|
},
|
|
80
80
|
|
|
81
|
+
create<I extends Exact<DeepPartial<Position>, I>>(base?: I): Position {
|
|
82
|
+
return Position.fromPartial(base ?? {});
|
|
83
|
+
},
|
|
84
|
+
|
|
81
85
|
fromPartial<I extends Exact<DeepPartial<Position>, I>>(object: I): Position {
|
|
82
86
|
const message = createBasePosition();
|
|
83
87
|
message.x = object.x ?? 0;
|
|
@@ -145,6 +149,10 @@ export const Vector3 = {
|
|
|
145
149
|
return obj;
|
|
146
150
|
},
|
|
147
151
|
|
|
152
|
+
create<I extends Exact<DeepPartial<Vector3>, I>>(base?: I): Vector3 {
|
|
153
|
+
return Vector3.fromPartial(base ?? {});
|
|
154
|
+
},
|
|
155
|
+
|
|
148
156
|
fromPartial<I extends Exact<DeepPartial<Vector3>, I>>(object: I): Vector3 {
|
|
149
157
|
const message = createBaseVector3();
|
|
150
158
|
message.x = object.x ?? 0;
|
|
@@ -201,6 +209,10 @@ export const Vector2 = {
|
|
|
201
209
|
return obj;
|
|
202
210
|
},
|
|
203
211
|
|
|
212
|
+
create<I extends Exact<DeepPartial<Vector2>, I>>(base?: I): Vector2 {
|
|
213
|
+
return Vector2.fromPartial(base ?? {});
|
|
214
|
+
},
|
|
215
|
+
|
|
204
216
|
fromPartial<I extends Exact<DeepPartial<Vector2>, I>>(object: I): Vector2 {
|
|
205
217
|
const message = createBaseVector2();
|
|
206
218
|
message.x = object.x ?? 0;
|
|
@@ -50,6 +50,10 @@ export const RealSendRequest = {
|
|
|
50
50
|
return obj;
|
|
51
51
|
},
|
|
52
52
|
|
|
53
|
+
create<I extends Exact<DeepPartial<RealSendRequest>, I>>(base?: I): RealSendRequest {
|
|
54
|
+
return RealSendRequest.fromPartial(base ?? {});
|
|
55
|
+
},
|
|
56
|
+
|
|
53
57
|
fromPartial<I extends Exact<DeepPartial<RealSendRequest>, I>>(object: I): RealSendRequest {
|
|
54
58
|
const message = createBaseRealSendRequest();
|
|
55
59
|
message.message = object.message ?? "";
|
|
@@ -90,6 +94,10 @@ export const RealSendResponse = {
|
|
|
90
94
|
return obj;
|
|
91
95
|
},
|
|
92
96
|
|
|
97
|
+
create<I extends Exact<DeepPartial<RealSendResponse>, I>>(base?: I): RealSendResponse {
|
|
98
|
+
return RealSendResponse.fromPartial(base ?? {});
|
|
99
|
+
},
|
|
100
|
+
|
|
93
101
|
fromPartial<I extends Exact<DeepPartial<RealSendResponse>, I>>(_: I): RealSendResponse {
|
|
94
102
|
const message = createBaseRealSendResponse();
|
|
95
103
|
return message;
|
|
@@ -61,6 +61,10 @@ export const DevToolsBody = {
|
|
|
61
61
|
return obj;
|
|
62
62
|
},
|
|
63
63
|
|
|
64
|
+
create<I extends Exact<DeepPartial<DevToolsBody>, I>>(base?: I): DevToolsBody {
|
|
65
|
+
return DevToolsBody.fromPartial(base ?? {});
|
|
66
|
+
},
|
|
67
|
+
|
|
64
68
|
fromPartial<I extends Exact<DeepPartial<DevToolsBody>, I>>(object: I): DevToolsBody {
|
|
65
69
|
const message = createBaseDevToolsBody();
|
|
66
70
|
message.type = object.type ?? "";
|
|
@@ -102,6 +106,10 @@ export const EventResponse = {
|
|
|
102
106
|
return obj;
|
|
103
107
|
},
|
|
104
108
|
|
|
109
|
+
create<I extends Exact<DeepPartial<EventResponse>, I>>(base?: I): EventResponse {
|
|
110
|
+
return EventResponse.fromPartial(base ?? {});
|
|
111
|
+
},
|
|
112
|
+
|
|
105
113
|
fromPartial<I extends Exact<DeepPartial<EventResponse>, I>>(_: I): EventResponse {
|
|
106
114
|
const message = createBaseEventResponse();
|
|
107
115
|
return message;
|