@dcl/protocol 1.0.0-3576463488.commit-bbfbde4 → 1.0.0-3583035976.commit-35d616d
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.
|
@@ -11,6 +11,7 @@ export interface AboutResponse {
|
|
|
11
11
|
comms: AboutResponse_CommsInfo | undefined;
|
|
12
12
|
lambdas: AboutResponse_LambdasInfo | undefined;
|
|
13
13
|
bff?: AboutResponse_BffInfo | undefined;
|
|
14
|
+
acceptingUsers: boolean;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
export interface AboutResponse_MinimapConfiguration {
|
|
@@ -90,6 +91,7 @@ function createBaseAboutResponse(): AboutResponse {
|
|
|
90
91
|
comms: undefined,
|
|
91
92
|
lambdas: undefined,
|
|
92
93
|
bff: undefined,
|
|
94
|
+
acceptingUsers: false,
|
|
93
95
|
};
|
|
94
96
|
}
|
|
95
97
|
|
|
@@ -113,6 +115,9 @@ export const AboutResponse = {
|
|
|
113
115
|
if (message.bff !== undefined) {
|
|
114
116
|
AboutResponse_BffInfo.encode(message.bff, writer.uint32(50).fork()).ldelim();
|
|
115
117
|
}
|
|
118
|
+
if (message.acceptingUsers === true) {
|
|
119
|
+
writer.uint32(56).bool(message.acceptingUsers);
|
|
120
|
+
}
|
|
116
121
|
return writer;
|
|
117
122
|
},
|
|
118
123
|
|
|
@@ -141,6 +146,9 @@ export const AboutResponse = {
|
|
|
141
146
|
case 6:
|
|
142
147
|
message.bff = AboutResponse_BffInfo.decode(reader, reader.uint32());
|
|
143
148
|
break;
|
|
149
|
+
case 7:
|
|
150
|
+
message.acceptingUsers = reader.bool();
|
|
151
|
+
break;
|
|
144
152
|
default:
|
|
145
153
|
reader.skipType(tag & 7);
|
|
146
154
|
break;
|
|
@@ -159,6 +167,7 @@ export const AboutResponse = {
|
|
|
159
167
|
comms: isSet(object.comms) ? AboutResponse_CommsInfo.fromJSON(object.comms) : undefined,
|
|
160
168
|
lambdas: isSet(object.lambdas) ? AboutResponse_LambdasInfo.fromJSON(object.lambdas) : undefined,
|
|
161
169
|
bff: isSet(object.bff) ? AboutResponse_BffInfo.fromJSON(object.bff) : undefined,
|
|
170
|
+
acceptingUsers: isSet(object.acceptingUsers) ? Boolean(object.acceptingUsers) : false,
|
|
162
171
|
};
|
|
163
172
|
},
|
|
164
173
|
|
|
@@ -175,6 +184,7 @@ export const AboutResponse = {
|
|
|
175
184
|
message.lambdas !== undefined &&
|
|
176
185
|
(obj.lambdas = message.lambdas ? AboutResponse_LambdasInfo.toJSON(message.lambdas) : undefined);
|
|
177
186
|
message.bff !== undefined && (obj.bff = message.bff ? AboutResponse_BffInfo.toJSON(message.bff) : undefined);
|
|
187
|
+
message.acceptingUsers !== undefined && (obj.acceptingUsers = message.acceptingUsers);
|
|
178
188
|
return obj;
|
|
179
189
|
},
|
|
180
190
|
|
|
@@ -196,6 +206,7 @@ export const AboutResponse = {
|
|
|
196
206
|
message.bff = (object.bff !== undefined && object.bff !== null)
|
|
197
207
|
? AboutResponse_BffInfo.fromPartial(object.bff)
|
|
198
208
|
: undefined;
|
|
209
|
+
message.acceptingUsers = object.acceptingUsers ?? false;
|
|
199
210
|
return message;
|
|
200
211
|
},
|
|
201
212
|
};
|
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-3583035976.commit-35d616d",
|
|
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": "35d616d3fa8419ddd059e439c9e2137cd7441c88"
|
|
29
29
|
}
|