geniebox-shared-lib 1.0.24 → 1.0.26
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.
|
@@ -129,6 +129,9 @@ exports.LoginCredentials = {
|
|
|
129
129
|
if (message.password !== "") {
|
|
130
130
|
writer.uint32(26).string(message.password);
|
|
131
131
|
}
|
|
132
|
+
if (message.rememberMe !== undefined) {
|
|
133
|
+
writer.uint32(32).bool(message.rememberMe);
|
|
134
|
+
}
|
|
132
135
|
return writer;
|
|
133
136
|
},
|
|
134
137
|
decode(input, length) {
|
|
@@ -159,6 +162,13 @@ exports.LoginCredentials = {
|
|
|
159
162
|
message.password = reader.string();
|
|
160
163
|
continue;
|
|
161
164
|
}
|
|
165
|
+
case 4: {
|
|
166
|
+
if (tag !== 32) {
|
|
167
|
+
break;
|
|
168
|
+
}
|
|
169
|
+
message.rememberMe = reader.bool();
|
|
170
|
+
continue;
|
|
171
|
+
}
|
|
162
172
|
}
|
|
163
173
|
if ((tag & 7) === 4 || tag === 0) {
|
|
164
174
|
break;
|