@sniipwebmaster/transaction-service-client-grpcweb-ts 26.5.14718 → 26.5.14740
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.d.ts +16 -0
- package/dependancies/service_pb.js +121 -1
- package/package.json +1 -1
|
@@ -2928,6 +2928,18 @@ export class PaymentDetailsBulkResponse extends jspb.Message {
|
|
|
2928
2928
|
getDisclaimertext(): string;
|
|
2929
2929
|
setDisclaimertext(value: string): PaymentDetailsBulkResponse;
|
|
2930
2930
|
|
|
2931
|
+
getSurchargewithoutgst(): number;
|
|
2932
|
+
setSurchargewithoutgst(value: number): PaymentDetailsBulkResponse;
|
|
2933
|
+
|
|
2934
|
+
getGstsurcharge(): number;
|
|
2935
|
+
setGstsurcharge(value: number): PaymentDetailsBulkResponse;
|
|
2936
|
+
|
|
2937
|
+
getSurchargeratewithoutgst(): number;
|
|
2938
|
+
setSurchargeratewithoutgst(value: number): PaymentDetailsBulkResponse;
|
|
2939
|
+
|
|
2940
|
+
getGstrate(): number;
|
|
2941
|
+
setGstrate(value: number): PaymentDetailsBulkResponse;
|
|
2942
|
+
|
|
2931
2943
|
serializeBinary(): Uint8Array;
|
|
2932
2944
|
toObject(includeInstance?: boolean): PaymentDetailsBulkResponse.AsObject;
|
|
2933
2945
|
static toObject(includeInstance: boolean, msg: PaymentDetailsBulkResponse): PaymentDetailsBulkResponse.AsObject;
|
|
@@ -2968,6 +2980,10 @@ export namespace PaymentDetailsBulkResponse {
|
|
|
2968
2980
|
loyaltyprogrameligible: boolean,
|
|
2969
2981
|
hypotheticalprogramearn?: HypotheticalProgramEarn.AsObject,
|
|
2970
2982
|
disclaimertext: string,
|
|
2983
|
+
surchargewithoutgst: number,
|
|
2984
|
+
gstsurcharge: number,
|
|
2985
|
+
surchargeratewithoutgst: number,
|
|
2986
|
+
gstrate: number,
|
|
2971
2987
|
}
|
|
2972
2988
|
}
|
|
2973
2989
|
|
|
@@ -24467,7 +24467,11 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.toObject = function(include
|
|
|
24467
24467
|
loyaltyprogramearncardbody: jspb.Message.getFieldWithDefault(msg, 27, ""),
|
|
24468
24468
|
loyaltyprogrameligible: jspb.Message.getBooleanFieldWithDefault(msg, 28, false),
|
|
24469
24469
|
hypotheticalprogramearn: (f = msg.getHypotheticalprogramearn()) && proto.sniiptransactionapi.HypotheticalProgramEarn.toObject(includeInstance, f),
|
|
24470
|
-
disclaimertext: jspb.Message.getFieldWithDefault(msg, 30, "")
|
|
24470
|
+
disclaimertext: jspb.Message.getFieldWithDefault(msg, 30, ""),
|
|
24471
|
+
surchargewithoutgst: jspb.Message.getFloatingPointFieldWithDefault(msg, 31, 0.0),
|
|
24472
|
+
gstsurcharge: jspb.Message.getFloatingPointFieldWithDefault(msg, 32, 0.0),
|
|
24473
|
+
surchargeratewithoutgst: jspb.Message.getFloatingPointFieldWithDefault(msg, 33, 0.0),
|
|
24474
|
+
gstrate: jspb.Message.getFloatingPointFieldWithDefault(msg, 34, 0.0)
|
|
24471
24475
|
};
|
|
24472
24476
|
|
|
24473
24477
|
if (includeInstance) {
|
|
@@ -24629,6 +24633,22 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.deserializeBinaryFromReader
|
|
|
24629
24633
|
var value = /** @type {string} */ (reader.readString());
|
|
24630
24634
|
msg.setDisclaimertext(value);
|
|
24631
24635
|
break;
|
|
24636
|
+
case 31:
|
|
24637
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
24638
|
+
msg.setSurchargewithoutgst(value);
|
|
24639
|
+
break;
|
|
24640
|
+
case 32:
|
|
24641
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
24642
|
+
msg.setGstsurcharge(value);
|
|
24643
|
+
break;
|
|
24644
|
+
case 33:
|
|
24645
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
24646
|
+
msg.setSurchargeratewithoutgst(value);
|
|
24647
|
+
break;
|
|
24648
|
+
case 34:
|
|
24649
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
24650
|
+
msg.setGstrate(value);
|
|
24651
|
+
break;
|
|
24632
24652
|
default:
|
|
24633
24653
|
reader.skipField();
|
|
24634
24654
|
break;
|
|
@@ -24871,6 +24891,34 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.serializeBinaryToWriter = f
|
|
|
24871
24891
|
f
|
|
24872
24892
|
);
|
|
24873
24893
|
}
|
|
24894
|
+
f = message.getSurchargewithoutgst();
|
|
24895
|
+
if (f !== 0.0) {
|
|
24896
|
+
writer.writeDouble(
|
|
24897
|
+
31,
|
|
24898
|
+
f
|
|
24899
|
+
);
|
|
24900
|
+
}
|
|
24901
|
+
f = message.getGstsurcharge();
|
|
24902
|
+
if (f !== 0.0) {
|
|
24903
|
+
writer.writeDouble(
|
|
24904
|
+
32,
|
|
24905
|
+
f
|
|
24906
|
+
);
|
|
24907
|
+
}
|
|
24908
|
+
f = message.getSurchargeratewithoutgst();
|
|
24909
|
+
if (f !== 0.0) {
|
|
24910
|
+
writer.writeDouble(
|
|
24911
|
+
33,
|
|
24912
|
+
f
|
|
24913
|
+
);
|
|
24914
|
+
}
|
|
24915
|
+
f = message.getGstrate();
|
|
24916
|
+
if (f !== 0.0) {
|
|
24917
|
+
writer.writeDouble(
|
|
24918
|
+
34,
|
|
24919
|
+
f
|
|
24920
|
+
);
|
|
24921
|
+
}
|
|
24874
24922
|
};
|
|
24875
24923
|
|
|
24876
24924
|
|
|
@@ -25491,6 +25539,78 @@ proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setDisclaimertext
|
|
|
25491
25539
|
};
|
|
25492
25540
|
|
|
25493
25541
|
|
|
25542
|
+
/**
|
|
25543
|
+
* optional double surchargeWithoutGst = 31;
|
|
25544
|
+
* @return {number}
|
|
25545
|
+
*/
|
|
25546
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.getSurchargewithoutgst = function() {
|
|
25547
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 31, 0.0));
|
|
25548
|
+
};
|
|
25549
|
+
|
|
25550
|
+
|
|
25551
|
+
/**
|
|
25552
|
+
* @param {number} value
|
|
25553
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsBulkResponse} returns this
|
|
25554
|
+
*/
|
|
25555
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setSurchargewithoutgst = function(value) {
|
|
25556
|
+
return jspb.Message.setProto3FloatField(this, 31, value);
|
|
25557
|
+
};
|
|
25558
|
+
|
|
25559
|
+
|
|
25560
|
+
/**
|
|
25561
|
+
* optional double gstSurcharge = 32;
|
|
25562
|
+
* @return {number}
|
|
25563
|
+
*/
|
|
25564
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.getGstsurcharge = function() {
|
|
25565
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 32, 0.0));
|
|
25566
|
+
};
|
|
25567
|
+
|
|
25568
|
+
|
|
25569
|
+
/**
|
|
25570
|
+
* @param {number} value
|
|
25571
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsBulkResponse} returns this
|
|
25572
|
+
*/
|
|
25573
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setGstsurcharge = function(value) {
|
|
25574
|
+
return jspb.Message.setProto3FloatField(this, 32, value);
|
|
25575
|
+
};
|
|
25576
|
+
|
|
25577
|
+
|
|
25578
|
+
/**
|
|
25579
|
+
* optional double surchargeRateWithoutGst = 33;
|
|
25580
|
+
* @return {number}
|
|
25581
|
+
*/
|
|
25582
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.getSurchargeratewithoutgst = function() {
|
|
25583
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 33, 0.0));
|
|
25584
|
+
};
|
|
25585
|
+
|
|
25586
|
+
|
|
25587
|
+
/**
|
|
25588
|
+
* @param {number} value
|
|
25589
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsBulkResponse} returns this
|
|
25590
|
+
*/
|
|
25591
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setSurchargeratewithoutgst = function(value) {
|
|
25592
|
+
return jspb.Message.setProto3FloatField(this, 33, value);
|
|
25593
|
+
};
|
|
25594
|
+
|
|
25595
|
+
|
|
25596
|
+
/**
|
|
25597
|
+
* optional double gstRate = 34;
|
|
25598
|
+
* @return {number}
|
|
25599
|
+
*/
|
|
25600
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.getGstrate = function() {
|
|
25601
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 34, 0.0));
|
|
25602
|
+
};
|
|
25603
|
+
|
|
25604
|
+
|
|
25605
|
+
/**
|
|
25606
|
+
* @param {number} value
|
|
25607
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsBulkResponse} returns this
|
|
25608
|
+
*/
|
|
25609
|
+
proto.sniiptransactionapi.PaymentDetailsBulkResponse.prototype.setGstrate = function(value) {
|
|
25610
|
+
return jspb.Message.setProto3FloatField(this, 34, value);
|
|
25611
|
+
};
|
|
25612
|
+
|
|
25613
|
+
|
|
25494
25614
|
|
|
25495
25615
|
|
|
25496
25616
|
|