btrz-api-client 8.75.1 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +112 -85
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +258 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/operations/transactions.js +1 -1
- package/src/endpoints/sales/cart.js +31 -1
- package/test/endpoints/sales/cart.test.js +6 -0
- package/tools/build-standalone.mjs +15 -0
- package/.eslint-report.json +0 -1
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
authorizationHeaders = _require.authorizationHeaders;
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("./../endpoints_helpers.js");
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Query params for GET /operation-messages (btrz-api-inventory). See get-operation-messages getSpec().
|
|
@@ -24,12 +23,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
24
23
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
25
24
|
* @returns {{ get: function, all: function, create: function, update: function, remove: function, getByStation: function }}
|
|
26
25
|
*/
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
32
|
-
|
|
26
|
+
function operationMessagesFactory({
|
|
27
|
+
client,
|
|
28
|
+
internalAuthTokenProvider
|
|
29
|
+
}) {
|
|
33
30
|
/**
|
|
34
31
|
* GET /operation-messages - list operation messages.
|
|
35
32
|
* @param {Object} opts
|
|
@@ -39,17 +36,20 @@ function operationMessagesFactory(_ref) {
|
|
|
39
36
|
* @returns {Promise<import("axios").AxiosResponse<{ operationMessages: Object[], count?: number, next?: string, previous?: string }>>}
|
|
40
37
|
* @throws When the request fails (e.g. 401 Unauthorized, 500 Internal Server Error)
|
|
41
38
|
*/
|
|
42
|
-
function all(
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
39
|
+
function all({
|
|
40
|
+
token,
|
|
41
|
+
query = {},
|
|
42
|
+
headers
|
|
43
|
+
}) {
|
|
48
44
|
return client({
|
|
49
45
|
url: "/operation-messages",
|
|
50
46
|
method: "get",
|
|
51
47
|
params: query,
|
|
52
|
-
headers: authorizationHeaders({
|
|
48
|
+
headers: authorizationHeaders({
|
|
49
|
+
token,
|
|
50
|
+
internalAuthTokenProvider,
|
|
51
|
+
headers
|
|
52
|
+
})
|
|
53
53
|
});
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -63,16 +63,21 @@ function operationMessagesFactory(_ref) {
|
|
|
63
63
|
* @returns {Promise<import("axios").AxiosResponse<Object>>} Created OperationMessage
|
|
64
64
|
* @throws When the request fails (400, 401, 409 duplicate key, 500)
|
|
65
65
|
*/
|
|
66
|
-
function create(
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
66
|
+
function create({
|
|
67
|
+
token,
|
|
68
|
+
jwtToken,
|
|
69
|
+
opMsgData,
|
|
70
|
+
headers
|
|
71
|
+
}) {
|
|
72
72
|
return client({
|
|
73
73
|
url: "/operation-messages",
|
|
74
74
|
method: "post",
|
|
75
|
-
headers: authorizationHeaders({
|
|
75
|
+
headers: authorizationHeaders({
|
|
76
|
+
token,
|
|
77
|
+
jwtToken,
|
|
78
|
+
internalAuthTokenProvider,
|
|
79
|
+
headers
|
|
80
|
+
}),
|
|
76
81
|
data: opMsgData
|
|
77
82
|
});
|
|
78
83
|
}
|
|
@@ -88,17 +93,22 @@ function operationMessagesFactory(_ref) {
|
|
|
88
93
|
* @returns {Promise<import("axios").AxiosResponse<Object>>} Updated OperationMessage
|
|
89
94
|
* @throws When the request fails (400, 401, 404 NOT_FOUND, 500)
|
|
90
95
|
*/
|
|
91
|
-
function update(
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
function update({
|
|
97
|
+
token,
|
|
98
|
+
jwtToken,
|
|
99
|
+
operationMessageId,
|
|
100
|
+
opMsgData,
|
|
101
|
+
headers
|
|
102
|
+
}) {
|
|
98
103
|
return client({
|
|
99
|
-
url:
|
|
104
|
+
url: `/operation-messages/${operationMessageId}`,
|
|
100
105
|
method: "put",
|
|
101
|
-
headers: authorizationHeaders({
|
|
106
|
+
headers: authorizationHeaders({
|
|
107
|
+
token,
|
|
108
|
+
jwtToken,
|
|
109
|
+
internalAuthTokenProvider,
|
|
110
|
+
headers
|
|
111
|
+
}),
|
|
102
112
|
data: opMsgData
|
|
103
113
|
});
|
|
104
114
|
}
|
|
@@ -112,15 +122,19 @@ function operationMessagesFactory(_ref) {
|
|
|
112
122
|
* @returns {Promise<import("axios").AxiosResponse<Object>>} Response body is the OperationMessage
|
|
113
123
|
* @throws When the request fails (e.g. 401 Unauthorized, 404 NOT_FOUND, 500 Internal Server Error)
|
|
114
124
|
*/
|
|
115
|
-
function get(
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
125
|
+
function get({
|
|
126
|
+
token,
|
|
127
|
+
operationMessageId,
|
|
128
|
+
headers
|
|
129
|
+
}) {
|
|
120
130
|
return client({
|
|
121
|
-
url:
|
|
131
|
+
url: `/operation-messages/${operationMessageId}`,
|
|
122
132
|
method: "get",
|
|
123
|
-
headers: authorizationHeaders({
|
|
133
|
+
headers: authorizationHeaders({
|
|
134
|
+
token,
|
|
135
|
+
internalAuthTokenProvider,
|
|
136
|
+
headers
|
|
137
|
+
})
|
|
124
138
|
});
|
|
125
139
|
}
|
|
126
140
|
|
|
@@ -134,16 +148,21 @@ function operationMessagesFactory(_ref) {
|
|
|
134
148
|
* @returns {Promise<import("axios").AxiosResponse<void>>} 204 No Content on success
|
|
135
149
|
* @throws When the request fails (e.g. 401 Unauthorized, 404 NOT_FOUND, 500 Internal Server Error)
|
|
136
150
|
*/
|
|
137
|
-
function remove(
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
151
|
+
function remove({
|
|
152
|
+
jwtToken,
|
|
153
|
+
operationMessageId,
|
|
154
|
+
token,
|
|
155
|
+
headers
|
|
156
|
+
}) {
|
|
143
157
|
return client({
|
|
144
|
-
url:
|
|
158
|
+
url: `/operation-messages/${operationMessageId}`,
|
|
145
159
|
method: "delete",
|
|
146
|
-
headers: authorizationHeaders({
|
|
160
|
+
headers: authorizationHeaders({
|
|
161
|
+
token,
|
|
162
|
+
jwtToken,
|
|
163
|
+
internalAuthTokenProvider,
|
|
164
|
+
headers
|
|
165
|
+
})
|
|
147
166
|
});
|
|
148
167
|
}
|
|
149
168
|
|
|
@@ -157,28 +176,31 @@ function operationMessagesFactory(_ref) {
|
|
|
157
176
|
* @returns {Promise<import("axios").AxiosResponse<Object>>} Response body matches OperationMessagesStations schema
|
|
158
177
|
* @throws When the request fails (e.g. 400 INVALID_DATE_RANGE/INVALID_STATION, 401, 500)
|
|
159
178
|
*/
|
|
160
|
-
function getByStation(
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
179
|
+
function getByStation({
|
|
180
|
+
token,
|
|
181
|
+
jwtToken,
|
|
182
|
+
opMsgData,
|
|
183
|
+
headers
|
|
184
|
+
}) {
|
|
166
185
|
return client({
|
|
167
186
|
url: "/operation-messages-stations",
|
|
168
187
|
method: "post",
|
|
169
|
-
headers: authorizationHeaders({
|
|
188
|
+
headers: authorizationHeaders({
|
|
189
|
+
token,
|
|
190
|
+
jwtToken,
|
|
191
|
+
internalAuthTokenProvider,
|
|
192
|
+
headers
|
|
193
|
+
}),
|
|
170
194
|
data: opMsgData
|
|
171
195
|
});
|
|
172
196
|
}
|
|
173
|
-
|
|
174
197
|
return {
|
|
175
|
-
get
|
|
176
|
-
all
|
|
177
|
-
create
|
|
178
|
-
update
|
|
179
|
-
remove
|
|
180
|
-
getByStation
|
|
198
|
+
get,
|
|
199
|
+
all,
|
|
200
|
+
create,
|
|
201
|
+
update,
|
|
202
|
+
remove,
|
|
203
|
+
getByStation
|
|
181
204
|
};
|
|
182
205
|
}
|
|
183
|
-
|
|
184
206
|
module.exports = operationMessagesFactory;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
authorizationHeaders = _require.authorizationHeaders;
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("../endpoints_helpers.js");
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Query params for GET /operation-reasons (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -16,12 +15,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
16
15
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
17
16
|
* @returns {{ all: function, get: function, update: function, remove: function, create: function }}
|
|
18
17
|
*/
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
24
|
-
|
|
18
|
+
function operationReasonFactory({
|
|
19
|
+
client,
|
|
20
|
+
internalAuthTokenProvider
|
|
21
|
+
}) {
|
|
25
22
|
/**
|
|
26
23
|
* GET /operation-reasons - list operation reasons.
|
|
27
24
|
* @param {Object} opts
|
|
@@ -32,17 +29,21 @@ function operationReasonFactory(_ref) {
|
|
|
32
29
|
* @returns {Promise<import("axios").AxiosResponse<{ operationReasons: Object[], next?: string, previous?: string, count: number }>>}
|
|
33
30
|
* @throws When the request fails (e.g. 400 INVALID_PAGE, 401 Unauthorized, 500)
|
|
34
31
|
*/
|
|
35
|
-
function all(
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
32
|
+
function all({
|
|
33
|
+
token,
|
|
34
|
+
jwtToken,
|
|
35
|
+
query = {},
|
|
36
|
+
headers
|
|
37
|
+
}) {
|
|
42
38
|
return client({
|
|
43
39
|
url: "/operation-reasons",
|
|
44
40
|
method: "get",
|
|
45
|
-
headers: authorizationHeaders({
|
|
41
|
+
headers: authorizationHeaders({
|
|
42
|
+
token,
|
|
43
|
+
jwtToken,
|
|
44
|
+
internalAuthTokenProvider,
|
|
45
|
+
headers
|
|
46
|
+
}),
|
|
46
47
|
params: query
|
|
47
48
|
});
|
|
48
49
|
}
|
|
@@ -57,18 +58,22 @@ function operationReasonFactory(_ref) {
|
|
|
57
58
|
* @returns {Promise<import("axios").AxiosResponse<{ operationReason: Object }>>}
|
|
58
59
|
* @throws When the request fails (400 INVALID_OPERATION_REASON_ID, 401, 404 OPERATION_REASON_NOT_FOUND, 500)
|
|
59
60
|
*/
|
|
60
|
-
function get(
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
61
|
+
function get({
|
|
62
|
+
token,
|
|
63
|
+
jwtToken,
|
|
64
|
+
id,
|
|
65
|
+
query = {},
|
|
66
|
+
headers
|
|
67
|
+
}) {
|
|
68
68
|
return client({
|
|
69
|
-
url:
|
|
69
|
+
url: `/operation-reasons/${id}`,
|
|
70
70
|
method: "get",
|
|
71
|
-
headers: authorizationHeaders({
|
|
71
|
+
headers: authorizationHeaders({
|
|
72
|
+
token,
|
|
73
|
+
jwtToken,
|
|
74
|
+
internalAuthTokenProvider,
|
|
75
|
+
headers
|
|
76
|
+
}),
|
|
72
77
|
params: query
|
|
73
78
|
});
|
|
74
79
|
}
|
|
@@ -84,21 +89,27 @@ function operationReasonFactory(_ref) {
|
|
|
84
89
|
* @returns {Promise<import("axios").AxiosResponse<{ operationReason: Object }>>}
|
|
85
90
|
* @throws When the request fails (400 WRONG_DATA/INVALID_OPERATION_REASON_ID, 401, 404, 500)
|
|
86
91
|
*/
|
|
87
|
-
function update(
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
92
|
+
function update({
|
|
93
|
+
token,
|
|
94
|
+
jwtToken,
|
|
95
|
+
id,
|
|
96
|
+
operationReason,
|
|
97
|
+
query = {},
|
|
98
|
+
headers
|
|
99
|
+
}) {
|
|
96
100
|
return client({
|
|
97
|
-
url:
|
|
101
|
+
url: `/operation-reasons/${id}`,
|
|
98
102
|
method: "put",
|
|
99
|
-
headers: authorizationHeaders({
|
|
103
|
+
headers: authorizationHeaders({
|
|
104
|
+
token,
|
|
105
|
+
jwtToken,
|
|
106
|
+
internalAuthTokenProvider,
|
|
107
|
+
headers
|
|
108
|
+
}),
|
|
100
109
|
params: query,
|
|
101
|
-
data: {
|
|
110
|
+
data: {
|
|
111
|
+
operationReason
|
|
112
|
+
}
|
|
102
113
|
});
|
|
103
114
|
}
|
|
104
115
|
|
|
@@ -112,18 +123,22 @@ function operationReasonFactory(_ref) {
|
|
|
112
123
|
* @returns {Promise<import("axios").AxiosResponse<{ _id: string }>>}
|
|
113
124
|
* @throws When the request fails (400 INVALID_OPERATION_REASON_ID, 401, 404 OPERATION_REASON_NOT_FOUND, 500)
|
|
114
125
|
*/
|
|
115
|
-
function remove(
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
126
|
+
function remove({
|
|
127
|
+
token,
|
|
128
|
+
jwtToken,
|
|
129
|
+
id,
|
|
130
|
+
query = {},
|
|
131
|
+
headers
|
|
132
|
+
}) {
|
|
123
133
|
return client({
|
|
124
|
-
url:
|
|
134
|
+
url: `/operation-reasons/${id}`,
|
|
125
135
|
method: "delete",
|
|
126
|
-
headers: authorizationHeaders({
|
|
136
|
+
headers: authorizationHeaders({
|
|
137
|
+
token,
|
|
138
|
+
jwtToken,
|
|
139
|
+
internalAuthTokenProvider,
|
|
140
|
+
headers
|
|
141
|
+
}),
|
|
127
142
|
params: query
|
|
128
143
|
});
|
|
129
144
|
}
|
|
@@ -138,30 +153,34 @@ function operationReasonFactory(_ref) {
|
|
|
138
153
|
* @returns {Promise<import("axios").AxiosResponse<{ operationReason: Object }>>}
|
|
139
154
|
* @throws When the request fails (400 WRONG_DATA, 401, 409 CANNOT_CREATE_LEXICON_ENTRIES, 500)
|
|
140
155
|
*/
|
|
141
|
-
function create(
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
156
|
+
function create({
|
|
157
|
+
token,
|
|
158
|
+
jwtToken,
|
|
159
|
+
operationReason,
|
|
160
|
+
query = {},
|
|
161
|
+
headers
|
|
162
|
+
}) {
|
|
149
163
|
return client({
|
|
150
164
|
url: "/operation-reasons",
|
|
151
165
|
method: "post",
|
|
152
|
-
headers: authorizationHeaders({
|
|
166
|
+
headers: authorizationHeaders({
|
|
167
|
+
token,
|
|
168
|
+
jwtToken,
|
|
169
|
+
internalAuthTokenProvider,
|
|
170
|
+
headers
|
|
171
|
+
}),
|
|
153
172
|
params: query,
|
|
154
|
-
data: {
|
|
173
|
+
data: {
|
|
174
|
+
operationReason
|
|
175
|
+
}
|
|
155
176
|
});
|
|
156
177
|
}
|
|
157
|
-
|
|
158
178
|
return {
|
|
159
|
-
all
|
|
160
|
-
get
|
|
161
|
-
update
|
|
162
|
-
remove
|
|
163
|
-
create
|
|
179
|
+
all,
|
|
180
|
+
get,
|
|
181
|
+
update,
|
|
182
|
+
remove,
|
|
183
|
+
create
|
|
164
184
|
};
|
|
165
185
|
}
|
|
166
|
-
|
|
167
186
|
module.exports = operationReasonFactory;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
authorizationHeaders = _require.authorizationHeaders;
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("./../endpoints_helpers.js");
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Query params for GET /parcel-zones (btrz-api-inventory). See get-parcel-zones getSpec().
|
|
@@ -16,12 +15,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
16
15
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
17
16
|
* @returns {{ all: function, create: function, update: function }}
|
|
18
17
|
*/
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
24
|
-
|
|
18
|
+
function parcelZonesFactory({
|
|
19
|
+
client,
|
|
20
|
+
internalAuthTokenProvider
|
|
21
|
+
}) {
|
|
25
22
|
/**
|
|
26
23
|
* GET /parcel-zones - list parcel zones.
|
|
27
24
|
* @param {Object} opts
|
|
@@ -30,15 +27,18 @@ function parcelZonesFactory(_ref) {
|
|
|
30
27
|
* @param {Object} [opts.headers] - Optional headers
|
|
31
28
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
32
29
|
*/
|
|
33
|
-
function all(
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
30
|
+
function all({
|
|
31
|
+
token,
|
|
32
|
+
query = {},
|
|
33
|
+
headers
|
|
34
|
+
}) {
|
|
39
35
|
return client("/parcel-zones", {
|
|
40
36
|
params: query,
|
|
41
|
-
headers: authorizationHeaders({
|
|
37
|
+
headers: authorizationHeaders({
|
|
38
|
+
token,
|
|
39
|
+
internalAuthTokenProvider,
|
|
40
|
+
headers
|
|
41
|
+
})
|
|
42
42
|
});
|
|
43
43
|
}
|
|
44
44
|
|
|
@@ -51,17 +51,24 @@ function parcelZonesFactory(_ref) {
|
|
|
51
51
|
* @param {Object} [opts.headers] - Optional headers
|
|
52
52
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
53
53
|
*/
|
|
54
|
-
function create(
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
54
|
+
function create({
|
|
55
|
+
token,
|
|
56
|
+
parcelZone,
|
|
57
|
+
jwtToken,
|
|
58
|
+
headers
|
|
59
|
+
}) {
|
|
60
60
|
return client({
|
|
61
61
|
url: "/parcel-zones",
|
|
62
62
|
method: "post",
|
|
63
|
-
headers: authorizationHeaders({
|
|
64
|
-
|
|
63
|
+
headers: authorizationHeaders({
|
|
64
|
+
token,
|
|
65
|
+
jwtToken,
|
|
66
|
+
internalAuthTokenProvider,
|
|
67
|
+
headers
|
|
68
|
+
}),
|
|
69
|
+
data: {
|
|
70
|
+
parcelZone
|
|
71
|
+
}
|
|
65
72
|
});
|
|
66
73
|
}
|
|
67
74
|
|
|
@@ -75,26 +82,31 @@ function parcelZonesFactory(_ref) {
|
|
|
75
82
|
* @param {Object} [opts.headers] - Optional headers
|
|
76
83
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
77
84
|
*/
|
|
78
|
-
function update(
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
+
function update({
|
|
86
|
+
jwtToken,
|
|
87
|
+
token,
|
|
88
|
+
parcelZoneId,
|
|
89
|
+
parcelZone,
|
|
90
|
+
headers
|
|
91
|
+
}) {
|
|
85
92
|
return client({
|
|
86
|
-
url:
|
|
93
|
+
url: `/parcel-zone/${parcelZoneId}`,
|
|
87
94
|
method: "put",
|
|
88
|
-
headers: authorizationHeaders({
|
|
89
|
-
|
|
95
|
+
headers: authorizationHeaders({
|
|
96
|
+
token,
|
|
97
|
+
jwtToken,
|
|
98
|
+
internalAuthTokenProvider,
|
|
99
|
+
headers
|
|
100
|
+
}),
|
|
101
|
+
data: {
|
|
102
|
+
parcelZone
|
|
103
|
+
}
|
|
90
104
|
});
|
|
91
105
|
}
|
|
92
|
-
|
|
93
106
|
return {
|
|
94
|
-
all
|
|
95
|
-
create
|
|
96
|
-
update
|
|
107
|
+
all,
|
|
108
|
+
create,
|
|
109
|
+
update
|
|
97
110
|
};
|
|
98
111
|
}
|
|
99
|
-
|
|
100
112
|
module.exports = parcelZonesFactory;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
authorizationHeaders = _require.authorizationHeaders;
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("../endpoints_helpers.js");
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Query params for GET /pay-on-accounts (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -21,12 +20,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
21
20
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
22
21
|
* @returns {{ all: function }}
|
|
23
22
|
*/
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
29
|
-
|
|
23
|
+
function payOnAccountsFactory({
|
|
24
|
+
client,
|
|
25
|
+
internalAuthTokenProvider
|
|
26
|
+
}) {
|
|
30
27
|
/**
|
|
31
28
|
* GET /pay-on-accounts - list pay-on accounts. When format=csv returns CSV (text/csv); otherwise JSON with pagination.
|
|
32
29
|
* @param {Object} opts
|
|
@@ -38,25 +35,26 @@ function payOnAccountsFactory(_ref) {
|
|
|
38
35
|
* @returns {Promise<import("axios").AxiosResponse<{ payOnAccounts: Object[], next?: string, previous?: string, count: number }|string>>}
|
|
39
36
|
* @throws When the request fails (400 INVALID_PAGE/INVALID_FARE_IDS/INVALID_PROVIDER_ID/INVALID_SEARCH_TERM, 401, 500)
|
|
40
37
|
*/
|
|
41
|
-
function all(
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
headers = _ref2.headers;
|
|
49
|
-
|
|
38
|
+
function all({
|
|
39
|
+
token,
|
|
40
|
+
jwtToken,
|
|
41
|
+
query = {},
|
|
42
|
+
responseType = "json",
|
|
43
|
+
headers
|
|
44
|
+
}) {
|
|
50
45
|
return client.get("/pay-on-accounts", {
|
|
51
46
|
params: query,
|
|
52
|
-
responseType
|
|
53
|
-
headers: authorizationHeaders({
|
|
47
|
+
responseType,
|
|
48
|
+
headers: authorizationHeaders({
|
|
49
|
+
token,
|
|
50
|
+
jwtToken,
|
|
51
|
+
internalAuthTokenProvider,
|
|
52
|
+
headers
|
|
53
|
+
})
|
|
54
54
|
});
|
|
55
55
|
}
|
|
56
|
-
|
|
57
56
|
return {
|
|
58
|
-
all
|
|
57
|
+
all
|
|
59
58
|
};
|
|
60
59
|
}
|
|
61
|
-
|
|
62
60
|
module.exports = payOnAccountsFactory;
|