@sniipwebmaster/kyc-client-grpcweb 22.9.812 → 22.9.822
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 +28 -1
- package/package.json +1 -1
|
@@ -5007,7 +5007,8 @@ proto.kycserviceapi.UserNotifyRequest.toObject = function(includeInstance, msg)
|
|
|
5007
5007
|
userid: msg.getUserid(),
|
|
5008
5008
|
subject: msg.getSubject(),
|
|
5009
5009
|
message: msg.getMessage(),
|
|
5010
|
-
password: msg.getPassword()
|
|
5010
|
+
password: msg.getPassword(),
|
|
5011
|
+
notificationtype: msg.getNotificationtype()
|
|
5011
5012
|
};
|
|
5012
5013
|
|
|
5013
5014
|
if (includeInstance) {
|
|
@@ -5060,6 +5061,10 @@ proto.kycserviceapi.UserNotifyRequest.deserializeBinaryFromReader = function(msg
|
|
|
5060
5061
|
var value = /** @type {string} */ (reader.readString());
|
|
5061
5062
|
msg.setPassword(value);
|
|
5062
5063
|
break;
|
|
5064
|
+
case 5:
|
|
5065
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5066
|
+
msg.setNotificationtype(value);
|
|
5067
|
+
break;
|
|
5063
5068
|
default:
|
|
5064
5069
|
reader.skipField();
|
|
5065
5070
|
break;
|
|
@@ -5126,6 +5131,13 @@ proto.kycserviceapi.UserNotifyRequest.prototype.serializeBinaryToWriter = functi
|
|
|
5126
5131
|
f
|
|
5127
5132
|
);
|
|
5128
5133
|
}
|
|
5134
|
+
f = this.getNotificationtype();
|
|
5135
|
+
if (f.length > 0) {
|
|
5136
|
+
writer.writeString(
|
|
5137
|
+
5,
|
|
5138
|
+
f
|
|
5139
|
+
);
|
|
5140
|
+
}
|
|
5129
5141
|
};
|
|
5130
5142
|
|
|
5131
5143
|
|
|
@@ -5198,6 +5210,21 @@ proto.kycserviceapi.UserNotifyRequest.prototype.setPassword = function(value) {
|
|
|
5198
5210
|
};
|
|
5199
5211
|
|
|
5200
5212
|
|
|
5213
|
+
/**
|
|
5214
|
+
* optional string notificationType = 5;
|
|
5215
|
+
* @return {string}
|
|
5216
|
+
*/
|
|
5217
|
+
proto.kycserviceapi.UserNotifyRequest.prototype.getNotificationtype = function() {
|
|
5218
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 5, ""));
|
|
5219
|
+
};
|
|
5220
|
+
|
|
5221
|
+
|
|
5222
|
+
/** @param {string} value */
|
|
5223
|
+
proto.kycserviceapi.UserNotifyRequest.prototype.setNotificationtype = function(value) {
|
|
5224
|
+
jspb.Message.setField(this, 5, value);
|
|
5225
|
+
};
|
|
5226
|
+
|
|
5227
|
+
|
|
5201
5228
|
|
|
5202
5229
|
/**
|
|
5203
5230
|
* Generated by JsPbCodeGenerator.
|