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