@pax2pay/client 0.9.2 → 0.9.3
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/Client/Reports/index.ts +26 -0
- package/dist/Client/Reports/index.d.ts +24 -0
- package/dist/Client/Reports/index.js +24 -0
- package/dist/Client/Reports/index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/model/DayOfWeek.d.ts +7 -0
- package/dist/model/DayOfWeek.js +8 -0
- package/dist/model/DayOfWeek.js.map +1 -0
- package/dist/model/DestinationType.d.ts +7 -0
- package/dist/model/DestinationType.js +8 -0
- package/dist/model/DestinationType.js.map +1 -0
- package/dist/model/EmailReportFileDestination.d.ts +9 -0
- package/dist/model/EmailReportFileDestination.js +11 -0
- package/dist/model/EmailReportFileDestination.js.map +1 -0
- package/dist/model/Report/ReportFileDestination.d.ts +14 -0
- package/dist/model/Report/ReportFileDestination.js +10 -0
- package/dist/model/Report/ReportFileDestination.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionFrequencyRequest.d.ts +11 -0
- package/dist/model/Report/ReportSubscriptionFrequencyRequest.js +13 -0
- package/dist/model/Report/ReportSubscriptionFrequencyRequest.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionFrequencyType.d.ts +7 -0
- package/dist/model/Report/ReportSubscriptionFrequencyType.js +8 -0
- package/dist/model/Report/ReportSubscriptionFrequencyType.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionInvocationOutcome.d.ts +7 -0
- package/dist/model/Report/ReportSubscriptionInvocationOutcome.js +8 -0
- package/dist/model/Report/ReportSubscriptionInvocationOutcome.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionInvocationResponse.d.ts +11 -0
- package/dist/model/Report/ReportSubscriptionInvocationResponse.js +13 -0
- package/dist/model/Report/ReportSubscriptionInvocationResponse.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionRequest.d.ts +16 -0
- package/dist/model/Report/ReportSubscriptionRequest.js +18 -0
- package/dist/model/Report/ReportSubscriptionRequest.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionResponse.d.ts +21 -0
- package/dist/model/Report/ReportSubscriptionResponse.js +23 -0
- package/dist/model/Report/ReportSubscriptionResponse.js.map +1 -0
- package/dist/model/Report/ReportSubscriptionStatus.d.ts +7 -0
- package/dist/model/Report/ReportSubscriptionStatus.js +8 -0
- package/dist/model/Report/ReportSubscriptionStatus.js.map +1 -0
- package/dist/model/Report/ReportType.d.ts +7 -0
- package/dist/model/Report/ReportType.js +8 -0
- package/dist/model/Report/ReportType.js.map +1 -0
- package/dist/model/SftpReportFileDestination.d.ts +13 -0
- package/dist/model/SftpReportFileDestination.js +15 -0
- package/dist/model/SftpReportFileDestination.js.map +1 -0
- package/dist/model/index.d.ts +14 -1
- package/dist/model/index.js +14 -1
- package/dist/model/index.js.map +1 -1
- package/index.ts +27 -1
- package/model/DayOfWeek.ts +9 -0
- package/model/DestinationType.ts +9 -0
- package/model/EmailReportFileDestination.ts +15 -0
- package/model/Report/ReportFileDestination.ts +23 -0
- package/model/Report/ReportSubscriptionFrequencyRequest.ts +17 -0
- package/model/Report/ReportSubscriptionFrequencyType.ts +9 -0
- package/model/Report/ReportSubscriptionInvocationOutcome.ts +9 -0
- package/model/Report/ReportSubscriptionInvocationResponse.ts +17 -0
- package/model/Report/ReportSubscriptionRequest.ts +24 -0
- package/model/Report/ReportSubscriptionResponse.ts +34 -0
- package/model/Report/ReportSubscriptionStatus.ts +9 -0
- package/model/Report/ReportType.ts +8 -0
- package/model/SftpReportFileDestination.ts +23 -0
- package/model/index.ts +28 -2
- package/package.json +1 -1
- package/model/Report/ChargeBackItem.ts +0 -33
package/package.json
CHANGED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import * as isoly from "isoly"
|
|
2
|
-
/**
|
|
3
|
-
* An item in the charge-back report
|
|
4
|
-
*/
|
|
5
|
-
export interface ChargeBackItem {
|
|
6
|
-
fullRefunds: Refund[]
|
|
7
|
-
partialRefunds: Refund[]
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export interface Refund {
|
|
11
|
-
bookingReference: string //not necessary? / change name?
|
|
12
|
-
agentBookingReference: string //not necessary? / change name?
|
|
13
|
-
supplierCode: string
|
|
14
|
-
cardId: string
|
|
15
|
-
leadPassengerName: string //not necessary?
|
|
16
|
-
totalPassengers: number //not necessary?
|
|
17
|
-
bookingDate: isoly.Date
|
|
18
|
-
departureDate: isoly.Date
|
|
19
|
-
departureAirport: string //not necessary?
|
|
20
|
-
arrivalAirport: string //not necessary?
|
|
21
|
-
outboundFlightNumbers: any[] //not necessary?
|
|
22
|
-
homeboundFlightNumbers: any[] //not necessary?
|
|
23
|
-
modularTransactionInfo: ModularTransactionInfo
|
|
24
|
-
claimAmount: number
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface ModularTransactionInfo {
|
|
28
|
-
bookingReference: string
|
|
29
|
-
settlementId: string
|
|
30
|
-
cardId: string
|
|
31
|
-
transactionAmount: number
|
|
32
|
-
transactionCurrency: isoly.Currency
|
|
33
|
-
}
|