@sniipwebmaster/payment-methods-client-grpcweb 21.8.3203 → 21.8.3229
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 +59 -1
- package/package.json +1 -1
|
@@ -12475,7 +12475,9 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.prototype.toOb
|
|
|
12475
12475
|
*/
|
|
12476
12476
|
proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.toObject = function(includeInstance, msg) {
|
|
12477
12477
|
var f, obj = {
|
|
12478
|
-
userid: msg.getUserid()
|
|
12478
|
+
userid: msg.getUserid(),
|
|
12479
|
+
includedeleted: msg.getIncludedeleted(),
|
|
12480
|
+
includeapplepay: msg.getIncludeapplepay()
|
|
12479
12481
|
};
|
|
12480
12482
|
|
|
12481
12483
|
if (includeInstance) {
|
|
@@ -12516,6 +12518,14 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.deserializeBin
|
|
|
12516
12518
|
var value = /** @type {number} */ (reader.readInt64());
|
|
12517
12519
|
msg.setUserid(value);
|
|
12518
12520
|
break;
|
|
12521
|
+
case 2:
|
|
12522
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
12523
|
+
msg.setIncludedeleted(value);
|
|
12524
|
+
break;
|
|
12525
|
+
case 3:
|
|
12526
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
12527
|
+
msg.setIncludeapplepay(value);
|
|
12528
|
+
break;
|
|
12519
12529
|
default:
|
|
12520
12530
|
reader.skipField();
|
|
12521
12531
|
break;
|
|
@@ -12561,6 +12571,20 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.prototype.seri
|
|
|
12561
12571
|
f
|
|
12562
12572
|
);
|
|
12563
12573
|
}
|
|
12574
|
+
f = this.getIncludedeleted();
|
|
12575
|
+
if (f) {
|
|
12576
|
+
writer.writeBool(
|
|
12577
|
+
2,
|
|
12578
|
+
f
|
|
12579
|
+
);
|
|
12580
|
+
}
|
|
12581
|
+
f = this.getIncludeapplepay();
|
|
12582
|
+
if (f) {
|
|
12583
|
+
writer.writeBool(
|
|
12584
|
+
3,
|
|
12585
|
+
f
|
|
12586
|
+
);
|
|
12587
|
+
}
|
|
12564
12588
|
};
|
|
12565
12589
|
|
|
12566
12590
|
|
|
@@ -12588,6 +12612,40 @@ proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.prototype.setU
|
|
|
12588
12612
|
};
|
|
12589
12613
|
|
|
12590
12614
|
|
|
12615
|
+
/**
|
|
12616
|
+
* optional bool includeDeleted = 2;
|
|
12617
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
12618
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
12619
|
+
* @return {boolean}
|
|
12620
|
+
*/
|
|
12621
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.prototype.getIncludedeleted = function() {
|
|
12622
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 2, false));
|
|
12623
|
+
};
|
|
12624
|
+
|
|
12625
|
+
|
|
12626
|
+
/** @param {boolean} value */
|
|
12627
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.prototype.setIncludedeleted = function(value) {
|
|
12628
|
+
jspb.Message.setField(this, 2, value);
|
|
12629
|
+
};
|
|
12630
|
+
|
|
12631
|
+
|
|
12632
|
+
/**
|
|
12633
|
+
* optional bool includeApplePay = 3;
|
|
12634
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
12635
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
12636
|
+
* @return {boolean}
|
|
12637
|
+
*/
|
|
12638
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.prototype.getIncludeapplepay = function() {
|
|
12639
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 3, false));
|
|
12640
|
+
};
|
|
12641
|
+
|
|
12642
|
+
|
|
12643
|
+
/** @param {boolean} value */
|
|
12644
|
+
proto.sniippaymentmethodsserviceapi.PaymentMethodsForAuditRequest.prototype.setIncludeapplepay = function(value) {
|
|
12645
|
+
jspb.Message.setField(this, 3, value);
|
|
12646
|
+
};
|
|
12647
|
+
|
|
12648
|
+
|
|
12591
12649
|
|
|
12592
12650
|
/**
|
|
12593
12651
|
* Generated by JsPbCodeGenerator.
|