@sniipwebmaster/user-service-client-grpcweb 26.7.14727 → 26.7.14751
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/dependancies/service_pb.js +61 -1
- package/package.json +1 -1
|
@@ -45988,7 +45988,9 @@ proto.sniipuserservice.UserProfile.toObject = function(includeInstance, msg) {
|
|
|
45988
45988
|
wexusername: jspb.Message.getFieldWithDefault(msg, 29, ""),
|
|
45989
45989
|
wexuserid: jspb.Message.getFieldWithDefault(msg, 30, ""),
|
|
45990
45990
|
wexaccountnumber: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
45991
|
-
mfasecretstatus: jspb.Message.getFieldWithDefault(msg, 32, 0)
|
|
45991
|
+
mfasecretstatus: jspb.Message.getFieldWithDefault(msg, 32, 0),
|
|
45992
|
+
state: jspb.Message.getFieldWithDefault(msg, 33, ""),
|
|
45993
|
+
country: jspb.Message.getFieldWithDefault(msg, 34, "")
|
|
45992
45994
|
};
|
|
45993
45995
|
|
|
45994
45996
|
if (includeInstance) {
|
|
@@ -46154,6 +46156,14 @@ proto.sniipuserservice.UserProfile.deserializeBinaryFromReader = function(msg, r
|
|
|
46154
46156
|
var value = /** @type {!proto.sniipuserservice.MfaSecretStatus} */ (reader.readEnum());
|
|
46155
46157
|
msg.setMfasecretstatus(value);
|
|
46156
46158
|
break;
|
|
46159
|
+
case 33:
|
|
46160
|
+
var value = /** @type {string} */ (reader.readString());
|
|
46161
|
+
msg.setState(value);
|
|
46162
|
+
break;
|
|
46163
|
+
case 34:
|
|
46164
|
+
var value = /** @type {string} */ (reader.readString());
|
|
46165
|
+
msg.setCountry(value);
|
|
46166
|
+
break;
|
|
46157
46167
|
default:
|
|
46158
46168
|
reader.skipField();
|
|
46159
46169
|
break;
|
|
@@ -46408,6 +46418,20 @@ proto.sniipuserservice.UserProfile.serializeBinaryToWriter = function(message, w
|
|
|
46408
46418
|
f
|
|
46409
46419
|
);
|
|
46410
46420
|
}
|
|
46421
|
+
f = message.getState();
|
|
46422
|
+
if (f.length > 0) {
|
|
46423
|
+
writer.writeString(
|
|
46424
|
+
33,
|
|
46425
|
+
f
|
|
46426
|
+
);
|
|
46427
|
+
}
|
|
46428
|
+
f = message.getCountry();
|
|
46429
|
+
if (f.length > 0) {
|
|
46430
|
+
writer.writeString(
|
|
46431
|
+
34,
|
|
46432
|
+
f
|
|
46433
|
+
);
|
|
46434
|
+
}
|
|
46411
46435
|
};
|
|
46412
46436
|
|
|
46413
46437
|
|
|
@@ -47007,6 +47031,42 @@ proto.sniipuserservice.UserProfile.prototype.setMfasecretstatus = function(value
|
|
|
47007
47031
|
};
|
|
47008
47032
|
|
|
47009
47033
|
|
|
47034
|
+
/**
|
|
47035
|
+
* optional string state = 33;
|
|
47036
|
+
* @return {string}
|
|
47037
|
+
*/
|
|
47038
|
+
proto.sniipuserservice.UserProfile.prototype.getState = function() {
|
|
47039
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 33, ""));
|
|
47040
|
+
};
|
|
47041
|
+
|
|
47042
|
+
|
|
47043
|
+
/**
|
|
47044
|
+
* @param {string} value
|
|
47045
|
+
* @return {!proto.sniipuserservice.UserProfile} returns this
|
|
47046
|
+
*/
|
|
47047
|
+
proto.sniipuserservice.UserProfile.prototype.setState = function(value) {
|
|
47048
|
+
return jspb.Message.setProto3StringField(this, 33, value);
|
|
47049
|
+
};
|
|
47050
|
+
|
|
47051
|
+
|
|
47052
|
+
/**
|
|
47053
|
+
* optional string country = 34;
|
|
47054
|
+
* @return {string}
|
|
47055
|
+
*/
|
|
47056
|
+
proto.sniipuserservice.UserProfile.prototype.getCountry = function() {
|
|
47057
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 34, ""));
|
|
47058
|
+
};
|
|
47059
|
+
|
|
47060
|
+
|
|
47061
|
+
/**
|
|
47062
|
+
* @param {string} value
|
|
47063
|
+
* @return {!proto.sniipuserservice.UserProfile} returns this
|
|
47064
|
+
*/
|
|
47065
|
+
proto.sniipuserservice.UserProfile.prototype.setCountry = function(value) {
|
|
47066
|
+
return jspb.Message.setProto3StringField(this, 34, value);
|
|
47067
|
+
};
|
|
47068
|
+
|
|
47069
|
+
|
|
47010
47070
|
|
|
47011
47071
|
/**
|
|
47012
47072
|
* List of repeated fields within this message type.
|