@sniipwebmaster/user-service-client-grpcweb-ts 24.13.11596 → 24.13.11616
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.
|
@@ -5019,6 +5019,15 @@ export class UserProfile extends jspb.Message {
|
|
|
5019
5019
|
getAppaccounttype(): AppAccountType;
|
|
5020
5020
|
setAppaccounttype(value: AppAccountType): UserProfile;
|
|
5021
5021
|
|
|
5022
|
+
getWexusername(): string;
|
|
5023
|
+
setWexusername(value: string): UserProfile;
|
|
5024
|
+
|
|
5025
|
+
getWexuserid(): string;
|
|
5026
|
+
setWexuserid(value: string): UserProfile;
|
|
5027
|
+
|
|
5028
|
+
getWexaccountnumber(): string;
|
|
5029
|
+
setWexaccountnumber(value: string): UserProfile;
|
|
5030
|
+
|
|
5022
5031
|
serializeBinary(): Uint8Array;
|
|
5023
5032
|
toObject(includeInstance?: boolean): UserProfile.AsObject;
|
|
5024
5033
|
static toObject(includeInstance: boolean, msg: UserProfile): UserProfile.AsObject;
|
|
@@ -5057,6 +5066,9 @@ export namespace UserProfile {
|
|
|
5057
5066
|
markedasbusiness: boolean,
|
|
5058
5067
|
dobstring: string,
|
|
5059
5068
|
appaccounttype: AppAccountType,
|
|
5069
|
+
wexusername: string,
|
|
5070
|
+
wexuserid: string,
|
|
5071
|
+
wexaccountnumber: string,
|
|
5060
5072
|
}
|
|
5061
5073
|
}
|
|
5062
5074
|
|
|
@@ -41059,7 +41059,10 @@ proto.sniipuserservice.UserProfile.toObject = function(includeInstance, msg) {
|
|
|
41059
41059
|
abnentityname: jspb.Message.getFieldWithDefault(msg, 25, ""),
|
|
41060
41060
|
markedasbusiness: jspb.Message.getBooleanFieldWithDefault(msg, 26, false),
|
|
41061
41061
|
dobstring: jspb.Message.getFieldWithDefault(msg, 27, ""),
|
|
41062
|
-
appaccounttype: jspb.Message.getFieldWithDefault(msg, 28, 0)
|
|
41062
|
+
appaccounttype: jspb.Message.getFieldWithDefault(msg, 28, 0),
|
|
41063
|
+
wexusername: jspb.Message.getFieldWithDefault(msg, 29, ""),
|
|
41064
|
+
wexuserid: jspb.Message.getFieldWithDefault(msg, 30, ""),
|
|
41065
|
+
wexaccountnumber: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
41063
41066
|
};
|
|
41064
41067
|
|
|
41065
41068
|
if (includeInstance) {
|
|
@@ -41209,6 +41212,18 @@ proto.sniipuserservice.UserProfile.deserializeBinaryFromReader = function(msg, r
|
|
|
41209
41212
|
var value = /** @type {!proto.sniipuserservice.AppAccountType} */ (reader.readEnum());
|
|
41210
41213
|
msg.setAppaccounttype(value);
|
|
41211
41214
|
break;
|
|
41215
|
+
case 29:
|
|
41216
|
+
var value = /** @type {string} */ (reader.readString());
|
|
41217
|
+
msg.setWexusername(value);
|
|
41218
|
+
break;
|
|
41219
|
+
case 30:
|
|
41220
|
+
var value = /** @type {string} */ (reader.readString());
|
|
41221
|
+
msg.setWexuserid(value);
|
|
41222
|
+
break;
|
|
41223
|
+
case 31:
|
|
41224
|
+
var value = /** @type {string} */ (reader.readString());
|
|
41225
|
+
msg.setWexaccountnumber(value);
|
|
41226
|
+
break;
|
|
41212
41227
|
default:
|
|
41213
41228
|
reader.skipField();
|
|
41214
41229
|
break;
|
|
@@ -41435,6 +41450,27 @@ proto.sniipuserservice.UserProfile.serializeBinaryToWriter = function(message, w
|
|
|
41435
41450
|
f
|
|
41436
41451
|
);
|
|
41437
41452
|
}
|
|
41453
|
+
f = message.getWexusername();
|
|
41454
|
+
if (f.length > 0) {
|
|
41455
|
+
writer.writeString(
|
|
41456
|
+
29,
|
|
41457
|
+
f
|
|
41458
|
+
);
|
|
41459
|
+
}
|
|
41460
|
+
f = message.getWexuserid();
|
|
41461
|
+
if (f.length > 0) {
|
|
41462
|
+
writer.writeString(
|
|
41463
|
+
30,
|
|
41464
|
+
f
|
|
41465
|
+
);
|
|
41466
|
+
}
|
|
41467
|
+
f = message.getWexaccountnumber();
|
|
41468
|
+
if (f.length > 0) {
|
|
41469
|
+
writer.writeString(
|
|
41470
|
+
31,
|
|
41471
|
+
f
|
|
41472
|
+
);
|
|
41473
|
+
}
|
|
41438
41474
|
};
|
|
41439
41475
|
|
|
41440
41476
|
|
|
@@ -41962,6 +41998,60 @@ proto.sniipuserservice.UserProfile.prototype.setAppaccounttype = function(value)
|
|
|
41962
41998
|
};
|
|
41963
41999
|
|
|
41964
42000
|
|
|
42001
|
+
/**
|
|
42002
|
+
* optional string wexUserName = 29;
|
|
42003
|
+
* @return {string}
|
|
42004
|
+
*/
|
|
42005
|
+
proto.sniipuserservice.UserProfile.prototype.getWexusername = function() {
|
|
42006
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 29, ""));
|
|
42007
|
+
};
|
|
42008
|
+
|
|
42009
|
+
|
|
42010
|
+
/**
|
|
42011
|
+
* @param {string} value
|
|
42012
|
+
* @return {!proto.sniipuserservice.UserProfile} returns this
|
|
42013
|
+
*/
|
|
42014
|
+
proto.sniipuserservice.UserProfile.prototype.setWexusername = function(value) {
|
|
42015
|
+
return jspb.Message.setProto3StringField(this, 29, value);
|
|
42016
|
+
};
|
|
42017
|
+
|
|
42018
|
+
|
|
42019
|
+
/**
|
|
42020
|
+
* optional string wexUserId = 30;
|
|
42021
|
+
* @return {string}
|
|
42022
|
+
*/
|
|
42023
|
+
proto.sniipuserservice.UserProfile.prototype.getWexuserid = function() {
|
|
42024
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 30, ""));
|
|
42025
|
+
};
|
|
42026
|
+
|
|
42027
|
+
|
|
42028
|
+
/**
|
|
42029
|
+
* @param {string} value
|
|
42030
|
+
* @return {!proto.sniipuserservice.UserProfile} returns this
|
|
42031
|
+
*/
|
|
42032
|
+
proto.sniipuserservice.UserProfile.prototype.setWexuserid = function(value) {
|
|
42033
|
+
return jspb.Message.setProto3StringField(this, 30, value);
|
|
42034
|
+
};
|
|
42035
|
+
|
|
42036
|
+
|
|
42037
|
+
/**
|
|
42038
|
+
* optional string wexAccountNumber = 31;
|
|
42039
|
+
* @return {string}
|
|
42040
|
+
*/
|
|
42041
|
+
proto.sniipuserservice.UserProfile.prototype.getWexaccountnumber = function() {
|
|
42042
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 31, ""));
|
|
42043
|
+
};
|
|
42044
|
+
|
|
42045
|
+
|
|
42046
|
+
/**
|
|
42047
|
+
* @param {string} value
|
|
42048
|
+
* @return {!proto.sniipuserservice.UserProfile} returns this
|
|
42049
|
+
*/
|
|
42050
|
+
proto.sniipuserservice.UserProfile.prototype.setWexaccountnumber = function(value) {
|
|
42051
|
+
return jspb.Message.setProto3StringField(this, 31, value);
|
|
42052
|
+
};
|
|
42053
|
+
|
|
42054
|
+
|
|
41965
42055
|
|
|
41966
42056
|
/**
|
|
41967
42057
|
* List of repeated fields within this message type.
|