btrz-api-client 8.75.0 → 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 +133 -73
- 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/inventory/control-classes.js +27 -0
- package/src/endpoints/operations/transactions.js +1 -1
- package/test/endpoints/inventory/control-classes.js +14 -0
- package/tools/build-standalone.mjs +15 -0
- package/types/endpoints/inventory/control-classes.d.ts +4 -0
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -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
|
* Factory for traveller-card-providers API (btrz-api-inventory).
|
|
@@ -10,12 +9,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ all: function, create: function, update: function, get: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function travellerCardProvidersFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET /traveller-card-providers - list traveller card providers. API does not accept query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -24,17 +21,21 @@ function travellerCardProvidersFactory(_ref) {
|
|
|
24
21
|
* @param {Object} [opts.headers] - Optional headers
|
|
25
22
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
26
23
|
*/
|
|
27
|
-
function all(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
24
|
+
function all({
|
|
25
|
+
token,
|
|
26
|
+
jwtToken,
|
|
27
|
+
query = {},
|
|
28
|
+
headers
|
|
29
|
+
}) {
|
|
34
30
|
return client({
|
|
35
31
|
url: "/traveller-card-providers",
|
|
36
32
|
params: query,
|
|
37
|
-
headers: authorizationHeaders({
|
|
33
|
+
headers: authorizationHeaders({
|
|
34
|
+
token,
|
|
35
|
+
jwtToken,
|
|
36
|
+
internalAuthTokenProvider,
|
|
37
|
+
headers
|
|
38
|
+
})
|
|
38
39
|
});
|
|
39
40
|
}
|
|
40
41
|
|
|
@@ -47,17 +48,24 @@ function travellerCardProvidersFactory(_ref) {
|
|
|
47
48
|
* @param {Object} [opts.headers] - Optional headers
|
|
48
49
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
49
50
|
*/
|
|
50
|
-
function create(
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
51
|
+
function create({
|
|
52
|
+
token,
|
|
53
|
+
jwtToken,
|
|
54
|
+
travellerCardProvider,
|
|
55
|
+
headers
|
|
56
|
+
}) {
|
|
56
57
|
return client({
|
|
57
58
|
url: "/traveller-card-providers",
|
|
58
59
|
method: "post",
|
|
59
|
-
headers: authorizationHeaders({
|
|
60
|
-
|
|
60
|
+
headers: authorizationHeaders({
|
|
61
|
+
token,
|
|
62
|
+
jwtToken,
|
|
63
|
+
internalAuthTokenProvider,
|
|
64
|
+
headers
|
|
65
|
+
}),
|
|
66
|
+
data: {
|
|
67
|
+
travellerCardProvider
|
|
68
|
+
}
|
|
61
69
|
});
|
|
62
70
|
}
|
|
63
71
|
|
|
@@ -71,18 +79,25 @@ function travellerCardProvidersFactory(_ref) {
|
|
|
71
79
|
* @param {Object} [opts.headers] - Optional headers
|
|
72
80
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
73
81
|
*/
|
|
74
|
-
function update(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
82
|
+
function update({
|
|
83
|
+
jwtToken,
|
|
84
|
+
token,
|
|
85
|
+
travellerCardProviderId,
|
|
86
|
+
travellerCardProvider,
|
|
87
|
+
headers
|
|
88
|
+
}) {
|
|
81
89
|
return client({
|
|
82
|
-
url:
|
|
90
|
+
url: `/traveller-card-providers/${travellerCardProviderId}`,
|
|
83
91
|
method: "put",
|
|
84
|
-
headers: authorizationHeaders({
|
|
85
|
-
|
|
92
|
+
headers: authorizationHeaders({
|
|
93
|
+
token,
|
|
94
|
+
jwtToken,
|
|
95
|
+
internalAuthTokenProvider,
|
|
96
|
+
headers
|
|
97
|
+
}),
|
|
98
|
+
data: {
|
|
99
|
+
travellerCardProvider
|
|
100
|
+
}
|
|
86
101
|
});
|
|
87
102
|
}
|
|
88
103
|
|
|
@@ -95,25 +110,28 @@ function travellerCardProvidersFactory(_ref) {
|
|
|
95
110
|
* @param {Object} [opts.headers] - Optional headers
|
|
96
111
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
97
112
|
*/
|
|
98
|
-
function get(
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
113
|
+
function get({
|
|
114
|
+
token,
|
|
115
|
+
travellerCardProviderId,
|
|
116
|
+
jwtToken,
|
|
117
|
+
headers
|
|
118
|
+
}) {
|
|
104
119
|
return client({
|
|
105
|
-
url:
|
|
120
|
+
url: `/traveller-card-providers/${travellerCardProviderId}`,
|
|
106
121
|
method: "get",
|
|
107
|
-
headers: authorizationHeaders({
|
|
122
|
+
headers: authorizationHeaders({
|
|
123
|
+
token,
|
|
124
|
+
internalAuthTokenProvider,
|
|
125
|
+
jwtToken,
|
|
126
|
+
headers
|
|
127
|
+
})
|
|
108
128
|
});
|
|
109
129
|
}
|
|
110
|
-
|
|
111
130
|
return {
|
|
112
|
-
all
|
|
113
|
-
create
|
|
114
|
-
update
|
|
115
|
-
get
|
|
131
|
+
all,
|
|
132
|
+
create,
|
|
133
|
+
update,
|
|
134
|
+
get
|
|
116
135
|
};
|
|
117
136
|
}
|
|
118
|
-
|
|
119
137
|
module.exports = travellerCardProvidersFactory;
|
|
@@ -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 /traveller-card-types (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -16,12 +15,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
16
15
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
17
16
|
* @returns {{ all: function, create: function, update: function, get: function, remove: function }}
|
|
18
17
|
*/
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
24
|
-
|
|
18
|
+
function travellerCardTypesFactory({
|
|
19
|
+
client,
|
|
20
|
+
internalAuthTokenProvider
|
|
21
|
+
}) {
|
|
25
22
|
/**
|
|
26
23
|
* GET /traveller-card-types - list traveller card types.
|
|
27
24
|
* @param {Object} opts
|
|
@@ -31,17 +28,21 @@ function travellerCardTypesFactory(_ref) {
|
|
|
31
28
|
* @param {Object} [opts.headers] - Optional headers
|
|
32
29
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
33
30
|
*/
|
|
34
|
-
function all(
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
31
|
+
function all({
|
|
32
|
+
token,
|
|
33
|
+
jwtToken,
|
|
34
|
+
query = {},
|
|
35
|
+
headers
|
|
36
|
+
}) {
|
|
41
37
|
return client({
|
|
42
38
|
url: "/traveller-card-types",
|
|
43
39
|
params: query,
|
|
44
|
-
headers: authorizationHeaders({
|
|
40
|
+
headers: authorizationHeaders({
|
|
41
|
+
token,
|
|
42
|
+
jwtToken,
|
|
43
|
+
internalAuthTokenProvider,
|
|
44
|
+
headers
|
|
45
|
+
})
|
|
45
46
|
});
|
|
46
47
|
}
|
|
47
48
|
|
|
@@ -54,17 +55,24 @@ function travellerCardTypesFactory(_ref) {
|
|
|
54
55
|
* @param {Object} [opts.headers] - Optional headers
|
|
55
56
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
56
57
|
*/
|
|
57
|
-
function create(
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
58
|
+
function create({
|
|
59
|
+
token,
|
|
60
|
+
jwtToken,
|
|
61
|
+
travellerCardType,
|
|
62
|
+
headers
|
|
63
|
+
}) {
|
|
63
64
|
return client({
|
|
64
65
|
url: "/traveller-card-types",
|
|
65
66
|
method: "post",
|
|
66
|
-
headers: authorizationHeaders({
|
|
67
|
-
|
|
67
|
+
headers: authorizationHeaders({
|
|
68
|
+
token,
|
|
69
|
+
jwtToken,
|
|
70
|
+
internalAuthTokenProvider,
|
|
71
|
+
headers
|
|
72
|
+
}),
|
|
73
|
+
data: {
|
|
74
|
+
travellerCardType
|
|
75
|
+
}
|
|
68
76
|
});
|
|
69
77
|
}
|
|
70
78
|
|
|
@@ -78,18 +86,25 @@ function travellerCardTypesFactory(_ref) {
|
|
|
78
86
|
* @param {Object} [opts.headers] - Optional headers
|
|
79
87
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
80
88
|
*/
|
|
81
|
-
function update(
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
89
|
+
function update({
|
|
90
|
+
jwtToken,
|
|
91
|
+
token,
|
|
92
|
+
travellerCardTypeId,
|
|
93
|
+
travellerCardType,
|
|
94
|
+
headers
|
|
95
|
+
}) {
|
|
88
96
|
return client({
|
|
89
|
-
url:
|
|
97
|
+
url: `/traveller-card-types/${travellerCardTypeId}`,
|
|
90
98
|
method: "put",
|
|
91
|
-
headers: authorizationHeaders({
|
|
92
|
-
|
|
99
|
+
headers: authorizationHeaders({
|
|
100
|
+
token,
|
|
101
|
+
jwtToken,
|
|
102
|
+
internalAuthTokenProvider,
|
|
103
|
+
headers
|
|
104
|
+
}),
|
|
105
|
+
data: {
|
|
106
|
+
travellerCardType
|
|
107
|
+
}
|
|
93
108
|
});
|
|
94
109
|
}
|
|
95
110
|
|
|
@@ -102,16 +117,21 @@ function travellerCardTypesFactory(_ref) {
|
|
|
102
117
|
* @param {Object} [opts.headers] - Optional headers
|
|
103
118
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
104
119
|
*/
|
|
105
|
-
function get(
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
120
|
+
function get({
|
|
121
|
+
token,
|
|
122
|
+
travellerCardTypeId,
|
|
123
|
+
jwtToken,
|
|
124
|
+
headers
|
|
125
|
+
}) {
|
|
111
126
|
return client({
|
|
112
|
-
url:
|
|
127
|
+
url: `/traveller-card-types/${travellerCardTypeId}`,
|
|
113
128
|
method: "get",
|
|
114
|
-
headers: authorizationHeaders({
|
|
129
|
+
headers: authorizationHeaders({
|
|
130
|
+
token,
|
|
131
|
+
internalAuthTokenProvider,
|
|
132
|
+
jwtToken,
|
|
133
|
+
headers
|
|
134
|
+
})
|
|
115
135
|
});
|
|
116
136
|
}
|
|
117
137
|
|
|
@@ -124,26 +144,29 @@ function travellerCardTypesFactory(_ref) {
|
|
|
124
144
|
* @param {Object} [opts.headers] - Optional headers
|
|
125
145
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
126
146
|
*/
|
|
127
|
-
function remove(
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
147
|
+
function remove({
|
|
148
|
+
token,
|
|
149
|
+
travellerCardTypeId,
|
|
150
|
+
jwtToken,
|
|
151
|
+
headers
|
|
152
|
+
}) {
|
|
133
153
|
return client({
|
|
134
|
-
url:
|
|
154
|
+
url: `/traveller-card-types/${travellerCardTypeId}`,
|
|
135
155
|
method: "delete",
|
|
136
|
-
headers: authorizationHeaders({
|
|
156
|
+
headers: authorizationHeaders({
|
|
157
|
+
token,
|
|
158
|
+
internalAuthTokenProvider,
|
|
159
|
+
jwtToken,
|
|
160
|
+
headers
|
|
161
|
+
})
|
|
137
162
|
});
|
|
138
163
|
}
|
|
139
|
-
|
|
140
164
|
return {
|
|
141
|
-
all
|
|
142
|
-
create
|
|
143
|
-
update
|
|
144
|
-
get
|
|
145
|
-
remove
|
|
165
|
+
all,
|
|
166
|
+
create,
|
|
167
|
+
update,
|
|
168
|
+
get,
|
|
169
|
+
remove
|
|
146
170
|
};
|
|
147
171
|
}
|
|
148
|
-
|
|
149
172
|
module.exports = travellerCardTypesFactory;
|
|
@@ -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
|
* Body for POST /direct-trip-ids (btrz-api-inventory-trips). See TripIdPostData in post-handler getSpec().
|
|
@@ -26,12 +25,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
26
25
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
27
26
|
* @returns {{ create: function }}
|
|
28
27
|
*/
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
34
|
-
|
|
28
|
+
function tripIdsFactory({
|
|
29
|
+
client,
|
|
30
|
+
internalAuthTokenProvider
|
|
31
|
+
}) {
|
|
35
32
|
/**
|
|
36
33
|
* POST /direct-trip-ids — Resolve trip parameters to a trip id. Runs trip search internally and returns the matching trip's base64 id (or null). Body can be TripIdPostData or { tripId: TripIdPostData }.
|
|
37
34
|
* @param {Object} opts
|
|
@@ -45,23 +42,26 @@ function tripIdsFactory(_ref) {
|
|
|
45
42
|
* @throws 404 TRIP_IDS_NOT_FOUND
|
|
46
43
|
* @throws 500 Internal server error
|
|
47
44
|
*/
|
|
48
|
-
function create(
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
45
|
+
function create({
|
|
46
|
+
token,
|
|
47
|
+
jwtToken,
|
|
48
|
+
data,
|
|
49
|
+
headers
|
|
50
|
+
}) {
|
|
54
51
|
return client({
|
|
55
52
|
url: "/direct-trip-ids",
|
|
56
53
|
method: "post",
|
|
57
|
-
data
|
|
58
|
-
headers: authorizationHeaders({
|
|
54
|
+
data,
|
|
55
|
+
headers: authorizationHeaders({
|
|
56
|
+
token,
|
|
57
|
+
jwtToken,
|
|
58
|
+
internalAuthTokenProvider,
|
|
59
|
+
headers
|
|
60
|
+
})
|
|
59
61
|
});
|
|
60
62
|
}
|
|
61
|
-
|
|
62
63
|
return {
|
|
63
|
-
create
|
|
64
|
+
create
|
|
64
65
|
};
|
|
65
66
|
}
|
|
66
|
-
|
|
67
67
|
module.exports = tripIdsFactory;
|
|
@@ -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 trips API (btrz-api-inventory-trips).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ all: function, get: function, getPricingSimulation: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function tripsFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /trips — Search for available trips by date, origin, destination, fare, product, channel, and price. Rate limited (e.g. 8000 req/10 min). See get-trips getSpec() for full query params (productId, originId, destinationId, fareIds, departureDate, returnDate, channel, currency, etc.).
|
|
22
19
|
* @param {Object} opts
|
|
@@ -30,18 +27,22 @@ function tripsFactory(_ref) {
|
|
|
30
27
|
* @throws 409 NO_HIGHER_OR_EQL_PRICE
|
|
31
28
|
* @throws 500 Internal server error
|
|
32
29
|
*/
|
|
33
|
-
function all(
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
30
|
+
function all({
|
|
31
|
+
token,
|
|
32
|
+
jwtToken,
|
|
33
|
+
query = {},
|
|
34
|
+
headers
|
|
35
|
+
}) {
|
|
40
36
|
return client({
|
|
41
37
|
url: "/trips",
|
|
42
38
|
method: "get",
|
|
43
39
|
params: query,
|
|
44
|
-
headers: authorizationHeaders({
|
|
40
|
+
headers: authorizationHeaders({
|
|
41
|
+
token,
|
|
42
|
+
jwtToken,
|
|
43
|
+
internalAuthTokenProvider,
|
|
44
|
+
headers
|
|
45
|
+
})
|
|
45
46
|
});
|
|
46
47
|
}
|
|
47
48
|
|
|
@@ -58,19 +59,23 @@ function tripsFactory(_ref) {
|
|
|
58
59
|
* @throws 401 Unauthorized
|
|
59
60
|
* @throws 500 Internal server error
|
|
60
61
|
*/
|
|
61
|
-
function get(
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
62
|
+
function get({
|
|
63
|
+
token,
|
|
64
|
+
jwtToken,
|
|
65
|
+
id,
|
|
66
|
+
query = {},
|
|
67
|
+
headers
|
|
68
|
+
}) {
|
|
69
69
|
return client({
|
|
70
|
-
url:
|
|
70
|
+
url: `/trip/${id}`,
|
|
71
71
|
method: "get",
|
|
72
72
|
params: query,
|
|
73
|
-
headers: authorizationHeaders({
|
|
73
|
+
headers: authorizationHeaders({
|
|
74
|
+
token,
|
|
75
|
+
jwtToken,
|
|
76
|
+
internalAuthTokenProvider,
|
|
77
|
+
headers
|
|
78
|
+
})
|
|
74
79
|
});
|
|
75
80
|
}
|
|
76
81
|
|
|
@@ -87,26 +92,28 @@ function tripsFactory(_ref) {
|
|
|
87
92
|
* @throws 404 SCHEDULE_NOT_FOUND, NO_MANIFEST
|
|
88
93
|
* @throws 500 Internal server error
|
|
89
94
|
*/
|
|
90
|
-
function getPricingSimulation(
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
95
|
+
function getPricingSimulation({
|
|
96
|
+
token,
|
|
97
|
+
jwtToken,
|
|
98
|
+
query = {},
|
|
99
|
+
headers
|
|
100
|
+
}) {
|
|
97
101
|
return client({
|
|
98
102
|
url: "/trips/pricing-simulation",
|
|
99
103
|
method: "get",
|
|
100
104
|
params: query,
|
|
101
|
-
headers: authorizationHeaders({
|
|
105
|
+
headers: authorizationHeaders({
|
|
106
|
+
token,
|
|
107
|
+
jwtToken,
|
|
108
|
+
internalAuthTokenProvider,
|
|
109
|
+
headers
|
|
110
|
+
})
|
|
102
111
|
});
|
|
103
112
|
}
|
|
104
|
-
|
|
105
113
|
return {
|
|
106
|
-
all
|
|
107
|
-
get
|
|
108
|
-
getPricingSimulation
|
|
114
|
+
all,
|
|
115
|
+
get,
|
|
116
|
+
getPricingSimulation
|
|
109
117
|
};
|
|
110
118
|
}
|
|
111
|
-
|
|
112
119
|
module.exports = tripsFactory;
|
|
@@ -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
|
* Factory for vehicle-types API (btrz-api-inventory).
|
|
@@ -10,12 +9,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ all: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function vehicleTypesFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET /vehicle-types - list vehicle types (e.g. Bus, Shuttle, Van, Train, Ferry, Tram). No query or path params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -24,19 +21,22 @@ function vehicleTypesFactory(_ref) {
|
|
|
24
21
|
* @param {Object} [opts.headers] - Optional headers
|
|
25
22
|
* @returns {Promise<import("axios").AxiosResponse<{ vehicleTypes: Array<{ _id: string, name: string }> }>>}
|
|
26
23
|
*/
|
|
27
|
-
function all(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
function all({
|
|
25
|
+
token,
|
|
26
|
+
jwtToken,
|
|
27
|
+
headers
|
|
28
|
+
}) {
|
|
32
29
|
return client.get("/vehicle-types", {
|
|
33
|
-
headers: authorizationHeaders({
|
|
30
|
+
headers: authorizationHeaders({
|
|
31
|
+
token,
|
|
32
|
+
jwtToken,
|
|
33
|
+
internalAuthTokenProvider,
|
|
34
|
+
headers
|
|
35
|
+
})
|
|
34
36
|
});
|
|
35
37
|
}
|
|
36
|
-
|
|
37
38
|
return {
|
|
38
|
-
all
|
|
39
|
+
all
|
|
39
40
|
};
|
|
40
41
|
}
|
|
41
|
-
|
|
42
42
|
module.exports = vehicleTypesFactory;
|