@nimee/shared-types 1.0.317 → 1.0.319
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.
|
@@ -64,6 +64,7 @@ export interface IMarketPlace {
|
|
|
64
64
|
seatsWorkspaceKey?: string;
|
|
65
65
|
seatsWorkspaceSecret?: string;
|
|
66
66
|
marketplaceFee: number;
|
|
67
|
+
paymeRefundFeeInclVat?: number;
|
|
67
68
|
imagesForLandingPage?: string[];
|
|
68
69
|
titleForLandingPage?: string;
|
|
69
70
|
descriptionForLandingPage?: string;
|
package/dist/payment/charge.d.ts
CHANGED
|
@@ -78,6 +78,8 @@ export interface IChargeModel {
|
|
|
78
78
|
amount_left_after_all_refunds?: string;
|
|
79
79
|
external_transaction_total?: string;
|
|
80
80
|
sale_description?: string;
|
|
81
|
+
reconciledTotalFees?: Number;
|
|
82
|
+
reconciledSaleFeesHash?: string;
|
|
81
83
|
nimiFeeType: IFeeCollectionType;
|
|
82
84
|
nimiFee: Number;
|
|
83
85
|
nimiFeePercentage: Number;
|
package/package.json
CHANGED
|
@@ -77,6 +77,9 @@ export interface IMarketPlace {
|
|
|
77
77
|
seatsWorkspaceKey?: string;
|
|
78
78
|
seatsWorkspaceSecret?: string;
|
|
79
79
|
marketplaceFee: number;
|
|
80
|
+
// #908 — Payme's measured per-refund fee (shekels, VAT-inclusive; e.g. 1.5 for easytix).
|
|
81
|
+
// Feeds the market-sale-stats realNetProfit; when unset the legacy 5.265 proxy is used.
|
|
82
|
+
paymeRefundFeeInclVat?: number;
|
|
80
83
|
imagesForLandingPage?: string[];
|
|
81
84
|
titleForLandingPage?: string;
|
|
82
85
|
descriptionForLandingPage?: string;
|
package/src/payment/charge.ts
CHANGED
|
@@ -89,6 +89,11 @@ export interface IChargeModel {
|
|
|
89
89
|
amount_left_after_all_refunds?: string;
|
|
90
90
|
external_transaction_total?: string;
|
|
91
91
|
sale_description?: string;
|
|
92
|
+
// #908 — reconciliation bookkeeping: last totalFees written to the order, and the md5 of the
|
|
93
|
+
// exact written payload (skip key for read-only re-sweeps). Internal; not exposed in charge
|
|
94
|
+
// response schemas.
|
|
95
|
+
reconciledTotalFees?: Number;
|
|
96
|
+
reconciledSaleFeesHash?: string;
|
|
92
97
|
nimiFeeType: IFeeCollectionType;
|
|
93
98
|
nimiFee: Number;
|
|
94
99
|
nimiFeePercentage: Number;
|