btrz-api-client 8.75.1 → 9.1.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/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +112 -85
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +258 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/operations/transactions.js +1 -1
- package/src/endpoints/sales/cart.js +31 -1
- package/test/endpoints/sales/cart.test.js +6 -0
- package/tools/build-standalone.mjs +15 -0
- package/.eslint-report.json +0 -1
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/* eslint-disable max-len */
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
const {
|
|
3
|
+
authorizationHeaders
|
|
4
|
+
} = require("./../endpoints_helpers.js");
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* Factory for transactions API (btrz-api-operations).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {Object} transactions API methods
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function transactionsFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /transactions/:trxId - get transaction by id. API does not accept query params.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -26,16 +23,21 @@ function transactionsFactory(_ref) {
|
|
|
26
23
|
* @param {Object} [opts.headers] - Optional headers
|
|
27
24
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
28
25
|
*/
|
|
29
|
-
function get(
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
26
|
+
function get({
|
|
27
|
+
token,
|
|
28
|
+
jwtToken,
|
|
29
|
+
trxId,
|
|
30
|
+
query,
|
|
31
|
+
headers
|
|
32
|
+
}) {
|
|
36
33
|
return client({
|
|
37
|
-
url:
|
|
38
|
-
headers: authorizationHeaders({
|
|
34
|
+
url: `/transactions/${trxId}`,
|
|
35
|
+
headers: authorizationHeaders({
|
|
36
|
+
token,
|
|
37
|
+
jwtToken,
|
|
38
|
+
internalAuthTokenProvider,
|
|
39
|
+
headers
|
|
40
|
+
}),
|
|
39
41
|
params: query
|
|
40
42
|
});
|
|
41
43
|
}
|
|
@@ -48,15 +50,20 @@ function transactionsFactory(_ref) {
|
|
|
48
50
|
* @param {Object} [opts.headers] - Optional headers
|
|
49
51
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
50
52
|
*/
|
|
51
|
-
function all(
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
function all({
|
|
54
|
+
token,
|
|
55
|
+
jwtToken,
|
|
56
|
+
query,
|
|
57
|
+
headers
|
|
58
|
+
}) {
|
|
57
59
|
return client({
|
|
58
60
|
url: "/transactions",
|
|
59
|
-
headers: authorizationHeaders({
|
|
61
|
+
headers: authorizationHeaders({
|
|
62
|
+
token,
|
|
63
|
+
jwtToken,
|
|
64
|
+
internalAuthTokenProvider,
|
|
65
|
+
headers
|
|
66
|
+
}),
|
|
60
67
|
params: query
|
|
61
68
|
});
|
|
62
69
|
}
|
|
@@ -70,15 +77,20 @@ function transactionsFactory(_ref) {
|
|
|
70
77
|
* @param {Object} [opts.headers] - Optional headers
|
|
71
78
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
72
79
|
*/
|
|
73
|
-
function getTickets(
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
80
|
+
function getTickets({
|
|
81
|
+
token,
|
|
82
|
+
jwtToken,
|
|
83
|
+
trxId,
|
|
84
|
+
headers
|
|
85
|
+
}) {
|
|
79
86
|
return client({
|
|
80
|
-
url:
|
|
81
|
-
headers: authorizationHeaders({
|
|
87
|
+
url: `/transactions/${trxId}/tickets`,
|
|
88
|
+
headers: authorizationHeaders({
|
|
89
|
+
token,
|
|
90
|
+
jwtToken,
|
|
91
|
+
internalAuthTokenProvider,
|
|
92
|
+
headers
|
|
93
|
+
})
|
|
82
94
|
});
|
|
83
95
|
}
|
|
84
96
|
|
|
@@ -91,15 +103,20 @@ function transactionsFactory(_ref) {
|
|
|
91
103
|
* @param {Object} [opts.headers] - Optional headers
|
|
92
104
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
93
105
|
*/
|
|
94
|
-
function appliedInsurance(
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
106
|
+
function appliedInsurance({
|
|
107
|
+
token,
|
|
108
|
+
jwtToken,
|
|
109
|
+
trxId,
|
|
110
|
+
headers
|
|
111
|
+
}) {
|
|
100
112
|
return client({
|
|
101
|
-
url:
|
|
102
|
-
headers: authorizationHeaders({
|
|
113
|
+
url: `/transactions/${trxId}/applied-insurance`,
|
|
114
|
+
headers: authorizationHeaders({
|
|
115
|
+
token,
|
|
116
|
+
jwtToken,
|
|
117
|
+
internalAuthTokenProvider,
|
|
118
|
+
headers
|
|
119
|
+
})
|
|
103
120
|
});
|
|
104
121
|
}
|
|
105
122
|
|
|
@@ -113,19 +130,24 @@ function transactionsFactory(_ref) {
|
|
|
113
130
|
* @param {Object} [opts.headers] - Optional headers
|
|
114
131
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
115
132
|
*/
|
|
116
|
-
function companionTickets(
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
133
|
+
function companionTickets({
|
|
134
|
+
token,
|
|
135
|
+
jwtToken,
|
|
136
|
+
transactionId,
|
|
137
|
+
ticketIds,
|
|
138
|
+
headers
|
|
139
|
+
}) {
|
|
123
140
|
return client({
|
|
124
|
-
url:
|
|
141
|
+
url: `/transactions/${transactionId}/companion-tickets`,
|
|
125
142
|
params: {
|
|
126
143
|
ticketIds: ticketIds.join(",")
|
|
127
144
|
},
|
|
128
|
-
headers: authorizationHeaders({
|
|
145
|
+
headers: authorizationHeaders({
|
|
146
|
+
token,
|
|
147
|
+
jwtToken,
|
|
148
|
+
internalAuthTokenProvider,
|
|
149
|
+
headers
|
|
150
|
+
})
|
|
129
151
|
});
|
|
130
152
|
}
|
|
131
153
|
|
|
@@ -140,31 +162,34 @@ function transactionsFactory(_ref) {
|
|
|
140
162
|
* @param {Object} [opts.headers] - Optional headers
|
|
141
163
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
142
164
|
*/
|
|
143
|
-
function expireAll(
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
165
|
+
function expireAll({
|
|
166
|
+
jwtToken,
|
|
167
|
+
transactionId,
|
|
168
|
+
allEligibleTransactions,
|
|
169
|
+
avoidEmail,
|
|
170
|
+
token,
|
|
171
|
+
headers
|
|
172
|
+
}) {
|
|
173
|
+
const operation = {
|
|
152
174
|
name: "expire_payment",
|
|
153
|
-
avoidEmail
|
|
175
|
+
avoidEmail,
|
|
154
176
|
transactionIds: [transactionId]
|
|
155
177
|
};
|
|
156
|
-
|
|
157
178
|
if (allEligibleTransactions) {
|
|
158
179
|
delete operation.transactionIds;
|
|
159
180
|
}
|
|
160
|
-
|
|
161
181
|
return client({
|
|
162
182
|
url: "/transactions/status",
|
|
163
183
|
method: "patch",
|
|
164
184
|
params: {},
|
|
165
|
-
headers: authorizationHeaders({
|
|
185
|
+
headers: authorizationHeaders({
|
|
186
|
+
internalAuthTokenProvider,
|
|
187
|
+
jwtToken,
|
|
188
|
+
token,
|
|
189
|
+
headers
|
|
190
|
+
}),
|
|
166
191
|
data: {
|
|
167
|
-
operation
|
|
192
|
+
operation
|
|
168
193
|
}
|
|
169
194
|
});
|
|
170
195
|
}
|
|
@@ -180,25 +205,29 @@ function transactionsFactory(_ref) {
|
|
|
180
205
|
* @param {string} [opts.channel] - Channel (required per btrz-api-operations getSpec)
|
|
181
206
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
182
207
|
*/
|
|
183
|
-
function cancellableItems(
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
208
|
+
function cancellableItems({
|
|
209
|
+
token,
|
|
210
|
+
jwtToken,
|
|
211
|
+
transactionId,
|
|
212
|
+
headers,
|
|
213
|
+
displayAll,
|
|
214
|
+
channel
|
|
215
|
+
}) {
|
|
191
216
|
return client({
|
|
192
|
-
url:
|
|
217
|
+
url: `/transactions/${transactionId}/cancellable-items`,
|
|
193
218
|
params: {
|
|
194
|
-
displayAll:
|
|
219
|
+
displayAll: Boolean(displayAll),
|
|
195
220
|
channel: channel || ""
|
|
196
221
|
},
|
|
197
|
-
headers: authorizationHeaders({
|
|
222
|
+
headers: authorizationHeaders({
|
|
223
|
+
token,
|
|
224
|
+
jwtToken,
|
|
225
|
+
internalAuthTokenProvider,
|
|
226
|
+
headers
|
|
227
|
+
})
|
|
198
228
|
});
|
|
199
229
|
}
|
|
200
|
-
|
|
201
|
-
var payments = {
|
|
230
|
+
const payments = {
|
|
202
231
|
/**
|
|
203
232
|
* PUT /transactions/:trxId/payments - update payment.
|
|
204
233
|
* @param {Object} opts
|
|
@@ -209,27 +238,29 @@ function transactionsFactory(_ref) {
|
|
|
209
238
|
* @param {Object} [opts.headers] - Optional headers
|
|
210
239
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
211
240
|
*/
|
|
212
|
-
update
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
241
|
+
update({
|
|
242
|
+
token,
|
|
243
|
+
jwtToken,
|
|
244
|
+
trxId,
|
|
245
|
+
paymentResult,
|
|
246
|
+
headers
|
|
247
|
+
}) {
|
|
219
248
|
return client({
|
|
220
|
-
url:
|
|
249
|
+
url: `/transactions/${trxId}/payments`,
|
|
221
250
|
method: "put",
|
|
222
251
|
headers: authorizationHeaders({
|
|
223
|
-
token
|
|
252
|
+
token,
|
|
253
|
+
jwtToken,
|
|
254
|
+
internalAuthTokenProvider,
|
|
255
|
+
headers
|
|
224
256
|
}),
|
|
225
257
|
data: {
|
|
226
|
-
paymentResult
|
|
258
|
+
paymentResult
|
|
227
259
|
}
|
|
228
260
|
});
|
|
229
261
|
}
|
|
230
262
|
};
|
|
231
|
-
|
|
232
|
-
var invoices = {
|
|
263
|
+
const invoices = {
|
|
233
264
|
/**
|
|
234
265
|
* POST /transactions/:transactionId/invoices - create invoice.
|
|
235
266
|
* @param {Object} opts
|
|
@@ -241,25 +272,29 @@ function transactionsFactory(_ref) {
|
|
|
241
272
|
* @param {Object} [opts.headers] - Optional headers
|
|
242
273
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
243
274
|
*/
|
|
244
|
-
create
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
275
|
+
create({
|
|
276
|
+
token,
|
|
277
|
+
jwtToken,
|
|
278
|
+
transactionId,
|
|
279
|
+
query,
|
|
280
|
+
invoice,
|
|
281
|
+
headers
|
|
282
|
+
}) {
|
|
252
283
|
return client({
|
|
253
|
-
url:
|
|
284
|
+
url: `/transactions/${transactionId}/invoices`,
|
|
254
285
|
method: "post",
|
|
255
|
-
headers: authorizationHeaders({
|
|
286
|
+
headers: authorizationHeaders({
|
|
287
|
+
token,
|
|
288
|
+
jwtToken,
|
|
289
|
+
internalAuthTokenProvider,
|
|
290
|
+
headers
|
|
291
|
+
}),
|
|
256
292
|
params: query,
|
|
257
293
|
data: invoice
|
|
258
294
|
});
|
|
259
295
|
}
|
|
260
296
|
};
|
|
261
|
-
|
|
262
|
-
var creditNotes = {
|
|
297
|
+
const creditNotes = {
|
|
263
298
|
/**
|
|
264
299
|
* POST /transactions/:transactionId/credit-notes - create credit note. API does not accept query params.
|
|
265
300
|
* @param {Object} opts
|
|
@@ -270,18 +305,23 @@ function transactionsFactory(_ref) {
|
|
|
270
305
|
* @param {Object} [opts.headers] - Optional headers
|
|
271
306
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
272
307
|
*/
|
|
273
|
-
create
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
308
|
+
create({
|
|
309
|
+
token,
|
|
310
|
+
jwtToken,
|
|
311
|
+
transactionId,
|
|
312
|
+
query,
|
|
313
|
+
creditNote,
|
|
314
|
+
headers
|
|
315
|
+
}) {
|
|
281
316
|
return client({
|
|
282
|
-
url:
|
|
317
|
+
url: `/transactions/${transactionId}/credit-notes`,
|
|
283
318
|
method: "post",
|
|
284
|
-
headers: authorizationHeaders({
|
|
319
|
+
headers: authorizationHeaders({
|
|
320
|
+
token,
|
|
321
|
+
jwtToken,
|
|
322
|
+
internalAuthTokenProvider,
|
|
323
|
+
headers
|
|
324
|
+
}),
|
|
285
325
|
params: query,
|
|
286
326
|
data: creditNote
|
|
287
327
|
});
|
|
@@ -298,34 +338,37 @@ function transactionsFactory(_ref) {
|
|
|
298
338
|
* @param {Object} [opts.headers] - Optional headers
|
|
299
339
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
300
340
|
*/
|
|
301
|
-
function updateDelivery(
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
341
|
+
function updateDelivery({
|
|
342
|
+
token,
|
|
343
|
+
jwtToken,
|
|
344
|
+
trxId,
|
|
345
|
+
data,
|
|
346
|
+
headers
|
|
347
|
+
}) {
|
|
308
348
|
return client({
|
|
309
|
-
url:
|
|
349
|
+
url: `/transactions/${trxId}/delivery`,
|
|
310
350
|
method: "put",
|
|
311
|
-
headers: authorizationHeaders({
|
|
312
|
-
|
|
351
|
+
headers: authorizationHeaders({
|
|
352
|
+
token,
|
|
353
|
+
jwtToken,
|
|
354
|
+
internalAuthTokenProvider,
|
|
355
|
+
headers
|
|
356
|
+
}),
|
|
357
|
+
data
|
|
313
358
|
});
|
|
314
359
|
}
|
|
315
|
-
|
|
316
360
|
return {
|
|
317
|
-
all
|
|
318
|
-
get
|
|
319
|
-
getTickets
|
|
320
|
-
appliedInsurance
|
|
321
|
-
companionTickets
|
|
322
|
-
expireAll
|
|
323
|
-
updateDelivery
|
|
324
|
-
cancellableItems
|
|
325
|
-
payments
|
|
326
|
-
invoices
|
|
327
|
-
creditNotes
|
|
361
|
+
all,
|
|
362
|
+
get,
|
|
363
|
+
getTickets,
|
|
364
|
+
appliedInsurance,
|
|
365
|
+
companionTickets,
|
|
366
|
+
expireAll,
|
|
367
|
+
updateDelivery,
|
|
368
|
+
cancellableItems,
|
|
369
|
+
payments,
|
|
370
|
+
invoices,
|
|
371
|
+
creditNotes
|
|
328
372
|
};
|
|
329
373
|
}
|
|
330
|
-
|
|
331
374
|
module.exports = transactionsFactory;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/* eslint-disable max-len */
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
const {
|
|
3
|
+
authorizationHeaders
|
|
4
|
+
} = require("../endpoints_helpers.js");
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* Factory for transport-regulations API (btrz-api-operations).
|
|
@@ -11,13 +10,11 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {Object} transport-regulations API methods (cnrt)
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
var cnrt = {
|
|
13
|
+
function transportRegulationsFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
17
|
+
const cnrt = {
|
|
21
18
|
/**
|
|
22
19
|
* POST /transport-regulations/cnrt/manifests - create CNRT manifest. API does not accept query params.
|
|
23
20
|
* @param {Object} opts
|
|
@@ -27,24 +24,27 @@ function transportRegulationsFactory(_ref) {
|
|
|
27
24
|
* @param {Object} [opts.headers] - Optional headers
|
|
28
25
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
29
26
|
*/
|
|
30
|
-
create
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
27
|
+
create({
|
|
28
|
+
data,
|
|
29
|
+
token,
|
|
30
|
+
jwtToken,
|
|
31
|
+
headers
|
|
32
|
+
}) {
|
|
36
33
|
return client({
|
|
37
34
|
url: "/transport-regulations/cnrt/manifests",
|
|
38
35
|
method: "post",
|
|
39
|
-
headers: authorizationHeaders({
|
|
40
|
-
|
|
36
|
+
headers: authorizationHeaders({
|
|
37
|
+
token,
|
|
38
|
+
jwtToken,
|
|
39
|
+
internalAuthTokenProvider,
|
|
40
|
+
headers
|
|
41
|
+
}),
|
|
42
|
+
data
|
|
41
43
|
});
|
|
42
44
|
}
|
|
43
45
|
};
|
|
44
|
-
|
|
45
46
|
return {
|
|
46
|
-
cnrt
|
|
47
|
+
cnrt
|
|
47
48
|
};
|
|
48
49
|
}
|
|
49
|
-
|
|
50
50
|
module.exports = transportRegulationsFactory;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
authorizationHeaders = _require.authorizationHeaders;
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("./../endpoints_helpers.js");
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Query params for GET /trip-change-info/:productId (btrz-api-operations get-trip-change-info getSpec).
|
|
@@ -22,12 +21,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
22
21
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
23
22
|
* @returns {Object} trip-change-info API methods
|
|
24
23
|
*/
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
30
|
-
|
|
24
|
+
function tripChangeInfoFactory({
|
|
25
|
+
client,
|
|
26
|
+
internalAuthTokenProvider
|
|
27
|
+
}) {
|
|
31
28
|
/**
|
|
32
29
|
* GET /trip-change-info/:productId - get trip change info.
|
|
33
30
|
* @param {Object} opts
|
|
@@ -38,23 +35,26 @@ function tripChangeInfoFactory(_ref) {
|
|
|
38
35
|
* @param {Object} [opts.headers] - Optional headers
|
|
39
36
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
40
37
|
*/
|
|
41
|
-
function get(
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
38
|
+
function get({
|
|
39
|
+
token,
|
|
40
|
+
jwtToken,
|
|
41
|
+
productId,
|
|
42
|
+
params,
|
|
43
|
+
headers
|
|
44
|
+
}) {
|
|
48
45
|
return client({
|
|
49
|
-
url:
|
|
50
|
-
headers: authorizationHeaders({
|
|
51
|
-
|
|
46
|
+
url: `/trip-change-info/${productId}`,
|
|
47
|
+
headers: authorizationHeaders({
|
|
48
|
+
token,
|
|
49
|
+
jwtToken,
|
|
50
|
+
internalAuthTokenProvider,
|
|
51
|
+
headers
|
|
52
|
+
}),
|
|
53
|
+
params
|
|
52
54
|
});
|
|
53
55
|
}
|
|
54
|
-
|
|
55
56
|
return {
|
|
56
|
-
get
|
|
57
|
+
get
|
|
57
58
|
};
|
|
58
59
|
}
|
|
59
|
-
|
|
60
60
|
module.exports = tripChangeInfoFactory;
|