@odynn/awayz-core 0.3.19 → 0.3.21

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.
@@ -124,7 +124,6 @@ s("useBookingManagement", () => {
124
124
  taxAmount: e.any(Number),
125
125
  extrasAmount: e.any(Number),
126
126
  baseAmount: e.any(Number),
127
- feeAmount: e.any(Number),
128
127
  totalAmount: e.any(Number),
129
128
  currency: e.any(String),
130
129
  status: e.any(String),
@@ -56,7 +56,6 @@ export interface IFlightBookingDetails {
56
56
  flightOfferId: string;
57
57
  baseAmount: number;
58
58
  taxAmount: number;
59
- feeAmount: number;
60
59
  extrasAmount: number;
61
60
  totalAmount: number;
62
61
  currency: string;
@@ -74,7 +74,6 @@ class p {
74
74
  taxAmount: parseFloat(a.data.tax_amount),
75
75
  extrasAmount: parseFloat(a.data.extras_amount ?? "0"),
76
76
  baseAmount: parseFloat(a.data.base_amount),
77
- feeAmount: parseFloat(a.data.fee_amount ?? "0"),
78
77
  totalAmount: parseFloat(a.data.total_amount),
79
78
  currency: a.data.total_currency,
80
79
  status: a.data.status,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odynn/awayz-core",
3
- "version": "0.3.19",
3
+ "version": "0.3.21",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"