@sniipwebmaster/biller-service-client-grpcweb 0.2.3194 → 0.2.3220

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.
@@ -906,19 +906,12 @@ proto.sniipbillerapi.ActivatePaymentMethodToReceivePaymentsRequest.prototype.has
906
906
  * @constructor
907
907
  */
908
908
  proto.sniipbillerapi.AddBillerConfigRequest = function(opt_data) {
909
- jspb.Message.initialize(this, opt_data, 0, -1, proto.sniipbillerapi.AddBillerConfigRequest.repeatedFields_, null);
909
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
910
910
  };
911
911
  goog.inherits(proto.sniipbillerapi.AddBillerConfigRequest, jspb.Message);
912
912
  if (goog.DEBUG && !COMPILED) {
913
913
  proto.sniipbillerapi.AddBillerConfigRequest.displayName = 'proto.sniipbillerapi.AddBillerConfigRequest';
914
914
  }
915
- /**
916
- * List of repeated fields within this message type.
917
- * @private {!Array<number>}
918
- * @const
919
- */
920
- proto.sniipbillerapi.AddBillerConfigRequest.repeatedFields_ = [1];
921
-
922
915
 
923
916
 
924
917
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -947,7 +940,6 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.toObject = function(opt_in
947
940
  */
948
941
  proto.sniipbillerapi.AddBillerConfigRequest.toObject = function(includeInstance, msg) {
949
942
  var f, obj = {
950
- acceptedpaymentmethodsList: jspb.Message.getField(msg, 1),
951
943
  code: msg.getCode(),
952
944
  isactive: msg.getIsactive(),
953
945
  maxamountpermitted: msg.getMaxamountpermitted(),
@@ -959,7 +951,8 @@ proto.sniipbillerapi.AddBillerConfigRequest.toObject = function(includeInstance,
959
951
  trimreferencenumber: msg.getTrimreferencenumber(),
960
952
  billerid: msg.getBillerid(),
961
953
  overpaymentpermitted: msg.getOverpaymentpermitted(),
962
- paymentprocessor: msg.getPaymentprocessor()
954
+ paymentprocessor: msg.getPaymentprocessor(),
955
+ paymentmethodgroupid: msg.getPaymentmethodgroupid()
963
956
  };
964
957
 
965
958
  if (includeInstance) {
@@ -996,11 +989,6 @@ proto.sniipbillerapi.AddBillerConfigRequest.deserializeBinaryFromReader = functi
996
989
  }
997
990
  var field = reader.getFieldNumber();
998
991
  switch (field) {
999
- case 1:
1000
- var value = /** @type {string} */ (reader.readString());
1001
- msg.getAcceptedpaymentmethodsList().push(value);
1002
- msg.setAcceptedpaymentmethodsList(msg.getAcceptedpaymentmethodsList());
1003
- break;
1004
992
  case 2:
1005
993
  var value = /** @type {string} */ (reader.readString());
1006
994
  msg.setCode(value);
@@ -1050,6 +1038,10 @@ proto.sniipbillerapi.AddBillerConfigRequest.deserializeBinaryFromReader = functi
1050
1038
  var value = /** @type {string} */ (reader.readString());
1051
1039
  msg.setPaymentprocessor(value);
1052
1040
  break;
1041
+ case 16:
1042
+ var value = /** @type {number} */ (reader.readInt64());
1043
+ msg.setPaymentmethodgroupid(value);
1044
+ break;
1053
1045
  default:
1054
1046
  reader.skipField();
1055
1047
  break;
@@ -1088,13 +1080,6 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.serializeBinary = function
1088
1080
  */
1089
1081
  proto.sniipbillerapi.AddBillerConfigRequest.prototype.serializeBinaryToWriter = function (writer) {
1090
1082
  var f = undefined;
1091
- f = this.getAcceptedpaymentmethodsList();
1092
- if (f.length > 0) {
1093
- writer.writeRepeatedString(
1094
- 1,
1095
- f
1096
- );
1097
- }
1098
1083
  f = this.getCode();
1099
1084
  if (f.length > 0) {
1100
1085
  writer.writeString(
@@ -1180,6 +1165,13 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.serializeBinaryToWriter =
1180
1165
  f
1181
1166
  );
1182
1167
  }
1168
+ f = this.getPaymentmethodgroupid();
1169
+ if (f !== 0) {
1170
+ writer.writeInt64(
1171
+ 16,
1172
+ f
1173
+ );
1174
+ }
1183
1175
  };
1184
1176
 
1185
1177
 
@@ -1192,28 +1184,6 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.cloneMessage = function()
1192
1184
  };
1193
1185
 
1194
1186
 
1195
- /**
1196
- * repeated string acceptedPaymentMethods = 1;
1197
- * If you change this array by adding, removing or replacing elements, or if you
1198
- * replace the array itself, then you must call the setter to update it.
1199
- * @return {!Array.<string>}
1200
- */
1201
- proto.sniipbillerapi.AddBillerConfigRequest.prototype.getAcceptedpaymentmethodsList = function() {
1202
- return /** @type {!Array.<string>} */ (jspb.Message.getField(this, 1));
1203
- };
1204
-
1205
-
1206
- /** @param {Array.<string>} value */
1207
- proto.sniipbillerapi.AddBillerConfigRequest.prototype.setAcceptedpaymentmethodsList = function(value) {
1208
- jspb.Message.setField(this, 1, value || []);
1209
- };
1210
-
1211
-
1212
- proto.sniipbillerapi.AddBillerConfigRequest.prototype.clearAcceptedpaymentmethodsList = function() {
1213
- jspb.Message.setField(this, 1, []);
1214
- };
1215
-
1216
-
1217
1187
  /**
1218
1188
  * optional string code = 2;
1219
1189
  * @return {string}
@@ -1419,6 +1389,21 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.setPaymentprocessor = func
1419
1389
  };
1420
1390
 
1421
1391
 
1392
+ /**
1393
+ * optional int64 paymentMethodGroupId = 16;
1394
+ * @return {number}
1395
+ */
1396
+ proto.sniipbillerapi.AddBillerConfigRequest.prototype.getPaymentmethodgroupid = function() {
1397
+ return /** @type {number} */ (jspb.Message.getFieldProto3(this, 16, 0));
1398
+ };
1399
+
1400
+
1401
+ /** @param {number} value */
1402
+ proto.sniipbillerapi.AddBillerConfigRequest.prototype.setPaymentmethodgroupid = function(value) {
1403
+ jspb.Message.setField(this, 16, value);
1404
+ };
1405
+
1406
+
1422
1407
 
1423
1408
  /**
1424
1409
  * Generated by JsPbCodeGenerator.
@@ -5829,7 +5814,8 @@ proto.sniipbillerapi.BillerConfig.toObject = function(includeInstance, msg) {
5829
5814
  payidaccount: (f = msg.getPayidaccount()) && proto.sniipbillerapi.PayIdAccount.toObject(includeInstance, f),
5830
5815
  ispayid: msg.getIspayid(),
5831
5816
  overpaymentpermitted: msg.getOverpaymentpermitted(),
5832
- paymentprocessor: msg.getPaymentprocessor()
5817
+ paymentprocessor: msg.getPaymentprocessor(),
5818
+ paymentmethodgroupid: msg.getPaymentmethodgroupid()
5833
5819
  };
5834
5820
 
5835
5821
  if (includeInstance) {
@@ -5938,6 +5924,10 @@ proto.sniipbillerapi.BillerConfig.deserializeBinaryFromReader = function(msg, re
5938
5924
  var value = /** @type {string} */ (reader.readString());
5939
5925
  msg.setPaymentprocessor(value);
5940
5926
  break;
5927
+ case 20:
5928
+ var value = /** @type {number} */ (reader.readInt64());
5929
+ msg.setPaymentmethodgroupid(value);
5930
+ break;
5941
5931
  default:
5942
5932
  reader.skipField();
5943
5933
  break;
@@ -6098,6 +6088,13 @@ proto.sniipbillerapi.BillerConfig.prototype.serializeBinaryToWriter = function (
6098
6088
  f
6099
6089
  );
6100
6090
  }
6091
+ f = this.getPaymentmethodgroupid();
6092
+ if (f !== 0) {
6093
+ writer.writeInt64(
6094
+ 20,
6095
+ f
6096
+ );
6097
+ }
6101
6098
  };
6102
6099
 
6103
6100
 
@@ -6431,6 +6428,21 @@ proto.sniipbillerapi.BillerConfig.prototype.setPaymentprocessor = function(value
6431
6428
  };
6432
6429
 
6433
6430
 
6431
+ /**
6432
+ * optional int64 paymentMethodGroupId = 20;
6433
+ * @return {number}
6434
+ */
6435
+ proto.sniipbillerapi.BillerConfig.prototype.getPaymentmethodgroupid = function() {
6436
+ return /** @type {number} */ (jspb.Message.getFieldProto3(this, 20, 0));
6437
+ };
6438
+
6439
+
6440
+ /** @param {number} value */
6441
+ proto.sniipbillerapi.BillerConfig.prototype.setPaymentmethodgroupid = function(value) {
6442
+ jspb.Message.setField(this, 20, value);
6443
+ };
6444
+
6445
+
6434
6446
 
6435
6447
  /**
6436
6448
  * Generated by JsPbCodeGenerator.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/biller-service-client-grpcweb",
3
- "version": "0.2.3194",
3
+ "version": "0.2.3220",
4
4
  "description": "biller-service-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",