@sniipwebmaster/biller-service-client-grpcweb 24.15.7845 → 24.15.7869
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 +61 -1
- package/package.json +1 -1
|
@@ -20759,7 +20759,9 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.toObject = function(in
|
|
|
20759
20759
|
lastmodifiedtimestamp: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
20760
20760
|
lastmodifiedcategory: jspb.Message.getFieldWithDefault(msg, 14, 0),
|
|
20761
20761
|
reviewedtimestamp: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
20762
|
-
hasassociatedabaimport: jspb.Message.getBooleanFieldWithDefault(msg, 16, false)
|
|
20762
|
+
hasassociatedabaimport: jspb.Message.getBooleanFieldWithDefault(msg, 16, false),
|
|
20763
|
+
hasassociatedwebportalimport: jspb.Message.getBooleanFieldWithDefault(msg, 17, false),
|
|
20764
|
+
importedbywexuser: jspb.Message.getBooleanFieldWithDefault(msg, 18, false)
|
|
20763
20765
|
};
|
|
20764
20766
|
|
|
20765
20767
|
if (includeInstance) {
|
|
@@ -20860,6 +20862,14 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.deserializeBinaryFromR
|
|
|
20860
20862
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
20861
20863
|
msg.setHasassociatedabaimport(value);
|
|
20862
20864
|
break;
|
|
20865
|
+
case 17:
|
|
20866
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
20867
|
+
msg.setHasassociatedwebportalimport(value);
|
|
20868
|
+
break;
|
|
20869
|
+
case 18:
|
|
20870
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
20871
|
+
msg.setImportedbywexuser(value);
|
|
20872
|
+
break;
|
|
20863
20873
|
default:
|
|
20864
20874
|
reader.skipField();
|
|
20865
20875
|
break;
|
|
@@ -21001,6 +21011,20 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.serializeBinaryToWrite
|
|
|
21001
21011
|
f
|
|
21002
21012
|
);
|
|
21003
21013
|
}
|
|
21014
|
+
f = message.getHasassociatedwebportalimport();
|
|
21015
|
+
if (f) {
|
|
21016
|
+
writer.writeBool(
|
|
21017
|
+
17,
|
|
21018
|
+
f
|
|
21019
|
+
);
|
|
21020
|
+
}
|
|
21021
|
+
f = message.getImportedbywexuser();
|
|
21022
|
+
if (f) {
|
|
21023
|
+
writer.writeBool(
|
|
21024
|
+
18,
|
|
21025
|
+
f
|
|
21026
|
+
);
|
|
21027
|
+
}
|
|
21004
21028
|
};
|
|
21005
21029
|
|
|
21006
21030
|
|
|
@@ -21303,6 +21327,42 @@ proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.setHasassoci
|
|
|
21303
21327
|
};
|
|
21304
21328
|
|
|
21305
21329
|
|
|
21330
|
+
/**
|
|
21331
|
+
* optional bool hasAssociatedWebPortalImport = 17;
|
|
21332
|
+
* @return {boolean}
|
|
21333
|
+
*/
|
|
21334
|
+
proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.getHasassociatedwebportalimport = function() {
|
|
21335
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 17, false));
|
|
21336
|
+
};
|
|
21337
|
+
|
|
21338
|
+
|
|
21339
|
+
/**
|
|
21340
|
+
* @param {boolean} value
|
|
21341
|
+
* @return {!proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse} returns this
|
|
21342
|
+
*/
|
|
21343
|
+
proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.setHasassociatedwebportalimport = function(value) {
|
|
21344
|
+
return jspb.Message.setProto3BooleanField(this, 17, value);
|
|
21345
|
+
};
|
|
21346
|
+
|
|
21347
|
+
|
|
21348
|
+
/**
|
|
21349
|
+
* optional bool importedByWexUser = 18;
|
|
21350
|
+
* @return {boolean}
|
|
21351
|
+
*/
|
|
21352
|
+
proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.getImportedbywexuser = function() {
|
|
21353
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 18, false));
|
|
21354
|
+
};
|
|
21355
|
+
|
|
21356
|
+
|
|
21357
|
+
/**
|
|
21358
|
+
* @param {boolean} value
|
|
21359
|
+
* @return {!proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse} returns this
|
|
21360
|
+
*/
|
|
21361
|
+
proto.sniipbillerapi.BillerWithSmeConfigsInReviewResponse.prototype.setImportedbywexuser = function(value) {
|
|
21362
|
+
return jspb.Message.setProto3BooleanField(this, 18, value);
|
|
21363
|
+
};
|
|
21364
|
+
|
|
21365
|
+
|
|
21306
21366
|
|
|
21307
21367
|
/**
|
|
21308
21368
|
* List of repeated fields within this message type.
|