@sniipwebmaster/user-service-client-grpcweb-ts 25.9.13370 → 25.9.13392
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.
|
@@ -5004,12 +5004,15 @@ export class UpdatePhoneOtpValidationRequest extends jspb.Message {
|
|
|
5004
5004
|
getRegioncode(): string;
|
|
5005
5005
|
setRegioncode(value: string): UpdatePhoneOtpValidationRequest;
|
|
5006
5006
|
|
|
5007
|
-
|
|
5008
|
-
|
|
5007
|
+
getEmailverificationcode(): string;
|
|
5008
|
+
setEmailverificationcode(value: string): UpdatePhoneOtpValidationRequest;
|
|
5009
5009
|
|
|
5010
5010
|
getAppaccounttype(): AppAccountType;
|
|
5011
5011
|
setAppaccounttype(value: AppAccountType): UpdatePhoneOtpValidationRequest;
|
|
5012
5012
|
|
|
5013
|
+
getPhoneverificationcode(): string;
|
|
5014
|
+
setPhoneverificationcode(value: string): UpdatePhoneOtpValidationRequest;
|
|
5015
|
+
|
|
5013
5016
|
serializeBinary(): Uint8Array;
|
|
5014
5017
|
toObject(includeInstance?: boolean): UpdatePhoneOtpValidationRequest.AsObject;
|
|
5015
5018
|
static toObject(includeInstance: boolean, msg: UpdatePhoneOtpValidationRequest): UpdatePhoneOtpValidationRequest.AsObject;
|
|
@@ -5022,8 +5025,9 @@ export namespace UpdatePhoneOtpValidationRequest {
|
|
|
5022
5025
|
export type AsObject = {
|
|
5023
5026
|
phonenumber: string,
|
|
5024
5027
|
regioncode: string,
|
|
5025
|
-
|
|
5028
|
+
emailverificationcode: string,
|
|
5026
5029
|
appaccounttype: AppAccountType,
|
|
5030
|
+
phoneverificationcode: string,
|
|
5027
5031
|
}
|
|
5028
5032
|
}
|
|
5029
5033
|
|
|
@@ -41662,8 +41662,9 @@ proto.sniipuserservice.UpdatePhoneOtpValidationRequest.toObject = function(inclu
|
|
|
41662
41662
|
var f, obj = {
|
|
41663
41663
|
phonenumber: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
41664
41664
|
regioncode: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
41665
|
-
|
|
41666
|
-
appaccounttype: jspb.Message.getFieldWithDefault(msg, 4, 0)
|
|
41665
|
+
emailverificationcode: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
41666
|
+
appaccounttype: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
41667
|
+
phoneverificationcode: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
41667
41668
|
};
|
|
41668
41669
|
|
|
41669
41670
|
if (includeInstance) {
|
|
@@ -41710,12 +41711,16 @@ proto.sniipuserservice.UpdatePhoneOtpValidationRequest.deserializeBinaryFromRead
|
|
|
41710
41711
|
break;
|
|
41711
41712
|
case 3:
|
|
41712
41713
|
var value = /** @type {string} */ (reader.readString());
|
|
41713
|
-
msg.
|
|
41714
|
+
msg.setEmailverificationcode(value);
|
|
41714
41715
|
break;
|
|
41715
41716
|
case 4:
|
|
41716
41717
|
var value = /** @type {!proto.sniipuserservice.AppAccountType} */ (reader.readEnum());
|
|
41717
41718
|
msg.setAppaccounttype(value);
|
|
41718
41719
|
break;
|
|
41720
|
+
case 5:
|
|
41721
|
+
var value = /** @type {string} */ (reader.readString());
|
|
41722
|
+
msg.setPhoneverificationcode(value);
|
|
41723
|
+
break;
|
|
41719
41724
|
default:
|
|
41720
41725
|
reader.skipField();
|
|
41721
41726
|
break;
|
|
@@ -41759,7 +41764,7 @@ proto.sniipuserservice.UpdatePhoneOtpValidationRequest.serializeBinaryToWriter =
|
|
|
41759
41764
|
f
|
|
41760
41765
|
);
|
|
41761
41766
|
}
|
|
41762
|
-
f = message.
|
|
41767
|
+
f = message.getEmailverificationcode();
|
|
41763
41768
|
if (f.length > 0) {
|
|
41764
41769
|
writer.writeString(
|
|
41765
41770
|
3,
|
|
@@ -41773,6 +41778,13 @@ proto.sniipuserservice.UpdatePhoneOtpValidationRequest.serializeBinaryToWriter =
|
|
|
41773
41778
|
f
|
|
41774
41779
|
);
|
|
41775
41780
|
}
|
|
41781
|
+
f = message.getPhoneverificationcode();
|
|
41782
|
+
if (f.length > 0) {
|
|
41783
|
+
writer.writeString(
|
|
41784
|
+
5,
|
|
41785
|
+
f
|
|
41786
|
+
);
|
|
41787
|
+
}
|
|
41776
41788
|
};
|
|
41777
41789
|
|
|
41778
41790
|
|
|
@@ -41813,10 +41825,10 @@ proto.sniipuserservice.UpdatePhoneOtpValidationRequest.prototype.setRegioncode =
|
|
|
41813
41825
|
|
|
41814
41826
|
|
|
41815
41827
|
/**
|
|
41816
|
-
* optional string
|
|
41828
|
+
* optional string emailVerificationCode = 3;
|
|
41817
41829
|
* @return {string}
|
|
41818
41830
|
*/
|
|
41819
|
-
proto.sniipuserservice.UpdatePhoneOtpValidationRequest.prototype.
|
|
41831
|
+
proto.sniipuserservice.UpdatePhoneOtpValidationRequest.prototype.getEmailverificationcode = function() {
|
|
41820
41832
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
41821
41833
|
};
|
|
41822
41834
|
|
|
@@ -41825,7 +41837,7 @@ proto.sniipuserservice.UpdatePhoneOtpValidationRequest.prototype.getVerification
|
|
|
41825
41837
|
* @param {string} value
|
|
41826
41838
|
* @return {!proto.sniipuserservice.UpdatePhoneOtpValidationRequest} returns this
|
|
41827
41839
|
*/
|
|
41828
|
-
proto.sniipuserservice.UpdatePhoneOtpValidationRequest.prototype.
|
|
41840
|
+
proto.sniipuserservice.UpdatePhoneOtpValidationRequest.prototype.setEmailverificationcode = function(value) {
|
|
41829
41841
|
return jspb.Message.setProto3StringField(this, 3, value);
|
|
41830
41842
|
};
|
|
41831
41843
|
|
|
@@ -41848,6 +41860,24 @@ proto.sniipuserservice.UpdatePhoneOtpValidationRequest.prototype.setAppaccountty
|
|
|
41848
41860
|
};
|
|
41849
41861
|
|
|
41850
41862
|
|
|
41863
|
+
/**
|
|
41864
|
+
* optional string phoneVerificationCode = 5;
|
|
41865
|
+
* @return {string}
|
|
41866
|
+
*/
|
|
41867
|
+
proto.sniipuserservice.UpdatePhoneOtpValidationRequest.prototype.getPhoneverificationcode = function() {
|
|
41868
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
41869
|
+
};
|
|
41870
|
+
|
|
41871
|
+
|
|
41872
|
+
/**
|
|
41873
|
+
* @param {string} value
|
|
41874
|
+
* @return {!proto.sniipuserservice.UpdatePhoneOtpValidationRequest} returns this
|
|
41875
|
+
*/
|
|
41876
|
+
proto.sniipuserservice.UpdatePhoneOtpValidationRequest.prototype.setPhoneverificationcode = function(value) {
|
|
41877
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
41878
|
+
};
|
|
41879
|
+
|
|
41880
|
+
|
|
41851
41881
|
|
|
41852
41882
|
|
|
41853
41883
|
|