@yuno-payments/dashboard-api-mfe 0.35.2-beta.2 → 0.36.4-REC-3350.0
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/build/cjs/index.js +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/types/reconciliation/reconciliation-fees.d.ts +5 -7
- package/build/esm/index.js +2 -2
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/types/reconciliation/reconciliation-fees.d.ts +5 -7
- package/build/index.d.ts +5 -7
- package/package.json +1 -1
|
@@ -2,7 +2,6 @@ export declare namespace ReconciliationFees {
|
|
|
2
2
|
interface Fees {
|
|
3
3
|
transaction_id: string;
|
|
4
4
|
provider_transaction_id: string;
|
|
5
|
-
third_party_transaction_id: string;
|
|
6
5
|
card_iin: string;
|
|
7
6
|
card_lfd: string;
|
|
8
7
|
authorization_code: string;
|
|
@@ -14,14 +13,13 @@ export declare namespace ReconciliationFees {
|
|
|
14
13
|
country: string;
|
|
15
14
|
type: string;
|
|
16
15
|
gross_field: string;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
calculated_taxe: number;
|
|
16
|
+
percentage_cost: number;
|
|
17
|
+
fix_cost: number;
|
|
18
|
+
calculated_fix_costed_fee: number;
|
|
19
|
+
calculated_percentage_cost: number;
|
|
22
20
|
acquirer_net_amount: number;
|
|
23
21
|
calculated_net_amount: number;
|
|
24
|
-
|
|
22
|
+
fee_taxes_diff: number;
|
|
25
23
|
fee_status: string;
|
|
26
24
|
fee_sub_status: string;
|
|
27
25
|
currency: string;
|
package/build/index.d.ts
CHANGED
|
@@ -2986,7 +2986,6 @@ declare namespace ReconciliationFees {
|
|
|
2986
2986
|
interface Fees {
|
|
2987
2987
|
transaction_id: string;
|
|
2988
2988
|
provider_transaction_id: string;
|
|
2989
|
-
third_party_transaction_id: string;
|
|
2990
2989
|
card_iin: string;
|
|
2991
2990
|
card_lfd: string;
|
|
2992
2991
|
authorization_code: string;
|
|
@@ -2998,14 +2997,13 @@ declare namespace ReconciliationFees {
|
|
|
2998
2997
|
country: string;
|
|
2999
2998
|
type: string;
|
|
3000
2999
|
gross_field: string;
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
calculated_taxe: number;
|
|
3000
|
+
percentage_cost: number;
|
|
3001
|
+
fix_cost: number;
|
|
3002
|
+
calculated_fix_costed_fee: number;
|
|
3003
|
+
calculated_percentage_cost: number;
|
|
3006
3004
|
acquirer_net_amount: number;
|
|
3007
3005
|
calculated_net_amount: number;
|
|
3008
|
-
|
|
3006
|
+
fee_taxes_diff: number;
|
|
3009
3007
|
fee_status: string;
|
|
3010
3008
|
fee_sub_status: string;
|
|
3011
3009
|
currency: string;
|