@sniipwebmaster/biller-service-client-grpcweb 22.13.4764 → 22.13.4797
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
|
@@ -11494,7 +11494,8 @@ proto.sniipbillerapi.BillerReview.toObject = function(includeInstance, msg) {
|
|
|
11494
11494
|
industrycode: msg.getIndustrycode(),
|
|
11495
11495
|
industrysectorname: msg.getIndustrysectorname(),
|
|
11496
11496
|
paymentmethodgroupid: msg.getPaymentmethodgroupid(),
|
|
11497
|
-
logo: msg.getLogo()
|
|
11497
|
+
logo: msg.getLogo(),
|
|
11498
|
+
firstuserid: msg.getFirstuserid()
|
|
11498
11499
|
};
|
|
11499
11500
|
|
|
11500
11501
|
if (includeInstance) {
|
|
@@ -11571,6 +11572,10 @@ proto.sniipbillerapi.BillerReview.deserializeBinaryFromReader = function(msg, re
|
|
|
11571
11572
|
var value = /** @type {string} */ (reader.readString());
|
|
11572
11573
|
msg.setLogo(value);
|
|
11573
11574
|
break;
|
|
11575
|
+
case 11:
|
|
11576
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
11577
|
+
msg.setFirstuserid(value);
|
|
11578
|
+
break;
|
|
11574
11579
|
default:
|
|
11575
11580
|
reader.skipField();
|
|
11576
11581
|
break;
|
|
@@ -11679,6 +11684,13 @@ proto.sniipbillerapi.BillerReview.prototype.serializeBinaryToWriter = function (
|
|
|
11679
11684
|
f
|
|
11680
11685
|
);
|
|
11681
11686
|
}
|
|
11687
|
+
f = this.getFirstuserid();
|
|
11688
|
+
if (f !== 0) {
|
|
11689
|
+
writer.writeInt64(
|
|
11690
|
+
11,
|
|
11691
|
+
f
|
|
11692
|
+
);
|
|
11693
|
+
}
|
|
11682
11694
|
};
|
|
11683
11695
|
|
|
11684
11696
|
|
|
@@ -11841,6 +11853,21 @@ proto.sniipbillerapi.BillerReview.prototype.setLogo = function(value) {
|
|
|
11841
11853
|
};
|
|
11842
11854
|
|
|
11843
11855
|
|
|
11856
|
+
/**
|
|
11857
|
+
* optional int64 firstUserId = 11;
|
|
11858
|
+
* @return {number}
|
|
11859
|
+
*/
|
|
11860
|
+
proto.sniipbillerapi.BillerReview.prototype.getFirstuserid = function() {
|
|
11861
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 11, 0));
|
|
11862
|
+
};
|
|
11863
|
+
|
|
11864
|
+
|
|
11865
|
+
/** @param {number} value */
|
|
11866
|
+
proto.sniipbillerapi.BillerReview.prototype.setFirstuserid = function(value) {
|
|
11867
|
+
jspb.Message.setField(this, 11, value);
|
|
11868
|
+
};
|
|
11869
|
+
|
|
11870
|
+
|
|
11844
11871
|
|
|
11845
11872
|
/**
|
|
11846
11873
|
* Generated by JsPbCodeGenerator.
|