btrz-api-client 8.75.1 → 9.0.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 +218 -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/tools/build-standalone.mjs +15 -0
- 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
|
* Query params for GET /custom-reports (btrz-api-reports). Documented from client; backend may support pagination/filters.
|
|
@@ -18,12 +17,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ create: function, all: function, remove: function }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function customReportsFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* POST /custom-reports - create custom report.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -33,17 +30,24 @@ function customReportsFactory(_ref) {
|
|
|
33
30
|
* @param {Object} [opts.headers] - Optional headers
|
|
34
31
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
35
32
|
*/
|
|
36
|
-
function create(
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
33
|
+
function create({
|
|
34
|
+
token,
|
|
35
|
+
customReport,
|
|
36
|
+
jwtToken,
|
|
37
|
+
headers
|
|
38
|
+
}) {
|
|
42
39
|
return client({
|
|
43
40
|
url: "/custom-reports",
|
|
44
41
|
method: "post",
|
|
45
|
-
headers: authorizationHeaders({
|
|
46
|
-
|
|
42
|
+
headers: authorizationHeaders({
|
|
43
|
+
token,
|
|
44
|
+
jwtToken,
|
|
45
|
+
internalAuthTokenProvider,
|
|
46
|
+
headers
|
|
47
|
+
}),
|
|
48
|
+
data: {
|
|
49
|
+
customReport
|
|
50
|
+
}
|
|
47
51
|
});
|
|
48
52
|
}
|
|
49
53
|
|
|
@@ -56,17 +60,21 @@ function customReportsFactory(_ref) {
|
|
|
56
60
|
* @param {Object} [opts.headers] - Optional headers
|
|
57
61
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
58
62
|
*/
|
|
59
|
-
function all(
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
63
|
+
function all({
|
|
64
|
+
token,
|
|
65
|
+
jwtToken,
|
|
66
|
+
query = {},
|
|
67
|
+
headers
|
|
68
|
+
}) {
|
|
66
69
|
return client({
|
|
67
70
|
url: "/custom-reports",
|
|
68
71
|
params: query,
|
|
69
|
-
headers: authorizationHeaders({
|
|
72
|
+
headers: authorizationHeaders({
|
|
73
|
+
token,
|
|
74
|
+
jwtToken,
|
|
75
|
+
internalAuthTokenProvider,
|
|
76
|
+
headers
|
|
77
|
+
})
|
|
70
78
|
});
|
|
71
79
|
}
|
|
72
80
|
|
|
@@ -79,24 +87,27 @@ function customReportsFactory(_ref) {
|
|
|
79
87
|
* @param {Object} [opts.headers] - Optional headers
|
|
80
88
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
81
89
|
*/
|
|
82
|
-
function remove(
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
90
|
+
function remove({
|
|
91
|
+
token,
|
|
92
|
+
jwtToken,
|
|
93
|
+
customReportId,
|
|
94
|
+
headers
|
|
95
|
+
}) {
|
|
88
96
|
return client({
|
|
89
|
-
url:
|
|
97
|
+
url: `/custom-reports/${customReportId}`,
|
|
90
98
|
method: "delete",
|
|
91
|
-
headers: authorizationHeaders({
|
|
99
|
+
headers: authorizationHeaders({
|
|
100
|
+
token,
|
|
101
|
+
jwtToken,
|
|
102
|
+
internalAuthTokenProvider,
|
|
103
|
+
headers
|
|
104
|
+
})
|
|
92
105
|
});
|
|
93
106
|
}
|
|
94
|
-
|
|
95
107
|
return {
|
|
96
|
-
create
|
|
97
|
-
all
|
|
98
|
-
remove
|
|
108
|
+
create,
|
|
109
|
+
all,
|
|
110
|
+
remove
|
|
99
111
|
};
|
|
100
112
|
}
|
|
101
|
-
|
|
102
113
|
module.exports = customReportsFactory;
|
|
@@ -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 report email API (btrz-api-reports).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ post: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function reportEmailFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* POST /email - send report email.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -26,22 +23,26 @@ function reportEmailFactory(_ref) {
|
|
|
26
23
|
* @param {Object} [opts.headers] - Optional headers
|
|
27
24
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
28
25
|
*/
|
|
29
|
-
function post(
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
26
|
+
function post({
|
|
27
|
+
token,
|
|
28
|
+
jwtToken,
|
|
29
|
+
report,
|
|
30
|
+
headers
|
|
31
|
+
}) {
|
|
35
32
|
return client({
|
|
36
33
|
url: "/email",
|
|
37
34
|
method: "post",
|
|
38
35
|
data: report,
|
|
39
|
-
headers: authorizationHeaders({
|
|
36
|
+
headers: authorizationHeaders({
|
|
37
|
+
token,
|
|
38
|
+
jwtToken,
|
|
39
|
+
internalAuthTokenProvider,
|
|
40
|
+
headers
|
|
41
|
+
})
|
|
40
42
|
});
|
|
41
43
|
}
|
|
42
44
|
return {
|
|
43
|
-
post
|
|
45
|
+
post
|
|
44
46
|
};
|
|
45
47
|
}
|
|
46
|
-
|
|
47
48
|
module.exports = reportEmailFactory;
|
|
@@ -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 report types API (btrz-api-reports).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ get: function, getByName: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function reportTypesFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /types/:id - get report type by id.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -26,15 +23,20 @@ function reportTypesFactory(_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
|
-
|
|
26
|
+
function get({
|
|
27
|
+
token,
|
|
28
|
+
jwtToken,
|
|
29
|
+
id,
|
|
30
|
+
headers
|
|
31
|
+
}) {
|
|
35
32
|
return client({
|
|
36
|
-
url:
|
|
37
|
-
headers: authorizationHeaders({
|
|
33
|
+
url: `/types/${id}`,
|
|
34
|
+
headers: authorizationHeaders({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
internalAuthTokenProvider,
|
|
38
|
+
headers
|
|
39
|
+
})
|
|
38
40
|
});
|
|
39
41
|
}
|
|
40
42
|
|
|
@@ -48,22 +50,25 @@ function reportTypesFactory(_ref) {
|
|
|
48
50
|
* @param {Object} [opts.headers] - Optional headers
|
|
49
51
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
50
52
|
*/
|
|
51
|
-
function getByName(
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
function getByName({
|
|
54
|
+
token,
|
|
55
|
+
jwtToken,
|
|
56
|
+
name,
|
|
57
|
+
headers
|
|
58
|
+
}) {
|
|
57
59
|
return client({
|
|
58
|
-
url:
|
|
59
|
-
headers: authorizationHeaders({
|
|
60
|
+
url: `/types?name=${name}`,
|
|
61
|
+
headers: authorizationHeaders({
|
|
62
|
+
token,
|
|
63
|
+
jwtToken,
|
|
64
|
+
internalAuthTokenProvider,
|
|
65
|
+
headers
|
|
66
|
+
})
|
|
60
67
|
});
|
|
61
68
|
}
|
|
62
|
-
|
|
63
69
|
return {
|
|
64
|
-
get
|
|
65
|
-
getByName
|
|
70
|
+
get,
|
|
71
|
+
getByName
|
|
66
72
|
};
|
|
67
73
|
}
|
|
68
|
-
|
|
69
74
|
module.exports = reportTypesFactory;
|
|
@@ -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
|
* Query params for GET /trip-manifests (btrz-api-reports). Documented from client; backend may support pagination/filters.
|
|
@@ -18,12 +17,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ all: function }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function tripManifestsFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET /trip-manifests - list trip manifests.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -33,23 +30,25 @@ function tripManifestsFactory(_ref) {
|
|
|
33
30
|
* @param {Object} [opts.headers] - Optional headers
|
|
34
31
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
35
32
|
*/
|
|
36
|
-
function all(
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
33
|
+
function all({
|
|
34
|
+
token,
|
|
35
|
+
jwtToken,
|
|
36
|
+
query = {},
|
|
37
|
+
headers
|
|
38
|
+
}) {
|
|
43
39
|
return client({
|
|
44
40
|
url: "/trip-manifests",
|
|
45
41
|
params: query,
|
|
46
|
-
headers: authorizationHeaders({
|
|
42
|
+
headers: authorizationHeaders({
|
|
43
|
+
token,
|
|
44
|
+
jwtToken,
|
|
45
|
+
internalAuthTokenProvider,
|
|
46
|
+
headers
|
|
47
|
+
})
|
|
47
48
|
});
|
|
48
49
|
}
|
|
49
|
-
|
|
50
50
|
return {
|
|
51
|
-
all
|
|
51
|
+
all
|
|
52
52
|
};
|
|
53
53
|
}
|
|
54
|
-
|
|
55
54
|
module.exports = tripManifestsFactory;
|
|
@@ -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
|
* Query params for GET /bundles (btrz-api-sales get-bundles getSpec).
|
|
@@ -18,12 +17,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ all: function }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function bundlesFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET /bundles - list bundles.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -32,21 +29,22 @@ function bundlesFactory(_ref) {
|
|
|
32
29
|
* @param {Object} [opts.headers] - Optional headers
|
|
33
30
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
34
31
|
*/
|
|
35
|
-
function all(
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
32
|
+
function all({
|
|
33
|
+
token,
|
|
34
|
+
query = {},
|
|
35
|
+
headers
|
|
36
|
+
}) {
|
|
41
37
|
return client.get("/bundles", {
|
|
42
38
|
params: query,
|
|
43
|
-
headers: authorizationHeaders({
|
|
39
|
+
headers: authorizationHeaders({
|
|
40
|
+
token,
|
|
41
|
+
internalAuthTokenProvider,
|
|
42
|
+
headers
|
|
43
|
+
})
|
|
44
44
|
});
|
|
45
45
|
}
|
|
46
|
-
|
|
47
46
|
return {
|
|
48
|
-
all
|
|
47
|
+
all
|
|
49
48
|
};
|
|
50
49
|
}
|
|
51
|
-
|
|
52
50
|
module.exports = bundlesFactory;
|
|
@@ -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
|
* Request body for POST /cancellations (btrz-api-sales).
|
|
@@ -48,10 +47,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
48
47
|
* }} CompletePaymentCancellationData
|
|
49
48
|
*/
|
|
50
49
|
|
|
51
|
-
function cancellationEndpointsFactory(
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
50
|
+
function cancellationEndpointsFactory({
|
|
51
|
+
client,
|
|
52
|
+
internalAuthTokenProvider
|
|
53
|
+
}) {
|
|
55
54
|
/**
|
|
56
55
|
* POST /cancellations - creates a cancel set (preview) with calculated
|
|
57
56
|
* refunds and signature. Does not execute refunds.
|
|
@@ -68,19 +67,24 @@ function cancellationEndpointsFactory(_ref) {
|
|
|
68
67
|
* FEE_OVERRIDE_NOT_ALLOWED), 404 ([itemType]_NOT_FOUND),
|
|
69
68
|
* 409 (CURRENCY_EXCHANGE_MISMATCH, AGENCY_CURRENCY_MISMATCH), 500.
|
|
70
69
|
*/
|
|
71
|
-
function createCancelSet(
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
70
|
+
function createCancelSet({
|
|
71
|
+
token,
|
|
72
|
+
jwtToken,
|
|
73
|
+
cancelData,
|
|
74
|
+
headers
|
|
75
|
+
}) {
|
|
77
76
|
return client({
|
|
78
77
|
url: "/cancellations",
|
|
79
78
|
method: "POST",
|
|
80
79
|
data: {
|
|
81
80
|
cancellation: cancelData
|
|
82
81
|
},
|
|
83
|
-
headers: authorizationHeaders({
|
|
82
|
+
headers: authorizationHeaders({
|
|
83
|
+
token,
|
|
84
|
+
jwtToken,
|
|
85
|
+
internalAuthTokenProvider,
|
|
86
|
+
headers
|
|
87
|
+
})
|
|
84
88
|
});
|
|
85
89
|
}
|
|
86
90
|
|
|
@@ -100,17 +104,22 @@ function cancellationEndpointsFactory(_ref) {
|
|
|
100
104
|
* 409 (NOT_FOUND_FOR_REFUND, REFUND_EXECUTION_ERROR,
|
|
101
105
|
* PAYMENT_ROLLBACK_FAILED, CONFLICT duplicate), 500.
|
|
102
106
|
*/
|
|
103
|
-
function createRefund(
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
107
|
+
function createRefund({
|
|
108
|
+
token,
|
|
109
|
+
jwtToken,
|
|
110
|
+
cancelSet,
|
|
111
|
+
headers
|
|
112
|
+
}) {
|
|
109
113
|
return client({
|
|
110
114
|
url: "/cancellations",
|
|
111
115
|
method: "PUT",
|
|
112
116
|
data: cancelSet,
|
|
113
|
-
headers: authorizationHeaders({
|
|
117
|
+
headers: authorizationHeaders({
|
|
118
|
+
token,
|
|
119
|
+
jwtToken,
|
|
120
|
+
internalAuthTokenProvider,
|
|
121
|
+
headers
|
|
122
|
+
})
|
|
114
123
|
});
|
|
115
124
|
}
|
|
116
125
|
|
|
@@ -130,21 +139,27 @@ function cancellationEndpointsFactory(_ref) {
|
|
|
130
139
|
* INVALID_TRANSACTION_STATUS, PAYMENT_NOT_PENDING, etc.), 401,
|
|
131
140
|
* 404 (TRANSACTION_NOT_FOUND, PAYMENT_NOT_FOUND, etc.), 500.
|
|
132
141
|
*/
|
|
133
|
-
function updateCompletePayment(
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
142
|
+
function updateCompletePayment({
|
|
143
|
+
token,
|
|
144
|
+
jwtToken,
|
|
145
|
+
pendingTransactionId,
|
|
146
|
+
paymentResult,
|
|
147
|
+
headers
|
|
148
|
+
}) {
|
|
140
149
|
return client({
|
|
141
|
-
url:
|
|
150
|
+
url: `/cancellations/${pendingTransactionId}`,
|
|
142
151
|
method: "PUT",
|
|
143
|
-
data: {
|
|
144
|
-
|
|
152
|
+
data: {
|
|
153
|
+
paymentResult
|
|
154
|
+
},
|
|
155
|
+
headers: authorizationHeaders({
|
|
156
|
+
token,
|
|
157
|
+
jwtToken,
|
|
158
|
+
internalAuthTokenProvider,
|
|
159
|
+
headers
|
|
160
|
+
})
|
|
145
161
|
});
|
|
146
162
|
}
|
|
147
|
-
|
|
148
163
|
return {
|
|
149
164
|
sets: {
|
|
150
165
|
create: createCancelSet
|
|
@@ -155,5 +170,4 @@ function cancellationEndpointsFactory(_ref) {
|
|
|
155
170
|
update: updateCompletePayment
|
|
156
171
|
};
|
|
157
172
|
}
|
|
158
|
-
|
|
159
173
|
module.exports = cancellationEndpointsFactory;
|
|
@@ -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 cart promos API (btrz-api-sales).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ create: function, remove: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function cartPromoFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* POST /cart/:cartId/promos - add promo to cart. API does not accept query params.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -26,18 +23,22 @@ function cartPromoFactory(_ref) {
|
|
|
26
23
|
* @param {Object} [opts.headers] - Optional headers
|
|
27
24
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
28
25
|
*/
|
|
29
|
-
function create(
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
26
|
+
function create({
|
|
27
|
+
token,
|
|
28
|
+
jwtToken,
|
|
29
|
+
cartId,
|
|
30
|
+
query = {},
|
|
31
|
+
headers
|
|
32
|
+
}) {
|
|
37
33
|
return client({
|
|
38
|
-
url:
|
|
34
|
+
url: `/cart/${cartId}/promos`,
|
|
39
35
|
method: "post",
|
|
40
|
-
headers: authorizationHeaders({
|
|
36
|
+
headers: authorizationHeaders({
|
|
37
|
+
token,
|
|
38
|
+
jwtToken,
|
|
39
|
+
internalAuthTokenProvider,
|
|
40
|
+
headers
|
|
41
|
+
}),
|
|
41
42
|
params: query
|
|
42
43
|
});
|
|
43
44
|
}
|
|
@@ -51,26 +52,28 @@ function cartPromoFactory(_ref) {
|
|
|
51
52
|
* @param {Object} [opts.headers] - Optional headers
|
|
52
53
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
53
54
|
*/
|
|
54
|
-
function remove(
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
55
|
+
function remove({
|
|
56
|
+
token,
|
|
57
|
+
jwtToken,
|
|
58
|
+
cartId,
|
|
59
|
+
query = {},
|
|
60
|
+
headers
|
|
61
|
+
}) {
|
|
62
62
|
return client({
|
|
63
|
-
url:
|
|
63
|
+
url: `/cart/${cartId}`,
|
|
64
64
|
method: "delete",
|
|
65
|
-
headers: authorizationHeaders({
|
|
65
|
+
headers: authorizationHeaders({
|
|
66
|
+
token,
|
|
67
|
+
jwtToken,
|
|
68
|
+
internalAuthTokenProvider,
|
|
69
|
+
headers
|
|
70
|
+
}),
|
|
66
71
|
params: query
|
|
67
72
|
});
|
|
68
73
|
}
|
|
69
|
-
|
|
70
74
|
return {
|
|
71
|
-
create
|
|
72
|
-
remove
|
|
75
|
+
create,
|
|
76
|
+
remove
|
|
73
77
|
};
|
|
74
78
|
}
|
|
75
|
-
|
|
76
79
|
module.exports = cartPromoFactory;
|