@sniipwebmaster/user-service-client-grpcweb-ts 25.9.13392 → 25.9.13414
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.
|
@@ -5990,6 +5990,9 @@ export class VerifyPhoneRequest extends jspb.Message {
|
|
|
5990
5990
|
hasAppaccounttype(): boolean;
|
|
5991
5991
|
clearAppaccounttype(): VerifyPhoneRequest;
|
|
5992
5992
|
|
|
5993
|
+
getAuthupdateviaotp(): boolean;
|
|
5994
|
+
setAuthupdateviaotp(value: boolean): VerifyPhoneRequest;
|
|
5995
|
+
|
|
5993
5996
|
serializeBinary(): Uint8Array;
|
|
5994
5997
|
toObject(includeInstance?: boolean): VerifyPhoneRequest.AsObject;
|
|
5995
5998
|
static toObject(includeInstance: boolean, msg: VerifyPhoneRequest): VerifyPhoneRequest.AsObject;
|
|
@@ -6007,6 +6010,7 @@ export namespace VerifyPhoneRequest {
|
|
|
6007
6010
|
sociallogin: boolean,
|
|
6008
6011
|
password: string,
|
|
6009
6012
|
appaccounttype?: AppAccountType,
|
|
6013
|
+
authupdateviaotp: boolean,
|
|
6010
6014
|
}
|
|
6011
6015
|
|
|
6012
6016
|
export enum AppaccounttypeCase {
|
|
@@ -48847,7 +48847,8 @@ proto.sniipuserservice.VerifyPhoneRequest.toObject = function(includeInstance, m
|
|
|
48847
48847
|
regioncode: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
48848
48848
|
sociallogin: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
48849
48849
|
password: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
48850
|
-
appaccounttype: jspb.Message.getFieldWithDefault(msg, 7, 0)
|
|
48850
|
+
appaccounttype: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
|
48851
|
+
authupdateviaotp: jspb.Message.getBooleanFieldWithDefault(msg, 8, false)
|
|
48851
48852
|
};
|
|
48852
48853
|
|
|
48853
48854
|
if (includeInstance) {
|
|
@@ -48912,6 +48913,10 @@ proto.sniipuserservice.VerifyPhoneRequest.deserializeBinaryFromReader = function
|
|
|
48912
48913
|
var value = /** @type {!proto.sniipuserservice.AppAccountType} */ (reader.readEnum());
|
|
48913
48914
|
msg.setAppaccounttype(value);
|
|
48914
48915
|
break;
|
|
48916
|
+
case 8:
|
|
48917
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
48918
|
+
msg.setAuthupdateviaotp(value);
|
|
48919
|
+
break;
|
|
48915
48920
|
default:
|
|
48916
48921
|
reader.skipField();
|
|
48917
48922
|
break;
|
|
@@ -48990,6 +48995,13 @@ proto.sniipuserservice.VerifyPhoneRequest.serializeBinaryToWriter = function(mes
|
|
|
48990
48995
|
f
|
|
48991
48996
|
);
|
|
48992
48997
|
}
|
|
48998
|
+
f = message.getAuthupdateviaotp();
|
|
48999
|
+
if (f) {
|
|
49000
|
+
writer.writeBool(
|
|
49001
|
+
8,
|
|
49002
|
+
f
|
|
49003
|
+
);
|
|
49004
|
+
}
|
|
48993
49005
|
};
|
|
48994
49006
|
|
|
48995
49007
|
|
|
@@ -49137,6 +49149,24 @@ proto.sniipuserservice.VerifyPhoneRequest.prototype.hasAppaccounttype = function
|
|
|
49137
49149
|
};
|
|
49138
49150
|
|
|
49139
49151
|
|
|
49152
|
+
/**
|
|
49153
|
+
* optional bool authUpdateViaOtp = 8;
|
|
49154
|
+
* @return {boolean}
|
|
49155
|
+
*/
|
|
49156
|
+
proto.sniipuserservice.VerifyPhoneRequest.prototype.getAuthupdateviaotp = function() {
|
|
49157
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 8, false));
|
|
49158
|
+
};
|
|
49159
|
+
|
|
49160
|
+
|
|
49161
|
+
/**
|
|
49162
|
+
* @param {boolean} value
|
|
49163
|
+
* @return {!proto.sniipuserservice.VerifyPhoneRequest} returns this
|
|
49164
|
+
*/
|
|
49165
|
+
proto.sniipuserservice.VerifyPhoneRequest.prototype.setAuthupdateviaotp = function(value) {
|
|
49166
|
+
return jspb.Message.setProto3BooleanField(this, 8, value);
|
|
49167
|
+
};
|
|
49168
|
+
|
|
49169
|
+
|
|
49140
49170
|
|
|
49141
49171
|
|
|
49142
49172
|
|