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 /lexicons/:lexiconCollectionId (btrz-api-accounts). See get-lexicons handler getSpec().
|
|
@@ -40,12 +39,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
40
39
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
41
40
|
* @returns {{ all: function, create: function, createOrUpdateMany: function, updateMany: function, getByText: function, suggestions: { list: function, getById: function, update: function, delete: function, create: function } }}
|
|
42
41
|
*/
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
48
|
-
|
|
42
|
+
function lexiconsFactory({
|
|
43
|
+
client,
|
|
44
|
+
internalAuthTokenProvider
|
|
45
|
+
}) {
|
|
49
46
|
/**
|
|
50
47
|
* GET /lexicons/buscompany – list account translations from buscompany collection. Query params from get-lexicons getSpec().
|
|
51
48
|
* @param {Object} opts
|
|
@@ -55,19 +52,23 @@ function lexiconsFactory(_ref) {
|
|
|
55
52
|
* @param {Object} [opts.headers] - Optional headers
|
|
56
53
|
* @returns {Promise<import("axios").AxiosResponse<{ lexicons: Array }>>}
|
|
57
54
|
*/
|
|
58
|
-
function all(
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
55
|
+
function all({
|
|
56
|
+
token,
|
|
57
|
+
context,
|
|
58
|
+
query = {},
|
|
59
|
+
headers
|
|
60
|
+
}) {
|
|
61
|
+
const queryObj = Object.assign({}, query, {
|
|
62
|
+
context
|
|
63
|
+
});
|
|
67
64
|
return client({
|
|
68
65
|
url: "lexicons/buscompany",
|
|
69
66
|
params: queryObj,
|
|
70
|
-
headers: authorizationHeaders({
|
|
67
|
+
headers: authorizationHeaders({
|
|
68
|
+
token,
|
|
69
|
+
internalAuthTokenProvider,
|
|
70
|
+
headers
|
|
71
|
+
})
|
|
71
72
|
});
|
|
72
73
|
}
|
|
73
74
|
|
|
@@ -80,16 +81,21 @@ function lexiconsFactory(_ref) {
|
|
|
80
81
|
* @param {Object} [opts.headers] - Optional headers
|
|
81
82
|
* @returns {Promise<import("axios").AxiosResponse<{ successes: Array, failures: Array }>>}
|
|
82
83
|
*/
|
|
83
|
-
function create(
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
84
|
+
function create({
|
|
85
|
+
token,
|
|
86
|
+
jwtToken,
|
|
87
|
+
lexiconEntries,
|
|
88
|
+
headers
|
|
89
|
+
}) {
|
|
89
90
|
return client({
|
|
90
91
|
url: "/lexicons",
|
|
91
92
|
method: "post",
|
|
92
|
-
headers: authorizationHeaders({
|
|
93
|
+
headers: authorizationHeaders({
|
|
94
|
+
token,
|
|
95
|
+
jwtToken,
|
|
96
|
+
internalAuthTokenProvider,
|
|
97
|
+
headers
|
|
98
|
+
}),
|
|
93
99
|
data: {
|
|
94
100
|
entries: lexiconEntries
|
|
95
101
|
}
|
|
@@ -105,20 +111,23 @@ function lexiconsFactory(_ref) {
|
|
|
105
111
|
* @param {Object} [opts.headers] - Optional headers
|
|
106
112
|
* @returns {Promise<import("axios").AxiosResponse<{ status: string, entries: Array }>>}
|
|
107
113
|
*/
|
|
108
|
-
function createOrUpdateMany(
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
+
function createOrUpdateMany({
|
|
115
|
+
token,
|
|
116
|
+
jwtToken,
|
|
117
|
+
entries,
|
|
118
|
+
headers
|
|
119
|
+
}) {
|
|
114
120
|
return client({
|
|
115
121
|
url: "/lexicons",
|
|
116
122
|
method: "put",
|
|
117
123
|
headers: authorizationHeaders({
|
|
118
|
-
token
|
|
124
|
+
token,
|
|
125
|
+
jwtToken,
|
|
126
|
+
internalAuthTokenProvider,
|
|
127
|
+
headers
|
|
119
128
|
}),
|
|
120
129
|
data: {
|
|
121
|
-
entries
|
|
130
|
+
entries
|
|
122
131
|
}
|
|
123
132
|
});
|
|
124
133
|
}
|
|
@@ -132,18 +141,23 @@ function lexiconsFactory(_ref) {
|
|
|
132
141
|
* @param {Object} [opts.headers] - Optional headers
|
|
133
142
|
* @returns {Promise<import("axios").AxiosResponse<{ entries: Array }>>}
|
|
134
143
|
*/
|
|
135
|
-
function updateMany(
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
144
|
+
function updateMany({
|
|
145
|
+
token,
|
|
146
|
+
jwtToken,
|
|
147
|
+
updates,
|
|
148
|
+
headers
|
|
149
|
+
}) {
|
|
141
150
|
return client({
|
|
142
151
|
url: "/lexicons",
|
|
143
152
|
method: "patch",
|
|
144
|
-
headers: authorizationHeaders({
|
|
153
|
+
headers: authorizationHeaders({
|
|
154
|
+
token,
|
|
155
|
+
jwtToken,
|
|
156
|
+
internalAuthTokenProvider,
|
|
157
|
+
headers
|
|
158
|
+
}),
|
|
145
159
|
data: {
|
|
146
|
-
updates
|
|
160
|
+
updates
|
|
147
161
|
}
|
|
148
162
|
});
|
|
149
163
|
}
|
|
@@ -158,21 +172,27 @@ function lexiconsFactory(_ref) {
|
|
|
158
172
|
* @param {Object} [opts.headers] - Optional request headers
|
|
159
173
|
* @returns {Promise<import("axios").AxiosResponse<{ lexiconTextContentItems: Array }>>}
|
|
160
174
|
*/
|
|
161
|
-
function getByText(
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
175
|
+
function getByText({
|
|
176
|
+
token,
|
|
177
|
+
jwtToken,
|
|
178
|
+
headers,
|
|
179
|
+
lang,
|
|
180
|
+
txt
|
|
181
|
+
}) {
|
|
168
182
|
return client({
|
|
169
|
-
url:
|
|
170
|
-
params: {
|
|
171
|
-
|
|
183
|
+
url: `/lexicons/${encodeURIComponent(lang)}/content`,
|
|
184
|
+
params: {
|
|
185
|
+
txt
|
|
186
|
+
},
|
|
187
|
+
headers: authorizationHeaders({
|
|
188
|
+
token,
|
|
189
|
+
jwtToken,
|
|
190
|
+
internalAuthTokenProvider,
|
|
191
|
+
headers
|
|
192
|
+
})
|
|
172
193
|
});
|
|
173
194
|
}
|
|
174
|
-
|
|
175
|
-
var suggestions = {
|
|
195
|
+
const suggestions = {
|
|
176
196
|
/**
|
|
177
197
|
* GET /lexicons/suggestions - list lexicon suggestions (or all accounts when super user params provided).
|
|
178
198
|
* @param {Object} opts
|
|
@@ -182,21 +202,23 @@ function lexiconsFactory(_ref) {
|
|
|
182
202
|
* @param {LexiconSuggestionsListQuery} [opts.params] - Query params: status, lang, key, superUserId, superUserHash
|
|
183
203
|
* @returns {Promise<{data: { suggestions: Array }}>}
|
|
184
204
|
*/
|
|
185
|
-
list
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
205
|
+
list({
|
|
206
|
+
token,
|
|
207
|
+
jwtToken,
|
|
208
|
+
headers,
|
|
209
|
+
params = {}
|
|
210
|
+
}) {
|
|
192
211
|
return client({
|
|
193
212
|
url: "/lexicons/suggestions",
|
|
194
|
-
params
|
|
195
|
-
headers: authorizationHeaders({
|
|
213
|
+
params,
|
|
214
|
+
headers: authorizationHeaders({
|
|
215
|
+
token,
|
|
216
|
+
jwtToken,
|
|
217
|
+
internalAuthTokenProvider,
|
|
218
|
+
headers
|
|
219
|
+
})
|
|
196
220
|
});
|
|
197
221
|
},
|
|
198
|
-
|
|
199
|
-
|
|
200
222
|
/**
|
|
201
223
|
* GET /lexicons/suggestions/:id - get a single lexicon suggestion by id.
|
|
202
224
|
* @param {Object} opts
|
|
@@ -207,22 +229,24 @@ function lexiconsFactory(_ref) {
|
|
|
207
229
|
* @param {LexiconSuggestionGetByIdQuery} [opts.params] - Query params: superUserId, superUserHash (to access any account's suggestion)
|
|
208
230
|
* @returns {Promise<{data: Object}>}
|
|
209
231
|
*/
|
|
210
|
-
getById
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
232
|
+
getById({
|
|
233
|
+
token,
|
|
234
|
+
jwtToken,
|
|
235
|
+
headers,
|
|
236
|
+
suggestionId,
|
|
237
|
+
params = {}
|
|
238
|
+
}) {
|
|
218
239
|
return client({
|
|
219
|
-
url:
|
|
220
|
-
params
|
|
221
|
-
headers: authorizationHeaders({
|
|
240
|
+
url: `/lexicons/suggestions/${suggestionId}`,
|
|
241
|
+
params,
|
|
242
|
+
headers: authorizationHeaders({
|
|
243
|
+
token,
|
|
244
|
+
jwtToken,
|
|
245
|
+
internalAuthTokenProvider,
|
|
246
|
+
headers
|
|
247
|
+
})
|
|
222
248
|
});
|
|
223
249
|
},
|
|
224
|
-
|
|
225
|
-
|
|
226
250
|
/**
|
|
227
251
|
* Update a lexicon suggestion (status and optional rejected_reason). Requires super user auth.
|
|
228
252
|
* @param {Object} opts
|
|
@@ -235,26 +259,32 @@ function lexiconsFactory(_ref) {
|
|
|
235
259
|
* @param {Object} [opts.headers] - Optional request headers
|
|
236
260
|
* @returns {Promise<{data: Object}>}
|
|
237
261
|
*/
|
|
238
|
-
update
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
262
|
+
update({
|
|
263
|
+
token,
|
|
264
|
+
jwtToken,
|
|
265
|
+
headers,
|
|
266
|
+
suggestionId,
|
|
267
|
+
data,
|
|
268
|
+
superUserId,
|
|
269
|
+
superUserHash
|
|
270
|
+
}) {
|
|
271
|
+
const params = {
|
|
272
|
+
superUserId,
|
|
273
|
+
superUserHash
|
|
274
|
+
};
|
|
248
275
|
return client({
|
|
249
|
-
url:
|
|
276
|
+
url: `/lexicons/suggestions/${suggestionId}`,
|
|
250
277
|
method: "put",
|
|
251
|
-
params
|
|
252
|
-
headers: authorizationHeaders({
|
|
253
|
-
|
|
278
|
+
params,
|
|
279
|
+
headers: authorizationHeaders({
|
|
280
|
+
token,
|
|
281
|
+
jwtToken,
|
|
282
|
+
internalAuthTokenProvider,
|
|
283
|
+
headers
|
|
284
|
+
}),
|
|
285
|
+
data
|
|
254
286
|
});
|
|
255
287
|
},
|
|
256
|
-
|
|
257
|
-
|
|
258
288
|
/**
|
|
259
289
|
* Delete a lexicon suggestion by id. Only suggestions with status "under review" can be deleted.
|
|
260
290
|
* @param {Object} opts
|
|
@@ -264,20 +294,23 @@ function lexiconsFactory(_ref) {
|
|
|
264
294
|
* @param {Object} [opts.headers] - Optional request headers
|
|
265
295
|
* @returns {Promise<{status: number}>} Resolves with 204 on success
|
|
266
296
|
*/
|
|
267
|
-
delete
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
297
|
+
delete({
|
|
298
|
+
token,
|
|
299
|
+
jwtToken,
|
|
300
|
+
headers,
|
|
301
|
+
suggestionId
|
|
302
|
+
}) {
|
|
273
303
|
return client({
|
|
274
|
-
url:
|
|
304
|
+
url: `/lexicons/suggestions/${suggestionId}`,
|
|
275
305
|
method: "delete",
|
|
276
|
-
headers: authorizationHeaders({
|
|
306
|
+
headers: authorizationHeaders({
|
|
307
|
+
token,
|
|
308
|
+
jwtToken,
|
|
309
|
+
internalAuthTokenProvider,
|
|
310
|
+
headers
|
|
311
|
+
})
|
|
277
312
|
});
|
|
278
313
|
},
|
|
279
|
-
|
|
280
|
-
|
|
281
314
|
/**
|
|
282
315
|
* Submit a translation suggestion for an existing lexicon key and language.
|
|
283
316
|
* @param {Object} opts
|
|
@@ -289,31 +322,34 @@ function lexiconsFactory(_ref) {
|
|
|
289
322
|
* @param {Object} [opts.headers] - Optional request headers
|
|
290
323
|
* @returns {Promise<{data: Object}>}
|
|
291
324
|
*/
|
|
292
|
-
create
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
325
|
+
create({
|
|
326
|
+
token,
|
|
327
|
+
jwtToken,
|
|
328
|
+
headers,
|
|
329
|
+
key,
|
|
330
|
+
lang,
|
|
331
|
+
data
|
|
332
|
+
}) {
|
|
300
333
|
return client({
|
|
301
|
-
url:
|
|
334
|
+
url: `/lexicons/${encodeURIComponent(key)}/${encodeURIComponent(lang)}/suggestion`,
|
|
302
335
|
method: "post",
|
|
303
|
-
headers: authorizationHeaders({
|
|
304
|
-
|
|
336
|
+
headers: authorizationHeaders({
|
|
337
|
+
token,
|
|
338
|
+
jwtToken,
|
|
339
|
+
internalAuthTokenProvider,
|
|
340
|
+
headers
|
|
341
|
+
}),
|
|
342
|
+
data
|
|
305
343
|
});
|
|
306
344
|
}
|
|
307
345
|
};
|
|
308
|
-
|
|
309
346
|
return {
|
|
310
|
-
all
|
|
311
|
-
create
|
|
312
|
-
createOrUpdateMany
|
|
313
|
-
updateMany
|
|
314
|
-
getByText
|
|
315
|
-
suggestions
|
|
347
|
+
all,
|
|
348
|
+
create,
|
|
349
|
+
createOrUpdateMany,
|
|
350
|
+
updateMany,
|
|
351
|
+
getByText,
|
|
352
|
+
suggestions
|
|
316
353
|
};
|
|
317
354
|
}
|
|
318
|
-
|
|
319
355
|
module.exports = lexiconsFactory;
|
|
@@ -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 market-pricing-settings API (btrz-api-accounts). Market pricing configuration (e.g. useOnlySpecificFareTable).
|
|
@@ -11,12 +10,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ get: function, update: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function marketPricingSettingsFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /market-pricing-settings – Get market pricing settings for the account.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -25,14 +22,19 @@ function marketPricingSettingsFactory(_ref) {
|
|
|
25
22
|
* @param {Object} [opts.headers] - Optional headers
|
|
26
23
|
* @returns {Promise<import("axios").AxiosResponse<{ marketPricingSettings: { useOnlySpecificFareTable: boolean, displayExpiredSchedulesInUI: boolean } }>>}
|
|
27
24
|
*/
|
|
28
|
-
function get(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
25
|
+
function get({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
headers
|
|
29
|
+
}) {
|
|
33
30
|
return client({
|
|
34
31
|
url: "/market-pricing-settings",
|
|
35
|
-
headers: authorizationHeaders({
|
|
32
|
+
headers: authorizationHeaders({
|
|
33
|
+
token,
|
|
34
|
+
jwtToken,
|
|
35
|
+
internalAuthTokenProvider,
|
|
36
|
+
headers
|
|
37
|
+
})
|
|
36
38
|
});
|
|
37
39
|
}
|
|
38
40
|
|
|
@@ -45,26 +47,27 @@ function marketPricingSettingsFactory(_ref) {
|
|
|
45
47
|
* @param {Object} [opts.headers] - Optional headers
|
|
46
48
|
* @returns {Promise<import("axios").AxiosResponse<{ marketPricingSettings: object }>>}
|
|
47
49
|
*/
|
|
48
|
-
function update(
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
50
|
+
function update({
|
|
51
|
+
token,
|
|
52
|
+
jwtToken,
|
|
53
|
+
marketPricingSettings,
|
|
54
|
+
headers
|
|
55
|
+
}) {
|
|
54
56
|
return client({
|
|
55
57
|
url: "/market-pricing-settings",
|
|
56
58
|
method: "put",
|
|
57
59
|
headers: authorizationHeaders({
|
|
58
|
-
token
|
|
60
|
+
token,
|
|
61
|
+
jwtToken,
|
|
62
|
+
internalAuthTokenProvider,
|
|
63
|
+
headers
|
|
59
64
|
}),
|
|
60
65
|
data: marketPricingSettings
|
|
61
66
|
});
|
|
62
67
|
}
|
|
63
|
-
|
|
64
68
|
return {
|
|
65
|
-
get
|
|
66
|
-
update
|
|
69
|
+
get,
|
|
70
|
+
update
|
|
67
71
|
};
|
|
68
72
|
}
|
|
69
|
-
|
|
70
73
|
module.exports = marketPricingSettingsFactory;
|
|
@@ -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 multiproduct-sales-settings API (btrz-api-accounts). Multi-product sales settings (product/station/fare/fareClass mappings).
|
|
@@ -11,12 +10,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ get: function, update: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function multiproductSalesSettingsFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /multiproduct-sales-settings – Get multi-product sales settings for the account.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -25,14 +22,19 @@ function multiproductSalesSettingsFactory(_ref) {
|
|
|
25
22
|
* @param {Object} [opts.headers] - Optional headers
|
|
26
23
|
* @returns {Promise<import("axios").AxiosResponse<{ multiProductSettings: object }>>}
|
|
27
24
|
*/
|
|
28
|
-
function get(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
25
|
+
function get({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
headers
|
|
29
|
+
}) {
|
|
33
30
|
return client({
|
|
34
31
|
url: "/multiproduct-sales-settings",
|
|
35
|
-
headers: authorizationHeaders({
|
|
32
|
+
headers: authorizationHeaders({
|
|
33
|
+
token,
|
|
34
|
+
jwtToken,
|
|
35
|
+
internalAuthTokenProvider,
|
|
36
|
+
headers
|
|
37
|
+
})
|
|
36
38
|
});
|
|
37
39
|
}
|
|
38
40
|
|
|
@@ -49,24 +51,27 @@ function multiproductSalesSettingsFactory(_ref) {
|
|
|
49
51
|
* @param {Object} [opts.headers] - Optional headers
|
|
50
52
|
* @returns {Promise<import("axios").AxiosResponse<{ multiProductSettings: object }>>}
|
|
51
53
|
*/
|
|
52
|
-
function update(
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
54
|
+
function update({
|
|
55
|
+
token,
|
|
56
|
+
jwtToken,
|
|
57
|
+
data,
|
|
58
|
+
headers
|
|
59
|
+
}) {
|
|
58
60
|
return client({
|
|
59
61
|
url: "/multiproduct-sales-settings",
|
|
60
62
|
method: "put",
|
|
61
|
-
headers: authorizationHeaders({
|
|
62
|
-
|
|
63
|
+
headers: authorizationHeaders({
|
|
64
|
+
token,
|
|
65
|
+
jwtToken,
|
|
66
|
+
internalAuthTokenProvider,
|
|
67
|
+
headers
|
|
68
|
+
}),
|
|
69
|
+
data
|
|
63
70
|
});
|
|
64
71
|
}
|
|
65
|
-
|
|
66
72
|
return {
|
|
67
|
-
get
|
|
68
|
-
update
|
|
73
|
+
get,
|
|
74
|
+
update
|
|
69
75
|
};
|
|
70
76
|
}
|
|
71
|
-
|
|
72
77
|
module.exports = multiproductSalesSettingsFactory;
|