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,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/* eslint-disable import/extensions */
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
const {
|
|
3
|
+
authorizationHeaders
|
|
4
|
+
} = require("./../endpoints_helpers");
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* Factory for seat-classes API (btrz-api-inventory).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ all: function, get: function, update: function, remove: function, create: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function seatClassesFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /seat-classes - list seat classes. API does not accept query params.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -25,17 +22,21 @@ function seatClassesFactory(_ref) {
|
|
|
25
22
|
* @param {Object} [opts.headers] - Optional headers
|
|
26
23
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
27
24
|
*/
|
|
28
|
-
function all(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
25
|
+
function all({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
query = {},
|
|
29
|
+
headers
|
|
30
|
+
}) {
|
|
35
31
|
return client({
|
|
36
32
|
url: "/seat-classes",
|
|
37
33
|
method: "get",
|
|
38
|
-
headers: authorizationHeaders({
|
|
34
|
+
headers: authorizationHeaders({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
internalAuthTokenProvider,
|
|
38
|
+
headers
|
|
39
|
+
}),
|
|
39
40
|
params: query
|
|
40
41
|
});
|
|
41
42
|
}
|
|
@@ -49,18 +50,22 @@ function seatClassesFactory(_ref) {
|
|
|
49
50
|
* @param {Object} [opts.headers] - Optional headers
|
|
50
51
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
51
52
|
*/
|
|
52
|
-
function get(
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
53
|
+
function get({
|
|
54
|
+
token,
|
|
55
|
+
jwtToken,
|
|
56
|
+
id,
|
|
57
|
+
query = {},
|
|
58
|
+
headers
|
|
59
|
+
}) {
|
|
60
60
|
return client({
|
|
61
|
-
url:
|
|
61
|
+
url: `/seat-classes/${id}`,
|
|
62
62
|
method: "get",
|
|
63
|
-
headers: authorizationHeaders({
|
|
63
|
+
headers: authorizationHeaders({
|
|
64
|
+
token,
|
|
65
|
+
jwtToken,
|
|
66
|
+
internalAuthTokenProvider,
|
|
67
|
+
headers
|
|
68
|
+
}),
|
|
64
69
|
params: query
|
|
65
70
|
});
|
|
66
71
|
}
|
|
@@ -75,21 +80,25 @@ function seatClassesFactory(_ref) {
|
|
|
75
80
|
* @param {Object} [opts.headers] - Optional headers
|
|
76
81
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
77
82
|
*/
|
|
78
|
-
function update(
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
83
|
+
function update({
|
|
84
|
+
token,
|
|
85
|
+
jwtToken,
|
|
86
|
+
id,
|
|
87
|
+
data,
|
|
88
|
+
query = {},
|
|
89
|
+
headers
|
|
90
|
+
}) {
|
|
87
91
|
return client({
|
|
88
|
-
url:
|
|
92
|
+
url: `/seat-classes/${id}`,
|
|
89
93
|
method: "put",
|
|
90
|
-
headers: authorizationHeaders({
|
|
94
|
+
headers: authorizationHeaders({
|
|
95
|
+
token,
|
|
96
|
+
jwtToken,
|
|
97
|
+
internalAuthTokenProvider,
|
|
98
|
+
headers
|
|
99
|
+
}),
|
|
91
100
|
params: query,
|
|
92
|
-
data
|
|
101
|
+
data
|
|
93
102
|
});
|
|
94
103
|
}
|
|
95
104
|
|
|
@@ -102,18 +111,22 @@ function seatClassesFactory(_ref) {
|
|
|
102
111
|
* @param {Object} [opts.headers] - Optional headers
|
|
103
112
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
104
113
|
*/
|
|
105
|
-
function remove(
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
114
|
+
function remove({
|
|
115
|
+
token,
|
|
116
|
+
jwtToken,
|
|
117
|
+
id,
|
|
118
|
+
query = {},
|
|
119
|
+
headers
|
|
120
|
+
}) {
|
|
113
121
|
return client({
|
|
114
|
-
url:
|
|
122
|
+
url: `/seat-classes/${id}`,
|
|
115
123
|
method: "delete",
|
|
116
|
-
headers: authorizationHeaders({
|
|
124
|
+
headers: authorizationHeaders({
|
|
125
|
+
token,
|
|
126
|
+
jwtToken,
|
|
127
|
+
internalAuthTokenProvider,
|
|
128
|
+
headers
|
|
129
|
+
}),
|
|
117
130
|
params: query
|
|
118
131
|
});
|
|
119
132
|
}
|
|
@@ -127,30 +140,32 @@ function seatClassesFactory(_ref) {
|
|
|
127
140
|
* @param {Object} [opts.headers] - Optional headers
|
|
128
141
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
129
142
|
*/
|
|
130
|
-
function create(
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
143
|
+
function create({
|
|
144
|
+
token,
|
|
145
|
+
jwtToken,
|
|
146
|
+
data,
|
|
147
|
+
query = {},
|
|
148
|
+
headers
|
|
149
|
+
}) {
|
|
138
150
|
return client({
|
|
139
151
|
url: "/seat-classes",
|
|
140
152
|
method: "post",
|
|
141
|
-
headers: authorizationHeaders({
|
|
153
|
+
headers: authorizationHeaders({
|
|
154
|
+
token,
|
|
155
|
+
jwtToken,
|
|
156
|
+
internalAuthTokenProvider,
|
|
157
|
+
headers
|
|
158
|
+
}),
|
|
142
159
|
params: query,
|
|
143
|
-
data
|
|
160
|
+
data
|
|
144
161
|
});
|
|
145
162
|
}
|
|
146
|
-
|
|
147
163
|
return {
|
|
148
|
-
all
|
|
149
|
-
get
|
|
150
|
-
update
|
|
151
|
-
remove
|
|
152
|
-
create
|
|
164
|
+
all,
|
|
165
|
+
get,
|
|
166
|
+
update,
|
|
167
|
+
remove,
|
|
168
|
+
create
|
|
153
169
|
};
|
|
154
170
|
}
|
|
155
|
-
|
|
156
171
|
module.exports = seatClassesFactory;
|
|
@@ -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 /seat-fees (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -18,12 +17,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ all: function, get: function, create: function, update: function }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function seatfeesFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET /seat-fees - list seat fees.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -32,15 +29,18 @@ function seatfeesFactory(_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("/seat-fees", {
|
|
42
38
|
params: query,
|
|
43
|
-
headers: authorizationHeaders({
|
|
39
|
+
headers: authorizationHeaders({
|
|
40
|
+
token,
|
|
41
|
+
internalAuthTokenProvider,
|
|
42
|
+
headers
|
|
43
|
+
})
|
|
44
44
|
});
|
|
45
45
|
}
|
|
46
46
|
|
|
@@ -52,13 +52,17 @@ function seatfeesFactory(_ref) {
|
|
|
52
52
|
* @param {Object} [opts.headers] - Optional headers
|
|
53
53
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
54
54
|
*/
|
|
55
|
-
function get(
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
return client.get(
|
|
61
|
-
headers: authorizationHeaders({
|
|
55
|
+
function get({
|
|
56
|
+
seatfeeId,
|
|
57
|
+
token,
|
|
58
|
+
headers
|
|
59
|
+
}) {
|
|
60
|
+
return client.get(`/seat-fees/${seatfeeId}`, {
|
|
61
|
+
headers: authorizationHeaders({
|
|
62
|
+
token,
|
|
63
|
+
internalAuthTokenProvider,
|
|
64
|
+
headers
|
|
65
|
+
})
|
|
62
66
|
});
|
|
63
67
|
}
|
|
64
68
|
|
|
@@ -71,18 +75,23 @@ function seatfeesFactory(_ref) {
|
|
|
71
75
|
* @param {Object} [opts.headers] - Optional headers
|
|
72
76
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
73
77
|
*/
|
|
74
|
-
function create(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
78
|
+
function create({
|
|
79
|
+
jwtToken,
|
|
80
|
+
token,
|
|
81
|
+
seatfee,
|
|
82
|
+
headers
|
|
83
|
+
}) {
|
|
80
84
|
return client({
|
|
81
85
|
url: "/seat-fees",
|
|
82
86
|
method: "post",
|
|
83
|
-
headers: authorizationHeaders({
|
|
87
|
+
headers: authorizationHeaders({
|
|
88
|
+
token,
|
|
89
|
+
jwtToken,
|
|
90
|
+
internalAuthTokenProvider,
|
|
91
|
+
headers
|
|
92
|
+
}),
|
|
84
93
|
data: {
|
|
85
|
-
seatfee
|
|
94
|
+
seatfee
|
|
86
95
|
}
|
|
87
96
|
});
|
|
88
97
|
}
|
|
@@ -97,29 +106,32 @@ function seatfeesFactory(_ref) {
|
|
|
97
106
|
* @param {Object} [opts.headers] - Optional headers
|
|
98
107
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
99
108
|
*/
|
|
100
|
-
function update(
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
109
|
+
function update({
|
|
110
|
+
jwtToken,
|
|
111
|
+
token,
|
|
112
|
+
seatfeeId,
|
|
113
|
+
seatfee,
|
|
114
|
+
headers
|
|
115
|
+
}) {
|
|
107
116
|
return client({
|
|
108
|
-
url:
|
|
117
|
+
url: `/seat-fees/${seatfeeId}`,
|
|
109
118
|
method: "put",
|
|
110
|
-
headers: authorizationHeaders({
|
|
119
|
+
headers: authorizationHeaders({
|
|
120
|
+
token,
|
|
121
|
+
jwtToken,
|
|
122
|
+
internalAuthTokenProvider,
|
|
123
|
+
headers
|
|
124
|
+
}),
|
|
111
125
|
data: {
|
|
112
|
-
seatfee
|
|
126
|
+
seatfee
|
|
113
127
|
}
|
|
114
128
|
});
|
|
115
129
|
}
|
|
116
|
-
|
|
117
130
|
return {
|
|
118
|
-
all
|
|
119
|
-
get
|
|
120
|
-
create
|
|
121
|
-
update
|
|
131
|
+
all,
|
|
132
|
+
get,
|
|
133
|
+
create,
|
|
134
|
+
update
|
|
122
135
|
};
|
|
123
136
|
}
|
|
124
|
-
|
|
125
137
|
module.exports = seatfeesFactory;
|
|
@@ -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 /seatmaps (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -43,12 +42,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
43
42
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
44
43
|
* @returns {{ all: function, get: function, getById: function, create: function, remove: function, update: function, getOccupiedSeats: function }}
|
|
45
44
|
*/
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
51
|
-
|
|
45
|
+
function seatmapsFactory({
|
|
46
|
+
client,
|
|
47
|
+
internalAuthTokenProvider
|
|
48
|
+
}) {
|
|
52
49
|
/**
|
|
53
50
|
* GET /seatmaps - list seatmaps.
|
|
54
51
|
* @param {Object} opts
|
|
@@ -58,15 +55,18 @@ function seatmapsFactory(_ref) {
|
|
|
58
55
|
* @param {Object} [opts.headers] - Optional headers
|
|
59
56
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
60
57
|
*/
|
|
61
|
-
function all(
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
58
|
+
function all({
|
|
59
|
+
token,
|
|
60
|
+
query = {},
|
|
61
|
+
headers
|
|
62
|
+
}) {
|
|
67
63
|
return client.get("/seatmaps", {
|
|
68
64
|
params: query,
|
|
69
|
-
headers: authorizationHeaders({
|
|
65
|
+
headers: authorizationHeaders({
|
|
66
|
+
token,
|
|
67
|
+
internalAuthTokenProvider,
|
|
68
|
+
headers
|
|
69
|
+
})
|
|
70
70
|
});
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
@@ -82,19 +82,22 @@ function seatmapsFactory(_ref) {
|
|
|
82
82
|
* @param {Object} [opts.headers] - Optional headers
|
|
83
83
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
84
84
|
*/
|
|
85
|
-
function get(
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
return client.get("/seatmaps/" + seatmapId + "/available-seats/" + routeId + "/" + scheduleId + "/" + manifestDate, {
|
|
85
|
+
function get({
|
|
86
|
+
seatmapId,
|
|
87
|
+
routeId,
|
|
88
|
+
scheduleId,
|
|
89
|
+
manifestDate,
|
|
90
|
+
query = {},
|
|
91
|
+
token,
|
|
92
|
+
headers
|
|
93
|
+
}) {
|
|
94
|
+
return client.get(`/seatmaps/${seatmapId}/available-seats/${routeId}/${scheduleId}/${manifestDate}`, {
|
|
96
95
|
params: query,
|
|
97
|
-
headers: authorizationHeaders({
|
|
96
|
+
headers: authorizationHeaders({
|
|
97
|
+
token,
|
|
98
|
+
internalAuthTokenProvider,
|
|
99
|
+
headers
|
|
100
|
+
})
|
|
98
101
|
});
|
|
99
102
|
}
|
|
100
103
|
|
|
@@ -108,17 +111,21 @@ function seatmapsFactory(_ref) {
|
|
|
108
111
|
* @param {Object} [opts.headers] - Optional headers
|
|
109
112
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
110
113
|
*/
|
|
111
|
-
function getById(
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
return client.get("/seatmaps/" + seatmapId, {
|
|
114
|
+
function getById({
|
|
115
|
+
seatmapId,
|
|
116
|
+
token,
|
|
117
|
+
jwtToken,
|
|
118
|
+
query = {},
|
|
119
|
+
headers
|
|
120
|
+
}) {
|
|
121
|
+
return client.get(`/seatmaps/${seatmapId}`, {
|
|
120
122
|
params: query,
|
|
121
|
-
headers: authorizationHeaders({
|
|
123
|
+
headers: authorizationHeaders({
|
|
124
|
+
token,
|
|
125
|
+
jwtToken,
|
|
126
|
+
internalAuthTokenProvider,
|
|
127
|
+
headers
|
|
128
|
+
})
|
|
122
129
|
});
|
|
123
130
|
}
|
|
124
131
|
|
|
@@ -131,18 +138,23 @@ function seatmapsFactory(_ref) {
|
|
|
131
138
|
* @param {Object} [opts.headers] - Optional headers
|
|
132
139
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
133
140
|
*/
|
|
134
|
-
function create(
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
141
|
+
function create({
|
|
142
|
+
token,
|
|
143
|
+
jwtToken,
|
|
144
|
+
seatmap,
|
|
145
|
+
headers
|
|
146
|
+
}) {
|
|
140
147
|
return client({
|
|
141
148
|
url: "/seatmaps",
|
|
142
149
|
method: "post",
|
|
143
|
-
headers: authorizationHeaders({
|
|
150
|
+
headers: authorizationHeaders({
|
|
151
|
+
token,
|
|
152
|
+
jwtToken,
|
|
153
|
+
internalAuthTokenProvider,
|
|
154
|
+
headers
|
|
155
|
+
}),
|
|
144
156
|
data: {
|
|
145
|
-
seatmap
|
|
157
|
+
seatmap
|
|
146
158
|
}
|
|
147
159
|
});
|
|
148
160
|
}
|
|
@@ -157,19 +169,24 @@ function seatmapsFactory(_ref) {
|
|
|
157
169
|
* @param {Object} [opts.headers] - Optional headers
|
|
158
170
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
159
171
|
*/
|
|
160
|
-
function update(
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
172
|
+
function update({
|
|
173
|
+
token,
|
|
174
|
+
jwtToken,
|
|
175
|
+
seatmapId,
|
|
176
|
+
seatmap,
|
|
177
|
+
headers
|
|
178
|
+
}) {
|
|
167
179
|
return client({
|
|
168
|
-
url:
|
|
180
|
+
url: `/seatmaps/${seatmapId}`,
|
|
169
181
|
method: "put",
|
|
170
|
-
headers: authorizationHeaders({
|
|
182
|
+
headers: authorizationHeaders({
|
|
183
|
+
token,
|
|
184
|
+
jwtToken,
|
|
185
|
+
internalAuthTokenProvider,
|
|
186
|
+
headers
|
|
187
|
+
}),
|
|
171
188
|
data: {
|
|
172
|
-
seatmap
|
|
189
|
+
seatmap
|
|
173
190
|
}
|
|
174
191
|
});
|
|
175
192
|
}
|
|
@@ -183,16 +200,21 @@ function seatmapsFactory(_ref) {
|
|
|
183
200
|
* @param {Object} [opts.headers] - Optional headers
|
|
184
201
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
185
202
|
*/
|
|
186
|
-
function remove(
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
203
|
+
function remove({
|
|
204
|
+
token,
|
|
205
|
+
jwtToken,
|
|
206
|
+
seatmapId,
|
|
207
|
+
headers
|
|
208
|
+
}) {
|
|
192
209
|
return client({
|
|
193
|
-
url:
|
|
210
|
+
url: `/seatmaps/${seatmapId}`,
|
|
194
211
|
method: "delete",
|
|
195
|
-
headers: authorizationHeaders({
|
|
212
|
+
headers: authorizationHeaders({
|
|
213
|
+
token,
|
|
214
|
+
jwtToken,
|
|
215
|
+
internalAuthTokenProvider,
|
|
216
|
+
headers
|
|
217
|
+
})
|
|
196
218
|
});
|
|
197
219
|
}
|
|
198
220
|
|
|
@@ -206,29 +228,31 @@ function seatmapsFactory(_ref) {
|
|
|
206
228
|
* @param {Object} [opts.headers] - Optional headers
|
|
207
229
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
208
230
|
*/
|
|
209
|
-
function getOccupiedSeats(
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
return client.get("/seatmaps/" + seatmapId + "/occupied-seats", {
|
|
231
|
+
function getOccupiedSeats({
|
|
232
|
+
token,
|
|
233
|
+
jwtToken,
|
|
234
|
+
seatmapId,
|
|
235
|
+
query = {},
|
|
236
|
+
headers
|
|
237
|
+
}) {
|
|
238
|
+
return client.get(`/seatmaps/${seatmapId}/occupied-seats`, {
|
|
218
239
|
params: query,
|
|
219
|
-
headers: authorizationHeaders({
|
|
240
|
+
headers: authorizationHeaders({
|
|
241
|
+
token,
|
|
242
|
+
jwtToken,
|
|
243
|
+
internalAuthTokenProvider,
|
|
244
|
+
headers
|
|
245
|
+
})
|
|
220
246
|
});
|
|
221
247
|
}
|
|
222
|
-
|
|
223
248
|
return {
|
|
224
|
-
all
|
|
225
|
-
get
|
|
226
|
-
getById
|
|
227
|
-
create
|
|
228
|
-
remove
|
|
229
|
-
update
|
|
230
|
-
getOccupiedSeats
|
|
249
|
+
all,
|
|
250
|
+
get,
|
|
251
|
+
getById,
|
|
252
|
+
create,
|
|
253
|
+
remove,
|
|
254
|
+
update,
|
|
255
|
+
getOccupiedSeats
|
|
231
256
|
};
|
|
232
257
|
}
|
|
233
|
-
|
|
234
258
|
module.exports = seatmapsFactory;
|