btrz-api-client 8.75.1 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +112 -85
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +258 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/operations/transactions.js +1 -1
- package/src/endpoints/sales/cart.js +31 -1
- package/test/endpoints/sales/cart.test.js +6 -0
- package/tools/build-standalone.mjs +15 -0
- package/.eslint-report.json +0 -1
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,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 /taxes (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -25,12 +24,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
25
24
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
26
25
|
* @returns {{ all: function, get: function, create: function, update: function, exceptions: object }}
|
|
27
26
|
*/
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
33
|
-
|
|
27
|
+
function taxesFactory({
|
|
28
|
+
client,
|
|
29
|
+
internalAuthTokenProvider
|
|
30
|
+
}) {
|
|
34
31
|
/**
|
|
35
32
|
* GET /taxes - list taxes.
|
|
36
33
|
* @param {Object} opts
|
|
@@ -40,15 +37,18 @@ function taxesFactory(_ref) {
|
|
|
40
37
|
* @param {Object} [opts.headers] - Optional headers
|
|
41
38
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
42
39
|
*/
|
|
43
|
-
function all(
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
40
|
+
function all({
|
|
41
|
+
token,
|
|
42
|
+
query = {},
|
|
43
|
+
headers
|
|
44
|
+
}) {
|
|
49
45
|
return client.get("/taxes", {
|
|
50
46
|
params: query,
|
|
51
|
-
headers: authorizationHeaders({
|
|
47
|
+
headers: authorizationHeaders({
|
|
48
|
+
token,
|
|
49
|
+
internalAuthTokenProvider,
|
|
50
|
+
headers
|
|
51
|
+
})
|
|
52
52
|
});
|
|
53
53
|
}
|
|
54
54
|
|
|
@@ -61,16 +61,19 @@ function taxesFactory(_ref) {
|
|
|
61
61
|
* @param {Object} [opts.headers] - Optional headers
|
|
62
62
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
63
63
|
*/
|
|
64
|
-
function get(
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
return client.get("/taxes/" + taxId, {
|
|
64
|
+
function get({
|
|
65
|
+
taxId,
|
|
66
|
+
token,
|
|
67
|
+
query = {},
|
|
68
|
+
headers
|
|
69
|
+
}) {
|
|
70
|
+
return client.get(`/taxes/${taxId}`, {
|
|
72
71
|
params: query,
|
|
73
|
-
headers: authorizationHeaders({
|
|
72
|
+
headers: authorizationHeaders({
|
|
73
|
+
token,
|
|
74
|
+
internalAuthTokenProvider,
|
|
75
|
+
headers
|
|
76
|
+
})
|
|
74
77
|
});
|
|
75
78
|
}
|
|
76
79
|
|
|
@@ -83,17 +86,24 @@ function taxesFactory(_ref) {
|
|
|
83
86
|
* @param {Object} [opts.headers] - Optional headers
|
|
84
87
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
85
88
|
*/
|
|
86
|
-
function create(
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
89
|
+
function create({
|
|
90
|
+
jwtToken,
|
|
91
|
+
tax,
|
|
92
|
+
token,
|
|
93
|
+
headers
|
|
94
|
+
}) {
|
|
92
95
|
return client({
|
|
93
96
|
url: "/taxes",
|
|
94
97
|
method: "post",
|
|
95
|
-
headers: authorizationHeaders({
|
|
96
|
-
|
|
98
|
+
headers: authorizationHeaders({
|
|
99
|
+
token,
|
|
100
|
+
jwtToken,
|
|
101
|
+
internalAuthTokenProvider,
|
|
102
|
+
headers
|
|
103
|
+
}),
|
|
104
|
+
data: {
|
|
105
|
+
tax
|
|
106
|
+
}
|
|
97
107
|
});
|
|
98
108
|
}
|
|
99
109
|
|
|
@@ -107,23 +117,30 @@ function taxesFactory(_ref) {
|
|
|
107
117
|
* @param {Object} [opts.headers] - Optional headers
|
|
108
118
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
109
119
|
*/
|
|
110
|
-
function update(
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
120
|
+
function update({
|
|
121
|
+
jwtToken,
|
|
122
|
+
token,
|
|
123
|
+
taxId,
|
|
124
|
+
tax,
|
|
125
|
+
headers
|
|
126
|
+
}) {
|
|
117
127
|
return client({
|
|
118
|
-
url:
|
|
128
|
+
url: `/taxes/${taxId}`,
|
|
119
129
|
method: "put",
|
|
120
|
-
headers: authorizationHeaders({
|
|
121
|
-
|
|
130
|
+
headers: authorizationHeaders({
|
|
131
|
+
token,
|
|
132
|
+
jwtToken,
|
|
133
|
+
internalAuthTokenProvider,
|
|
134
|
+
headers
|
|
135
|
+
}),
|
|
136
|
+
data: {
|
|
137
|
+
tax
|
|
138
|
+
}
|
|
122
139
|
});
|
|
123
140
|
}
|
|
124
141
|
|
|
125
142
|
/** @type {{ create: function, update: function, get: function, all: function, delete: function }} */
|
|
126
|
-
|
|
143
|
+
const exceptions = {
|
|
127
144
|
/**
|
|
128
145
|
* POST /taxes/exceptions - create tax exception.
|
|
129
146
|
* @param {Object} opts
|
|
@@ -133,20 +150,26 @@ function taxesFactory(_ref) {
|
|
|
133
150
|
* @param {Object} [opts.headers] - Optional headers
|
|
134
151
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
135
152
|
*/
|
|
136
|
-
create
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
153
|
+
create({
|
|
154
|
+
jwtToken,
|
|
155
|
+
token,
|
|
156
|
+
taxException,
|
|
157
|
+
headers
|
|
158
|
+
}) {
|
|
142
159
|
return client({
|
|
143
160
|
url: "/taxes/exceptions",
|
|
144
161
|
method: "post",
|
|
145
|
-
headers: authorizationHeaders({
|
|
146
|
-
|
|
162
|
+
headers: authorizationHeaders({
|
|
163
|
+
token,
|
|
164
|
+
jwtToken,
|
|
165
|
+
internalAuthTokenProvider,
|
|
166
|
+
headers
|
|
167
|
+
}),
|
|
168
|
+
data: {
|
|
169
|
+
taxException
|
|
170
|
+
}
|
|
147
171
|
});
|
|
148
172
|
},
|
|
149
|
-
|
|
150
173
|
/**
|
|
151
174
|
* PUT /taxes/exceptions/:taxExceptionId - update tax exception.
|
|
152
175
|
* @param {Object} opts
|
|
@@ -157,21 +180,27 @@ function taxesFactory(_ref) {
|
|
|
157
180
|
* @param {Object} [opts.headers] - Optional headers
|
|
158
181
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
159
182
|
*/
|
|
160
|
-
update
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
183
|
+
update({
|
|
184
|
+
jwtToken,
|
|
185
|
+
token,
|
|
186
|
+
taxExceptionId,
|
|
187
|
+
taxException,
|
|
188
|
+
headers
|
|
189
|
+
}) {
|
|
167
190
|
return client({
|
|
168
|
-
url:
|
|
191
|
+
url: `/taxes/exceptions/${taxExceptionId}`,
|
|
169
192
|
method: "put",
|
|
170
|
-
headers: authorizationHeaders({
|
|
171
|
-
|
|
193
|
+
headers: authorizationHeaders({
|
|
194
|
+
token,
|
|
195
|
+
jwtToken,
|
|
196
|
+
internalAuthTokenProvider,
|
|
197
|
+
headers
|
|
198
|
+
}),
|
|
199
|
+
data: {
|
|
200
|
+
taxException
|
|
201
|
+
}
|
|
172
202
|
});
|
|
173
203
|
},
|
|
174
|
-
|
|
175
204
|
/**
|
|
176
205
|
* GET /taxes/exceptions/:taxExceptionId - get tax exception.
|
|
177
206
|
* @param {Object} opts
|
|
@@ -181,18 +210,22 @@ function taxesFactory(_ref) {
|
|
|
181
210
|
* @param {Object} [opts.headers] - Optional headers
|
|
182
211
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
183
212
|
*/
|
|
184
|
-
get
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
213
|
+
get({
|
|
214
|
+
jwtToken,
|
|
215
|
+
token,
|
|
216
|
+
taxExceptionId,
|
|
217
|
+
headers
|
|
218
|
+
}) {
|
|
190
219
|
return client({
|
|
191
|
-
url:
|
|
192
|
-
headers: authorizationHeaders({
|
|
220
|
+
url: `/taxes/exceptions/${taxExceptionId}`,
|
|
221
|
+
headers: authorizationHeaders({
|
|
222
|
+
token,
|
|
223
|
+
jwtToken,
|
|
224
|
+
internalAuthTokenProvider,
|
|
225
|
+
headers
|
|
226
|
+
})
|
|
193
227
|
});
|
|
194
228
|
},
|
|
195
|
-
|
|
196
229
|
/**
|
|
197
230
|
* GET /taxes/exceptions - list tax exceptions.
|
|
198
231
|
* @param {Object} opts
|
|
@@ -201,20 +234,23 @@ function taxesFactory(_ref) {
|
|
|
201
234
|
* @param {Object} [opts.headers] - Optional headers
|
|
202
235
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
203
236
|
*/
|
|
204
|
-
all
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
237
|
+
all({
|
|
238
|
+
jwtToken,
|
|
239
|
+
token,
|
|
240
|
+
query = {},
|
|
241
|
+
headers
|
|
242
|
+
}) {
|
|
211
243
|
return client({
|
|
212
244
|
url: "/taxes/exceptions",
|
|
213
245
|
params: query,
|
|
214
|
-
headers: authorizationHeaders({
|
|
246
|
+
headers: authorizationHeaders({
|
|
247
|
+
token,
|
|
248
|
+
jwtToken,
|
|
249
|
+
internalAuthTokenProvider,
|
|
250
|
+
headers
|
|
251
|
+
})
|
|
215
252
|
});
|
|
216
253
|
},
|
|
217
|
-
|
|
218
254
|
/**
|
|
219
255
|
* DELETE /taxes/exceptions/:taxExceptionId - delete tax exception.
|
|
220
256
|
* @param {Object} opts
|
|
@@ -224,27 +260,30 @@ function taxesFactory(_ref) {
|
|
|
224
260
|
* @param {Object} [opts.headers] - Optional headers
|
|
225
261
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
226
262
|
*/
|
|
227
|
-
delete
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
263
|
+
delete({
|
|
264
|
+
jwtToken,
|
|
265
|
+
token,
|
|
266
|
+
taxExceptionId,
|
|
267
|
+
headers
|
|
268
|
+
}) {
|
|
233
269
|
return client({
|
|
234
|
-
url:
|
|
270
|
+
url: `/taxes/exceptions/${taxExceptionId}`,
|
|
235
271
|
method: "delete",
|
|
236
|
-
headers: authorizationHeaders({
|
|
272
|
+
headers: authorizationHeaders({
|
|
273
|
+
token,
|
|
274
|
+
jwtToken,
|
|
275
|
+
internalAuthTokenProvider,
|
|
276
|
+
headers
|
|
277
|
+
})
|
|
237
278
|
});
|
|
238
279
|
}
|
|
239
280
|
};
|
|
240
|
-
|
|
241
281
|
return {
|
|
242
|
-
all
|
|
243
|
-
get
|
|
244
|
-
create
|
|
245
|
-
update
|
|
246
|
-
exceptions
|
|
282
|
+
all,
|
|
283
|
+
get,
|
|
284
|
+
create,
|
|
285
|
+
update,
|
|
286
|
+
exceptions
|
|
247
287
|
};
|
|
248
288
|
}
|
|
249
|
-
|
|
250
289
|
module.exports = taxesFactory;
|
|
@@ -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 /travel-routes (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -17,12 +16,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
17
16
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
18
17
|
* @returns {{ all: function, get: function, create: function, update: function }}
|
|
19
18
|
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
25
|
-
|
|
19
|
+
function travelRoutesFactory({
|
|
20
|
+
client,
|
|
21
|
+
internalAuthTokenProvider
|
|
22
|
+
}) {
|
|
26
23
|
/**
|
|
27
24
|
* GET /travel-routes - list travel routes.
|
|
28
25
|
* @param {Object} opts
|
|
@@ -32,16 +29,20 @@ function travelRoutesFactory(_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
|
-
|
|
41
|
-
|
|
32
|
+
function all({
|
|
33
|
+
token,
|
|
34
|
+
jwtToken,
|
|
35
|
+
query = {},
|
|
36
|
+
headers
|
|
37
|
+
}) {
|
|
42
38
|
return client.get("/travel-routes", {
|
|
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,14 +55,19 @@ function travelRoutesFactory(_ref) {
|
|
|
54
55
|
* @param {Object} [opts.headers] - Optional headers
|
|
55
56
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
56
57
|
*/
|
|
57
|
-
function get(
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
return client.get(
|
|
64
|
-
headers: authorizationHeaders({
|
|
58
|
+
function get({
|
|
59
|
+
travelRouteId,
|
|
60
|
+
jwtToken,
|
|
61
|
+
token,
|
|
62
|
+
headers
|
|
63
|
+
}) {
|
|
64
|
+
return client.get(`/travel-routes/${travelRouteId}`, {
|
|
65
|
+
headers: authorizationHeaders({
|
|
66
|
+
token,
|
|
67
|
+
jwtToken,
|
|
68
|
+
internalAuthTokenProvider,
|
|
69
|
+
headers
|
|
70
|
+
})
|
|
65
71
|
});
|
|
66
72
|
}
|
|
67
73
|
|
|
@@ -74,18 +80,23 @@ function travelRoutesFactory(_ref) {
|
|
|
74
80
|
* @param {Object} [opts.headers] - Optional headers
|
|
75
81
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
76
82
|
*/
|
|
77
|
-
function create(
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
+
function create({
|
|
84
|
+
jwtToken,
|
|
85
|
+
token,
|
|
86
|
+
travelRoute,
|
|
87
|
+
headers
|
|
88
|
+
}) {
|
|
83
89
|
return client({
|
|
84
90
|
url: "/travel-routes",
|
|
85
91
|
method: "post",
|
|
86
|
-
headers: authorizationHeaders({
|
|
92
|
+
headers: authorizationHeaders({
|
|
93
|
+
token,
|
|
94
|
+
jwtToken,
|
|
95
|
+
internalAuthTokenProvider,
|
|
96
|
+
headers
|
|
97
|
+
}),
|
|
87
98
|
data: {
|
|
88
|
-
travelRoute
|
|
99
|
+
travelRoute
|
|
89
100
|
}
|
|
90
101
|
});
|
|
91
102
|
}
|
|
@@ -100,29 +111,32 @@ function travelRoutesFactory(_ref) {
|
|
|
100
111
|
* @param {Object} [opts.headers] - Optional headers
|
|
101
112
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
102
113
|
*/
|
|
103
|
-
function update(
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
114
|
+
function update({
|
|
115
|
+
jwtToken,
|
|
116
|
+
token,
|
|
117
|
+
travelRouteId,
|
|
118
|
+
travelRoute,
|
|
119
|
+
headers
|
|
120
|
+
}) {
|
|
110
121
|
return client({
|
|
111
|
-
url:
|
|
122
|
+
url: `/travel-routes/${travelRouteId}`,
|
|
112
123
|
method: "put",
|
|
113
|
-
headers: authorizationHeaders({
|
|
124
|
+
headers: authorizationHeaders({
|
|
125
|
+
token,
|
|
126
|
+
jwtToken,
|
|
127
|
+
internalAuthTokenProvider,
|
|
128
|
+
headers
|
|
129
|
+
}),
|
|
114
130
|
data: {
|
|
115
|
-
travelRoute
|
|
131
|
+
travelRoute
|
|
116
132
|
}
|
|
117
133
|
});
|
|
118
134
|
}
|
|
119
|
-
|
|
120
135
|
return {
|
|
121
|
-
all
|
|
122
|
-
get
|
|
123
|
-
create
|
|
124
|
-
update
|
|
136
|
+
all,
|
|
137
|
+
get,
|
|
138
|
+
create,
|
|
139
|
+
update
|
|
125
140
|
};
|
|
126
141
|
}
|
|
127
|
-
|
|
128
142
|
module.exports = travelRoutesFactory;
|
|
@@ -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 types API (btrz-api-inventory).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ all: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function travellerCardProvidersTypesFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /traveller-card-providers/types - list traveller card provider types (e.g. "custom", "caa"). No query or path params.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -25,19 +22,22 @@ function travellerCardProvidersTypesFactory(_ref) {
|
|
|
25
22
|
* @param {Object} [opts.headers] - Optional headers
|
|
26
23
|
* @returns {Promise<import("axios").AxiosResponse<{ travellerCardProviderTypes: Array<{ type: string, properties: Object }> }>>}
|
|
27
24
|
*/
|
|
28
|
-
function all(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
25
|
+
function all({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
headers
|
|
29
|
+
}) {
|
|
33
30
|
return client.get("/traveller-card-providers/types", {
|
|
34
|
-
headers: authorizationHeaders({
|
|
31
|
+
headers: authorizationHeaders({
|
|
32
|
+
token,
|
|
33
|
+
jwtToken,
|
|
34
|
+
internalAuthTokenProvider,
|
|
35
|
+
headers
|
|
36
|
+
})
|
|
35
37
|
});
|
|
36
38
|
}
|
|
37
|
-
|
|
38
39
|
return {
|
|
39
|
-
all
|
|
40
|
+
all
|
|
40
41
|
};
|
|
41
42
|
}
|
|
42
|
-
|
|
43
43
|
module.exports = travellerCardProvidersTypesFactory;
|