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 max-len */
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
const {
|
|
3
|
+
authorizationHeaders
|
|
4
|
+
} = require("../endpoints_helpers.js");
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* Query params for GET /network/agencies (btrz-api-accounts). See get-agencies-handler getSpec().
|
|
@@ -18,13 +17,11 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ agencies: { all: function, get: function, update: function, create: function, removeProduct: function, removeFare: function, banks: function } }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
var agencies = {
|
|
20
|
+
function networkFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
24
|
+
const agencies = {
|
|
28
25
|
/**
|
|
29
26
|
* GET /network/agencies - list agencies (paginated). Query: name, page.
|
|
30
27
|
* @param {Object} opts
|
|
@@ -35,20 +32,23 @@ function networkFactory(_ref) {
|
|
|
35
32
|
* @returns {Promise<import("axios").AxiosResponse<{ agencies: Array, next?: string, previous?: string, count?: number }>>}
|
|
36
33
|
* Errors: 401, 500
|
|
37
34
|
*/
|
|
38
|
-
all
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
35
|
+
all({
|
|
36
|
+
token,
|
|
37
|
+
jwtToken,
|
|
38
|
+
query = {},
|
|
39
|
+
headers
|
|
40
|
+
}) {
|
|
45
41
|
return client({
|
|
46
42
|
url: "/network/agencies",
|
|
47
43
|
params: query,
|
|
48
|
-
headers: authorizationHeaders({
|
|
44
|
+
headers: authorizationHeaders({
|
|
45
|
+
token,
|
|
46
|
+
jwtToken,
|
|
47
|
+
internalAuthTokenProvider,
|
|
48
|
+
headers
|
|
49
|
+
})
|
|
49
50
|
});
|
|
50
51
|
},
|
|
51
|
-
|
|
52
52
|
/**
|
|
53
53
|
* GET /network/agencies/:agencyId - get an agency by id.
|
|
54
54
|
* @param {Object} opts
|
|
@@ -60,20 +60,24 @@ function networkFactory(_ref) {
|
|
|
60
60
|
* @returns {Promise<import("axios").AxiosResponse<{ agency: Object }>>}
|
|
61
61
|
* Errors: 400 (INVALID_AGENCY_ID), 401, 404 (AGENCY_NOT_FOUND), 500
|
|
62
62
|
*/
|
|
63
|
-
get
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
get({
|
|
64
|
+
token,
|
|
65
|
+
jwtToken,
|
|
66
|
+
query,
|
|
67
|
+
headers,
|
|
68
|
+
sellerId
|
|
69
|
+
}) {
|
|
70
70
|
return client({
|
|
71
|
-
url:
|
|
71
|
+
url: `/network/agencies/${sellerId}`,
|
|
72
72
|
params: query || {},
|
|
73
|
-
headers: authorizationHeaders({
|
|
73
|
+
headers: authorizationHeaders({
|
|
74
|
+
token,
|
|
75
|
+
jwtToken,
|
|
76
|
+
internalAuthTokenProvider,
|
|
77
|
+
headers
|
|
78
|
+
})
|
|
74
79
|
});
|
|
75
80
|
},
|
|
76
|
-
|
|
77
81
|
/**
|
|
78
82
|
* PUT /network/agencies/:sellerId - update an agency. API does not accept query params.
|
|
79
83
|
* @param {Object} opts
|
|
@@ -84,27 +88,29 @@ function networkFactory(_ref) {
|
|
|
84
88
|
* @param {Object} [opts.headers] - Optional headers
|
|
85
89
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
86
90
|
*/
|
|
87
|
-
update
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
91
|
+
update({
|
|
92
|
+
jwtToken,
|
|
93
|
+
token,
|
|
94
|
+
sellerId,
|
|
95
|
+
agency,
|
|
96
|
+
headers,
|
|
97
|
+
query
|
|
98
|
+
}) {
|
|
95
99
|
return client({
|
|
96
|
-
url:
|
|
100
|
+
url: `/network/agencies/${sellerId}`,
|
|
97
101
|
method: "put",
|
|
98
102
|
headers: authorizationHeaders({
|
|
99
|
-
token
|
|
103
|
+
token,
|
|
104
|
+
jwtToken,
|
|
105
|
+
internalAuthTokenProvider,
|
|
106
|
+
headers
|
|
100
107
|
}),
|
|
101
108
|
data: {
|
|
102
|
-
agency
|
|
109
|
+
agency
|
|
103
110
|
},
|
|
104
111
|
params: query
|
|
105
112
|
});
|
|
106
113
|
},
|
|
107
|
-
|
|
108
114
|
/**
|
|
109
115
|
* POST /network/agencies - create an agency.
|
|
110
116
|
* @param {Object} opts
|
|
@@ -114,24 +120,26 @@ function networkFactory(_ref) {
|
|
|
114
120
|
* @param {Object} [opts.headers] - Optional headers
|
|
115
121
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
116
122
|
*/
|
|
117
|
-
create
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
+
create({
|
|
124
|
+
jwtToken,
|
|
125
|
+
token,
|
|
126
|
+
agency,
|
|
127
|
+
headers
|
|
128
|
+
}) {
|
|
123
129
|
return client({
|
|
124
130
|
url: "/network/agencies",
|
|
125
131
|
method: "post",
|
|
126
132
|
headers: authorizationHeaders({
|
|
127
|
-
token
|
|
133
|
+
token,
|
|
134
|
+
jwtToken,
|
|
135
|
+
internalAuthTokenProvider,
|
|
136
|
+
headers
|
|
128
137
|
}),
|
|
129
138
|
data: {
|
|
130
|
-
agency
|
|
139
|
+
agency
|
|
131
140
|
}
|
|
132
141
|
});
|
|
133
142
|
},
|
|
134
|
-
|
|
135
143
|
/**
|
|
136
144
|
* PUT /network/agencies/remove-product - remove productId from all agencies for the account.
|
|
137
145
|
* @param {Object} opts
|
|
@@ -142,24 +150,26 @@ function networkFactory(_ref) {
|
|
|
142
150
|
* @returns {Promise<import("axios").AxiosResponse<{}>>}
|
|
143
151
|
* Errors: 400 (WRONG_DATA), 401, 500
|
|
144
152
|
*/
|
|
145
|
-
removeProduct
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
153
|
+
removeProduct({
|
|
154
|
+
token,
|
|
155
|
+
jwtToken,
|
|
156
|
+
productId,
|
|
157
|
+
headers
|
|
158
|
+
}) {
|
|
151
159
|
return client({
|
|
152
160
|
url: "/network/agencies/remove-product",
|
|
153
161
|
method: "put",
|
|
154
162
|
headers: authorizationHeaders({
|
|
155
|
-
token
|
|
163
|
+
token,
|
|
164
|
+
jwtToken,
|
|
165
|
+
internalAuthTokenProvider,
|
|
166
|
+
headers
|
|
156
167
|
}),
|
|
157
168
|
data: {
|
|
158
|
-
productId
|
|
169
|
+
productId
|
|
159
170
|
}
|
|
160
171
|
});
|
|
161
172
|
},
|
|
162
|
-
|
|
163
173
|
/**
|
|
164
174
|
* PUT /network/agencies/remove-fare - remove fareId from all agencies for the account.
|
|
165
175
|
* @param {Object} opts
|
|
@@ -170,24 +180,26 @@ function networkFactory(_ref) {
|
|
|
170
180
|
* @returns {Promise<import("axios").AxiosResponse<{}>>}
|
|
171
181
|
* Errors: 400 (WRONG_DATA), 401, 500
|
|
172
182
|
*/
|
|
173
|
-
removeFare
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
183
|
+
removeFare({
|
|
184
|
+
token,
|
|
185
|
+
jwtToken,
|
|
186
|
+
fareId,
|
|
187
|
+
headers
|
|
188
|
+
}) {
|
|
179
189
|
return client({
|
|
180
190
|
url: "/network/agencies/remove-fare",
|
|
181
191
|
method: "put",
|
|
182
192
|
headers: authorizationHeaders({
|
|
183
|
-
token
|
|
193
|
+
token,
|
|
194
|
+
jwtToken,
|
|
195
|
+
internalAuthTokenProvider,
|
|
196
|
+
headers
|
|
184
197
|
}),
|
|
185
198
|
data: {
|
|
186
|
-
fareId
|
|
199
|
+
fareId
|
|
187
200
|
}
|
|
188
201
|
});
|
|
189
202
|
},
|
|
190
|
-
|
|
191
203
|
/**
|
|
192
204
|
* GET /network/agencies/banks - provider banks available to the authenticated agency.
|
|
193
205
|
* Filtered by network.bankAccountNumbers for (sellerId, providerId).
|
|
@@ -199,23 +211,28 @@ function networkFactory(_ref) {
|
|
|
199
211
|
* @returns {Promise<import("axios").AxiosResponse<{ banks: Array }>>}
|
|
200
212
|
* Errors: 400 (MISSING_PROVIDER_ID, INVALID_PROVIDER_ID), 401, 404 (NETWORK_NOT_FOUND), 500
|
|
201
213
|
*/
|
|
202
|
-
banks
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
214
|
+
banks({
|
|
215
|
+
token,
|
|
216
|
+
jwtToken,
|
|
217
|
+
providerId,
|
|
218
|
+
headers
|
|
219
|
+
}) {
|
|
208
220
|
return client({
|
|
209
221
|
url: "/network/agencies/banks",
|
|
210
|
-
params: {
|
|
211
|
-
|
|
222
|
+
params: {
|
|
223
|
+
providerId
|
|
224
|
+
},
|
|
225
|
+
headers: authorizationHeaders({
|
|
226
|
+
token,
|
|
227
|
+
jwtToken,
|
|
228
|
+
internalAuthTokenProvider,
|
|
229
|
+
headers
|
|
230
|
+
})
|
|
212
231
|
});
|
|
213
232
|
}
|
|
214
233
|
};
|
|
215
|
-
|
|
216
234
|
return {
|
|
217
|
-
agencies
|
|
235
|
+
agencies
|
|
218
236
|
};
|
|
219
237
|
}
|
|
220
|
-
|
|
221
238
|
module.exports = networkFactory;
|
|
@@ -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 operation-settings API (btrz-api-accounts). Operation settings (manifest, schedule, preferences.operations).
|
|
@@ -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 operationSettingsFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /operation-settings – Get operation settings for the account.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -26,16 +23,21 @@ function operationSettingsFactory(_ref) {
|
|
|
26
23
|
* @param {Object} [opts.headers] - Optional headers
|
|
27
24
|
* @returns {Promise<import("axios").AxiosResponse<{ operationSettings: object }>>}
|
|
28
25
|
*/
|
|
29
|
-
function get(
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
26
|
+
function get({
|
|
27
|
+
token,
|
|
28
|
+
jwtToken,
|
|
29
|
+
query,
|
|
30
|
+
headers
|
|
31
|
+
}) {
|
|
35
32
|
return client({
|
|
36
33
|
url: "/operation-settings",
|
|
37
34
|
params: query,
|
|
38
|
-
headers: authorizationHeaders({
|
|
35
|
+
headers: authorizationHeaders({
|
|
36
|
+
token,
|
|
37
|
+
jwtToken,
|
|
38
|
+
internalAuthTokenProvider,
|
|
39
|
+
headers
|
|
40
|
+
})
|
|
39
41
|
});
|
|
40
42
|
}
|
|
41
43
|
|
|
@@ -50,28 +52,29 @@ function operationSettingsFactory(_ref) {
|
|
|
50
52
|
* @param {Object} [opts.headers] - Optional headers
|
|
51
53
|
* @returns {Promise<import("axios").AxiosResponse<{ operationSettings: object }>>}
|
|
52
54
|
*/
|
|
53
|
-
function update(
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
55
|
+
function update({
|
|
56
|
+
jwtToken,
|
|
57
|
+
token,
|
|
58
|
+
operationSettings,
|
|
59
|
+
headers
|
|
60
|
+
}) {
|
|
59
61
|
return client({
|
|
60
62
|
url: "/operation-settings",
|
|
61
63
|
method: "put",
|
|
62
64
|
headers: authorizationHeaders({
|
|
63
|
-
token
|
|
65
|
+
token,
|
|
66
|
+
jwtToken,
|
|
67
|
+
internalAuthTokenProvider,
|
|
68
|
+
headers
|
|
64
69
|
}),
|
|
65
70
|
data: {
|
|
66
|
-
operationSettings
|
|
71
|
+
operationSettings
|
|
67
72
|
}
|
|
68
73
|
});
|
|
69
74
|
}
|
|
70
|
-
|
|
71
75
|
return {
|
|
72
|
-
get
|
|
73
|
-
update
|
|
76
|
+
get,
|
|
77
|
+
update
|
|
74
78
|
};
|
|
75
79
|
}
|
|
76
|
-
|
|
77
80
|
module.exports = operationSettingsFactory;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
2
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
3
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
4
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
5
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5
6
|
/* eslint-disable max-len */
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
const {
|
|
8
|
+
authorizationHeaders
|
|
9
|
+
} = require("./../endpoints_helpers.js");
|
|
8
10
|
|
|
9
11
|
/**
|
|
10
12
|
* Query params for GET /people-lookups (btrz-api-accounts). Optional filters; when provided only matching people are returned.
|
|
@@ -30,12 +32,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
30
32
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
31
33
|
* @returns {{ all: function, getById: function, update: function, create: function, remove: function }}
|
|
32
34
|
*/
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
38
|
-
|
|
35
|
+
function peopleLookupsFactory({
|
|
36
|
+
client,
|
|
37
|
+
internalAuthTokenProvider
|
|
38
|
+
}) {
|
|
39
39
|
/**
|
|
40
40
|
* GET /people-lookups – list people lookups (paginated). Requires BETTEREZ_APP audience.
|
|
41
41
|
* @param {Object} opts
|
|
@@ -46,18 +46,25 @@ function peopleLookupsFactory(_ref) {
|
|
|
46
46
|
* @param {Object} [opts.headers] - Optional headers
|
|
47
47
|
* @returns {Promise<import("axios").AxiosResponse<{ people: object[], totalRecords: number, page?: number, pageSize?: number }>>}
|
|
48
48
|
*/
|
|
49
|
-
function all(
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
49
|
+
function all({
|
|
50
|
+
token,
|
|
51
|
+
jwtToken,
|
|
52
|
+
query,
|
|
53
|
+
headers,
|
|
54
|
+
providerId
|
|
55
|
+
}) {
|
|
56
|
+
const query_ = providerId ? _objectSpread(_objectSpread({}, query), {}, {
|
|
57
|
+
providerId
|
|
58
|
+
}) : query;
|
|
57
59
|
return client({
|
|
58
60
|
url: "/people-lookups",
|
|
59
61
|
params: query_,
|
|
60
|
-
headers: authorizationHeaders({
|
|
62
|
+
headers: authorizationHeaders({
|
|
63
|
+
token,
|
|
64
|
+
jwtToken,
|
|
65
|
+
internalAuthTokenProvider,
|
|
66
|
+
headers
|
|
67
|
+
})
|
|
61
68
|
});
|
|
62
69
|
}
|
|
63
70
|
|
|
@@ -72,20 +79,26 @@ function peopleLookupsFactory(_ref) {
|
|
|
72
79
|
* @param {Object} [opts.headers] - Optional headers
|
|
73
80
|
* @returns {Promise<import("axios").AxiosResponse<{ person: object }>>}
|
|
74
81
|
*/
|
|
75
|
-
function getById(
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
82
|
+
function getById({
|
|
83
|
+
token,
|
|
84
|
+
jwtToken,
|
|
85
|
+
query,
|
|
86
|
+
headers,
|
|
87
|
+
personId,
|
|
88
|
+
providerId
|
|
89
|
+
}) {
|
|
90
|
+
const query_ = providerId ? _objectSpread(_objectSpread({}, query), {}, {
|
|
91
|
+
providerId
|
|
92
|
+
}) : query;
|
|
85
93
|
return client({
|
|
86
|
-
url:
|
|
94
|
+
url: `/people-lookups/${personId}`,
|
|
87
95
|
params: query_,
|
|
88
|
-
headers: authorizationHeaders({
|
|
96
|
+
headers: authorizationHeaders({
|
|
97
|
+
token,
|
|
98
|
+
jwtToken,
|
|
99
|
+
internalAuthTokenProvider,
|
|
100
|
+
headers
|
|
101
|
+
})
|
|
89
102
|
});
|
|
90
103
|
}
|
|
91
104
|
|
|
@@ -100,25 +113,29 @@ function peopleLookupsFactory(_ref) {
|
|
|
100
113
|
* @param {Object} [opts.headers] - Optional headers
|
|
101
114
|
* @returns {Promise<import("axios").AxiosResponse<{ person: object }>>}
|
|
102
115
|
*/
|
|
103
|
-
function update(
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
116
|
+
function update({
|
|
117
|
+
jwtToken,
|
|
118
|
+
token,
|
|
119
|
+
personId,
|
|
120
|
+
person,
|
|
121
|
+
headers,
|
|
122
|
+
providerId
|
|
123
|
+
}) {
|
|
124
|
+
const query = providerId ? {
|
|
125
|
+
providerId
|
|
126
|
+
} : {};
|
|
113
127
|
return client({
|
|
114
|
-
url:
|
|
128
|
+
url: `/people-lookups/${personId}`,
|
|
115
129
|
method: "put",
|
|
116
130
|
headers: authorizationHeaders({
|
|
117
|
-
token
|
|
131
|
+
token,
|
|
132
|
+
jwtToken,
|
|
133
|
+
internalAuthTokenProvider,
|
|
134
|
+
headers
|
|
118
135
|
}),
|
|
119
136
|
params: query,
|
|
120
137
|
data: {
|
|
121
|
-
person
|
|
138
|
+
person
|
|
122
139
|
}
|
|
123
140
|
});
|
|
124
141
|
}
|
|
@@ -133,24 +150,28 @@ function peopleLookupsFactory(_ref) {
|
|
|
133
150
|
* @param {Object} [opts.headers] - Optional headers
|
|
134
151
|
* @returns {Promise<import("axios").AxiosResponse<{ person: object }>>}
|
|
135
152
|
*/
|
|
136
|
-
function create(
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
153
|
+
function create({
|
|
154
|
+
jwtToken,
|
|
155
|
+
token,
|
|
156
|
+
person,
|
|
157
|
+
headers,
|
|
158
|
+
providerId
|
|
159
|
+
}) {
|
|
160
|
+
const query = providerId ? {
|
|
161
|
+
providerId
|
|
162
|
+
} : {};
|
|
145
163
|
return client({
|
|
146
164
|
url: "/people-lookups",
|
|
147
165
|
method: "post",
|
|
148
166
|
headers: authorizationHeaders({
|
|
149
|
-
token
|
|
167
|
+
token,
|
|
168
|
+
jwtToken,
|
|
169
|
+
internalAuthTokenProvider,
|
|
170
|
+
headers
|
|
150
171
|
}),
|
|
151
172
|
params: query,
|
|
152
173
|
data: {
|
|
153
|
-
person
|
|
174
|
+
person
|
|
154
175
|
}
|
|
155
176
|
});
|
|
156
177
|
}
|
|
@@ -164,28 +185,29 @@ function peopleLookupsFactory(_ref) {
|
|
|
164
185
|
* @param {Object} [opts.headers] - Optional headers
|
|
165
186
|
* @returns {Promise<import("axios").AxiosResponse<{ personId: string }>>}
|
|
166
187
|
*/
|
|
167
|
-
function remove(
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
188
|
+
function remove({
|
|
189
|
+
personId,
|
|
190
|
+
token,
|
|
191
|
+
jwtToken,
|
|
192
|
+
headers
|
|
193
|
+
}) {
|
|
173
194
|
return client({
|
|
174
|
-
url:
|
|
195
|
+
url: `/people-lookups/${personId}`,
|
|
175
196
|
method: "delete",
|
|
176
197
|
headers: authorizationHeaders({
|
|
177
|
-
token
|
|
198
|
+
token,
|
|
199
|
+
jwtToken,
|
|
200
|
+
internalAuthTokenProvider,
|
|
201
|
+
headers
|
|
178
202
|
})
|
|
179
203
|
});
|
|
180
204
|
}
|
|
181
|
-
|
|
182
205
|
return {
|
|
183
|
-
all
|
|
184
|
-
getById
|
|
185
|
-
update
|
|
186
|
-
create
|
|
187
|
-
remove
|
|
206
|
+
all,
|
|
207
|
+
getById,
|
|
208
|
+
update,
|
|
209
|
+
create,
|
|
210
|
+
remove
|
|
188
211
|
};
|
|
189
212
|
}
|
|
190
|
-
|
|
191
213
|
module.exports = peopleLookupsFactory;
|