@sniipwebmaster/biller-service-client-grpcweb 25.1.8087 → 25.1.8096

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.
@@ -19768,7 +19768,15 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.toObject = function(includeInstanc
19768
19768
  createdbybillbankaccountname: jspb.Message.getFieldWithDefault(msg, 19, ""),
19769
19769
  createdbybillsource: jspb.Message.getFieldWithDefault(msg, 20, ""),
19770
19770
  createdbyagentbill: jspb.Message.getBooleanFieldWithDefault(msg, 21, false),
19771
- bankaccountstatus: jspb.Message.getFieldWithDefault(msg, 22, "")
19771
+ bankaccountstatus: jspb.Message.getFieldWithDefault(msg, 22, ""),
19772
+ abrregisteredthresholdmet: jspb.Message.getBooleanFieldWithDefault(msg, 23, false),
19773
+ abrregisteredforgst: jspb.Message.getBooleanFieldWithDefault(msg, 24, false),
19774
+ industrylogoset: jspb.Message.getBooleanFieldWithDefault(msg, 25, false),
19775
+ bankdetailsverified: jspb.Message.getBooleanFieldWithDefault(msg, 26, false),
19776
+ paymentrestrictionsset: jspb.Message.getBooleanFieldWithDefault(msg, 27, false),
19777
+ transactionthresholdmet: jspb.Message.getBooleanFieldWithDefault(msg, 28, false),
19778
+ userstatussafe: jspb.Message.getBooleanFieldWithDefault(msg, 29, false),
19779
+ validationscore: jspb.Message.getFieldWithDefault(msg, 30, 0)
19772
19780
  };
19773
19781
 
19774
19782
  if (includeInstance) {
@@ -19894,6 +19902,38 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.deserializeBinaryFromReader = func
19894
19902
  var value = /** @type {string} */ (reader.readString());
19895
19903
  msg.setBankaccountstatus(value);
19896
19904
  break;
19905
+ case 23:
19906
+ var value = /** @type {boolean} */ (reader.readBool());
19907
+ msg.setAbrregisteredthresholdmet(value);
19908
+ break;
19909
+ case 24:
19910
+ var value = /** @type {boolean} */ (reader.readBool());
19911
+ msg.setAbrregisteredforgst(value);
19912
+ break;
19913
+ case 25:
19914
+ var value = /** @type {boolean} */ (reader.readBool());
19915
+ msg.setIndustrylogoset(value);
19916
+ break;
19917
+ case 26:
19918
+ var value = /** @type {boolean} */ (reader.readBool());
19919
+ msg.setBankdetailsverified(value);
19920
+ break;
19921
+ case 27:
19922
+ var value = /** @type {boolean} */ (reader.readBool());
19923
+ msg.setPaymentrestrictionsset(value);
19924
+ break;
19925
+ case 28:
19926
+ var value = /** @type {boolean} */ (reader.readBool());
19927
+ msg.setTransactionthresholdmet(value);
19928
+ break;
19929
+ case 29:
19930
+ var value = /** @type {boolean} */ (reader.readBool());
19931
+ msg.setUserstatussafe(value);
19932
+ break;
19933
+ case 30:
19934
+ var value = /** @type {number} */ (reader.readInt32());
19935
+ msg.setValidationscore(value);
19936
+ break;
19897
19937
  default:
19898
19938
  reader.skipField();
19899
19939
  break;
@@ -20078,6 +20118,62 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.serializeBinaryToWriter = function
20078
20118
  f
20079
20119
  );
20080
20120
  }
20121
+ f = message.getAbrregisteredthresholdmet();
20122
+ if (f) {
20123
+ writer.writeBool(
20124
+ 23,
20125
+ f
20126
+ );
20127
+ }
20128
+ f = message.getAbrregisteredforgst();
20129
+ if (f) {
20130
+ writer.writeBool(
20131
+ 24,
20132
+ f
20133
+ );
20134
+ }
20135
+ f = message.getIndustrylogoset();
20136
+ if (f) {
20137
+ writer.writeBool(
20138
+ 25,
20139
+ f
20140
+ );
20141
+ }
20142
+ f = message.getBankdetailsverified();
20143
+ if (f) {
20144
+ writer.writeBool(
20145
+ 26,
20146
+ f
20147
+ );
20148
+ }
20149
+ f = message.getPaymentrestrictionsset();
20150
+ if (f) {
20151
+ writer.writeBool(
20152
+ 27,
20153
+ f
20154
+ );
20155
+ }
20156
+ f = message.getTransactionthresholdmet();
20157
+ if (f) {
20158
+ writer.writeBool(
20159
+ 28,
20160
+ f
20161
+ );
20162
+ }
20163
+ f = message.getUserstatussafe();
20164
+ if (f) {
20165
+ writer.writeBool(
20166
+ 29,
20167
+ f
20168
+ );
20169
+ }
20170
+ f = message.getValidationscore();
20171
+ if (f !== 0) {
20172
+ writer.writeInt32(
20173
+ 30,
20174
+ f
20175
+ );
20176
+ }
20081
20177
  };
20082
20178
 
20083
20179
 
@@ -20514,6 +20610,150 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.hasBankaccountstatus = f
20514
20610
  };
20515
20611
 
20516
20612
 
20613
+ /**
20614
+ * optional bool abrRegisteredThresholdMet = 23;
20615
+ * @return {boolean}
20616
+ */
20617
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getAbrregisteredthresholdmet = function() {
20618
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 23, false));
20619
+ };
20620
+
20621
+
20622
+ /**
20623
+ * @param {boolean} value
20624
+ * @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
20625
+ */
20626
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setAbrregisteredthresholdmet = function(value) {
20627
+ return jspb.Message.setProto3BooleanField(this, 23, value);
20628
+ };
20629
+
20630
+
20631
+ /**
20632
+ * optional bool abrRegisteredForGst = 24;
20633
+ * @return {boolean}
20634
+ */
20635
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getAbrregisteredforgst = function() {
20636
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 24, false));
20637
+ };
20638
+
20639
+
20640
+ /**
20641
+ * @param {boolean} value
20642
+ * @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
20643
+ */
20644
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setAbrregisteredforgst = function(value) {
20645
+ return jspb.Message.setProto3BooleanField(this, 24, value);
20646
+ };
20647
+
20648
+
20649
+ /**
20650
+ * optional bool industryLogoSet = 25;
20651
+ * @return {boolean}
20652
+ */
20653
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getIndustrylogoset = function() {
20654
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 25, false));
20655
+ };
20656
+
20657
+
20658
+ /**
20659
+ * @param {boolean} value
20660
+ * @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
20661
+ */
20662
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setIndustrylogoset = function(value) {
20663
+ return jspb.Message.setProto3BooleanField(this, 25, value);
20664
+ };
20665
+
20666
+
20667
+ /**
20668
+ * optional bool bankDetailsVerified = 26;
20669
+ * @return {boolean}
20670
+ */
20671
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getBankdetailsverified = function() {
20672
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 26, false));
20673
+ };
20674
+
20675
+
20676
+ /**
20677
+ * @param {boolean} value
20678
+ * @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
20679
+ */
20680
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setBankdetailsverified = function(value) {
20681
+ return jspb.Message.setProto3BooleanField(this, 26, value);
20682
+ };
20683
+
20684
+
20685
+ /**
20686
+ * optional bool paymentRestrictionsSet = 27;
20687
+ * @return {boolean}
20688
+ */
20689
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getPaymentrestrictionsset = function() {
20690
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 27, false));
20691
+ };
20692
+
20693
+
20694
+ /**
20695
+ * @param {boolean} value
20696
+ * @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
20697
+ */
20698
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setPaymentrestrictionsset = function(value) {
20699
+ return jspb.Message.setProto3BooleanField(this, 27, value);
20700
+ };
20701
+
20702
+
20703
+ /**
20704
+ * optional bool transactionThresholdMet = 28;
20705
+ * @return {boolean}
20706
+ */
20707
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getTransactionthresholdmet = function() {
20708
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 28, false));
20709
+ };
20710
+
20711
+
20712
+ /**
20713
+ * @param {boolean} value
20714
+ * @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
20715
+ */
20716
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setTransactionthresholdmet = function(value) {
20717
+ return jspb.Message.setProto3BooleanField(this, 28, value);
20718
+ };
20719
+
20720
+
20721
+ /**
20722
+ * optional bool userStatusSafe = 29;
20723
+ * @return {boolean}
20724
+ */
20725
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getUserstatussafe = function() {
20726
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 29, false));
20727
+ };
20728
+
20729
+
20730
+ /**
20731
+ * @param {boolean} value
20732
+ * @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
20733
+ */
20734
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setUserstatussafe = function(value) {
20735
+ return jspb.Message.setProto3BooleanField(this, 29, value);
20736
+ };
20737
+
20738
+
20739
+ /**
20740
+ * optional int32 validationScore = 30;
20741
+ * @return {number}
20742
+ */
20743
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getValidationscore = function() {
20744
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 30, 0));
20745
+ };
20746
+
20747
+
20748
+ /**
20749
+ * @param {number} value
20750
+ * @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
20751
+ */
20752
+ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setValidationscore = function(value) {
20753
+ return jspb.Message.setProto3IntField(this, 30, value);
20754
+ };
20755
+
20756
+
20517
20757
 
20518
20758
 
20519
20759
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/biller-service-client-grpcweb",
3
- "version": "25.1.8087",
3
+ "version": "25.1.8096",
4
4
  "description": "biller-service-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",