@sniipwebmaster/biller-service-client-grpcweb 23.2.5518 → 23.2.5533
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 +34 -65
- package/package.json +1 -1
|
@@ -15072,7 +15072,8 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.toObject = function(in
|
|
|
15072
15072
|
industrysectorname: msg.getIndustrysectorname(),
|
|
15073
15073
|
logo: msg.getLogo(),
|
|
15074
15074
|
approvedconfigcount: msg.getApprovedconfigcount(),
|
|
15075
|
-
inreviewconfigcount: msg.getInreviewconfigcount()
|
|
15075
|
+
inreviewconfigcount: msg.getInreviewconfigcount(),
|
|
15076
|
+
blockedconfigcount: msg.getBlockedconfigcount()
|
|
15076
15077
|
};
|
|
15077
15078
|
|
|
15078
15079
|
if (includeInstance) {
|
|
@@ -15141,6 +15142,10 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.deserializeBinaryFromR
|
|
|
15141
15142
|
var value = /** @type {number} */ (reader.readInt32());
|
|
15142
15143
|
msg.setInreviewconfigcount(value);
|
|
15143
15144
|
break;
|
|
15145
|
+
case 9:
|
|
15146
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
15147
|
+
msg.setBlockedconfigcount(value);
|
|
15148
|
+
break;
|
|
15144
15149
|
default:
|
|
15145
15150
|
reader.skipField();
|
|
15146
15151
|
break;
|
|
@@ -15235,6 +15240,13 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.serializeBin
|
|
|
15235
15240
|
f
|
|
15236
15241
|
);
|
|
15237
15242
|
}
|
|
15243
|
+
f = this.getBlockedconfigcount();
|
|
15244
|
+
if (f !== 0) {
|
|
15245
|
+
writer.writeInt32(
|
|
15246
|
+
9,
|
|
15247
|
+
f
|
|
15248
|
+
);
|
|
15249
|
+
}
|
|
15238
15250
|
};
|
|
15239
15251
|
|
|
15240
15252
|
|
|
@@ -15367,6 +15379,21 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.setInreviewc
|
|
|
15367
15379
|
};
|
|
15368
15380
|
|
|
15369
15381
|
|
|
15382
|
+
/**
|
|
15383
|
+
* optional int32 blockedConfigCount = 9;
|
|
15384
|
+
* @return {number}
|
|
15385
|
+
*/
|
|
15386
|
+
proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.getBlockedconfigcount = function() {
|
|
15387
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 9, 0));
|
|
15388
|
+
};
|
|
15389
|
+
|
|
15390
|
+
|
|
15391
|
+
/** @param {number} value */
|
|
15392
|
+
proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.setBlockedconfigcount = function(value) {
|
|
15393
|
+
jspb.Message.setField(this, 9, value);
|
|
15394
|
+
};
|
|
15395
|
+
|
|
15396
|
+
|
|
15370
15397
|
|
|
15371
15398
|
/**
|
|
15372
15399
|
* Generated by JsPbCodeGenerator.
|
|
@@ -39128,9 +39155,7 @@ proto.sniipbillerapi.UpdateSmeBillerConfigRequest.toObject = function(includeIns
|
|
|
39128
39155
|
minamountpermitted: msg.getMinamountpermitted(),
|
|
39129
39156
|
maxamountpermitted: msg.getMaxamountpermitted(),
|
|
39130
39157
|
overpaymentpermitted: msg.getOverpaymentpermitted(),
|
|
39131
|
-
|
|
39132
|
-
isblocked: msg.getIsblocked(),
|
|
39133
|
-
requiresreview: msg.getRequiresreview()
|
|
39158
|
+
isapproved: msg.getIsapproved()
|
|
39134
39159
|
};
|
|
39135
39160
|
|
|
39136
39161
|
if (includeInstance) {
|
|
@@ -39209,15 +39234,7 @@ proto.sniipbillerapi.UpdateSmeBillerConfigRequest.deserializeBinaryFromReader =
|
|
|
39209
39234
|
break;
|
|
39210
39235
|
case 11:
|
|
39211
39236
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
39212
|
-
msg.
|
|
39213
|
-
break;
|
|
39214
|
-
case 12:
|
|
39215
|
-
var value = /** @type {boolean} */ (reader.readBool());
|
|
39216
|
-
msg.setIsblocked(value);
|
|
39217
|
-
break;
|
|
39218
|
-
case 13:
|
|
39219
|
-
var value = /** @type {boolean} */ (reader.readBool());
|
|
39220
|
-
msg.setRequiresreview(value);
|
|
39237
|
+
msg.setIsapproved(value);
|
|
39221
39238
|
break;
|
|
39222
39239
|
default:
|
|
39223
39240
|
reader.skipField();
|
|
@@ -39327,27 +39344,13 @@ proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.serializeBinaryToWri
|
|
|
39327
39344
|
f
|
|
39328
39345
|
);
|
|
39329
39346
|
}
|
|
39330
|
-
f = this.
|
|
39347
|
+
f = this.getIsapproved();
|
|
39331
39348
|
if (f) {
|
|
39332
39349
|
writer.writeBool(
|
|
39333
39350
|
11,
|
|
39334
39351
|
f
|
|
39335
39352
|
);
|
|
39336
39353
|
}
|
|
39337
|
-
f = this.getIsblocked();
|
|
39338
|
-
if (f) {
|
|
39339
|
-
writer.writeBool(
|
|
39340
|
-
12,
|
|
39341
|
-
f
|
|
39342
|
-
);
|
|
39343
|
-
}
|
|
39344
|
-
f = this.getRequiresreview();
|
|
39345
|
-
if (f) {
|
|
39346
|
-
writer.writeBool(
|
|
39347
|
-
13,
|
|
39348
|
-
f
|
|
39349
|
-
);
|
|
39350
|
-
}
|
|
39351
39354
|
};
|
|
39352
39355
|
|
|
39353
39356
|
|
|
@@ -39517,56 +39520,22 @@ proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.setOverpaymentpermit
|
|
|
39517
39520
|
|
|
39518
39521
|
|
|
39519
39522
|
/**
|
|
39520
|
-
* optional bool
|
|
39523
|
+
* optional bool isApproved = 11;
|
|
39521
39524
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
39522
39525
|
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
39523
39526
|
* @return {boolean}
|
|
39524
39527
|
*/
|
|
39525
|
-
proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.
|
|
39528
|
+
proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.getIsapproved = function() {
|
|
39526
39529
|
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 11, false));
|
|
39527
39530
|
};
|
|
39528
39531
|
|
|
39529
39532
|
|
|
39530
39533
|
/** @param {boolean} value */
|
|
39531
|
-
proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.
|
|
39534
|
+
proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.setIsapproved = function(value) {
|
|
39532
39535
|
jspb.Message.setField(this, 11, value);
|
|
39533
39536
|
};
|
|
39534
39537
|
|
|
39535
39538
|
|
|
39536
|
-
/**
|
|
39537
|
-
* optional bool isBlocked = 12;
|
|
39538
|
-
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
39539
|
-
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
39540
|
-
* @return {boolean}
|
|
39541
|
-
*/
|
|
39542
|
-
proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.getIsblocked = function() {
|
|
39543
|
-
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 12, false));
|
|
39544
|
-
};
|
|
39545
|
-
|
|
39546
|
-
|
|
39547
|
-
/** @param {boolean} value */
|
|
39548
|
-
proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.setIsblocked = function(value) {
|
|
39549
|
-
jspb.Message.setField(this, 12, value);
|
|
39550
|
-
};
|
|
39551
|
-
|
|
39552
|
-
|
|
39553
|
-
/**
|
|
39554
|
-
* optional bool requiresReview = 13;
|
|
39555
|
-
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
39556
|
-
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
39557
|
-
* @return {boolean}
|
|
39558
|
-
*/
|
|
39559
|
-
proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.getRequiresreview = function() {
|
|
39560
|
-
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 13, false));
|
|
39561
|
-
};
|
|
39562
|
-
|
|
39563
|
-
|
|
39564
|
-
/** @param {boolean} value */
|
|
39565
|
-
proto.sniipbillerapi.UpdateSmeBillerConfigRequest.prototype.setRequiresreview = function(value) {
|
|
39566
|
-
jspb.Message.setField(this, 13, value);
|
|
39567
|
-
};
|
|
39568
|
-
|
|
39569
|
-
|
|
39570
39539
|
|
|
39571
39540
|
/**
|
|
39572
39541
|
* Generated by JsPbCodeGenerator.
|