@sniipwebmaster/payment-methods-client-grpcweb 26.4.8172 → 26.4.8181
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
|
@@ -24022,7 +24022,8 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.toObject = fun
|
|
|
24022
24022
|
excludegooglepay: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
|
|
24023
24023
|
pagesize: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
|
24024
24024
|
pagenumber: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
24025
|
-
paymenttype: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
24025
|
+
paymenttype: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
24026
|
+
creditcardcategory: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
24026
24027
|
};
|
|
24027
24028
|
|
|
24028
24029
|
if (includeInstance) {
|
|
@@ -24087,6 +24088,10 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.deserializeBin
|
|
|
24087
24088
|
var value = /** @type {string} */ (reader.readString());
|
|
24088
24089
|
msg.setPaymenttype(value);
|
|
24089
24090
|
break;
|
|
24091
|
+
case 8:
|
|
24092
|
+
var value = /** @type {string} */ (reader.readString());
|
|
24093
|
+
msg.setCreditcardcategory(value);
|
|
24094
|
+
break;
|
|
24090
24095
|
default:
|
|
24091
24096
|
reader.skipField();
|
|
24092
24097
|
break;
|
|
@@ -24165,6 +24170,13 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.serializeBinar
|
|
|
24165
24170
|
f
|
|
24166
24171
|
);
|
|
24167
24172
|
}
|
|
24173
|
+
f = message.getCreditcardcategory();
|
|
24174
|
+
if (f.length > 0) {
|
|
24175
|
+
writer.writeString(
|
|
24176
|
+
8,
|
|
24177
|
+
f
|
|
24178
|
+
);
|
|
24179
|
+
}
|
|
24168
24180
|
};
|
|
24169
24181
|
|
|
24170
24182
|
|
|
@@ -24294,6 +24306,24 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.prototype.setP
|
|
|
24294
24306
|
};
|
|
24295
24307
|
|
|
24296
24308
|
|
|
24309
|
+
/**
|
|
24310
|
+
* optional string creditCardCategory = 8;
|
|
24311
|
+
* @return {string}
|
|
24312
|
+
*/
|
|
24313
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.prototype.getCreditcardcategory = function() {
|
|
24314
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
24315
|
+
};
|
|
24316
|
+
|
|
24317
|
+
|
|
24318
|
+
/**
|
|
24319
|
+
* @param {string} value
|
|
24320
|
+
* @return {!proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest} returns this
|
|
24321
|
+
*/
|
|
24322
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.prototype.setCreditcardcategory = function(value) {
|
|
24323
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
24324
|
+
};
|
|
24325
|
+
|
|
24326
|
+
|
|
24297
24327
|
|
|
24298
24328
|
|
|
24299
24329
|
|