@sniipwebmaster/biller-service-client-grpcweb 24.12.7621 → 24.13.7643
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 +31 -1
- package/package.json +1 -1
|
@@ -31029,7 +31029,8 @@ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.toObject = fun
|
|
|
31029
31029
|
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.toObject = function(includeInstance, msg) {
|
|
31030
31030
|
var f, obj = {
|
|
31031
31031
|
billerconfigidsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
31032
|
-
includeallconfigs: jspb.Message.getBooleanFieldWithDefault(msg, 2, false)
|
|
31032
|
+
includeallconfigs: jspb.Message.getBooleanFieldWithDefault(msg, 2, false),
|
|
31033
|
+
includepaymentmethodgroups: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
|
|
31033
31034
|
};
|
|
31034
31035
|
|
|
31035
31036
|
if (includeInstance) {
|
|
@@ -31076,6 +31077,10 @@ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.deserializeBinaryFromRea
|
|
|
31076
31077
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
31077
31078
|
msg.setIncludeallconfigs(value);
|
|
31078
31079
|
break;
|
|
31080
|
+
case 3:
|
|
31081
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
31082
|
+
msg.setIncludepaymentmethodgroups(value);
|
|
31083
|
+
break;
|
|
31079
31084
|
default:
|
|
31080
31085
|
reader.skipField();
|
|
31081
31086
|
break;
|
|
@@ -31119,6 +31124,13 @@ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.serializeBinaryToWriter
|
|
|
31119
31124
|
f
|
|
31120
31125
|
);
|
|
31121
31126
|
}
|
|
31127
|
+
f = message.getIncludepaymentmethodgroups();
|
|
31128
|
+
if (f) {
|
|
31129
|
+
writer.writeBool(
|
|
31130
|
+
3,
|
|
31131
|
+
f
|
|
31132
|
+
);
|
|
31133
|
+
}
|
|
31122
31134
|
};
|
|
31123
31135
|
|
|
31124
31136
|
|
|
@@ -31177,6 +31189,24 @@ proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.setIncludeallc
|
|
|
31177
31189
|
};
|
|
31178
31190
|
|
|
31179
31191
|
|
|
31192
|
+
/**
|
|
31193
|
+
* optional bool includePaymentMethodGroups = 3;
|
|
31194
|
+
* @return {boolean}
|
|
31195
|
+
*/
|
|
31196
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.getIncludepaymentmethodgroups = function() {
|
|
31197
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
|
|
31198
|
+
};
|
|
31199
|
+
|
|
31200
|
+
|
|
31201
|
+
/**
|
|
31202
|
+
* @param {boolean} value
|
|
31203
|
+
* @return {!proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest} returns this
|
|
31204
|
+
*/
|
|
31205
|
+
proto.sniipbillerapi.GetBillersByBillerConfigIdsRequest.prototype.setIncludepaymentmethodgroups = function(value) {
|
|
31206
|
+
return jspb.Message.setProto3BooleanField(this, 3, value);
|
|
31207
|
+
};
|
|
31208
|
+
|
|
31209
|
+
|
|
31180
31210
|
|
|
31181
31211
|
|
|
31182
31212
|
|