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,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 /parcels-manifests (btrz-api-operations getSpec).
|
|
@@ -24,12 +23,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
24
23
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
25
24
|
* @returns {Object} parcels-manifests API (all, get, create, parcels, vehicles)
|
|
26
25
|
*/
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
32
|
-
|
|
26
|
+
function parcelsManifestsFactory({
|
|
27
|
+
client,
|
|
28
|
+
internalAuthTokenProvider
|
|
29
|
+
}) {
|
|
33
30
|
/**
|
|
34
31
|
* GET /parcels-manifests - list parcels manifests for the account.
|
|
35
32
|
* @param {Object} opts
|
|
@@ -39,15 +36,20 @@ function parcelsManifestsFactory(_ref) {
|
|
|
39
36
|
* @param {Object} [opts.headers] - Optional request headers
|
|
40
37
|
* @returns {Promise<import("axios").AxiosResponse>} GetParcelManifestsResponse; 400 WRONG_DATA, 401 Unauthorized
|
|
41
38
|
*/
|
|
42
|
-
function all(
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
39
|
+
function all({
|
|
40
|
+
token,
|
|
41
|
+
jwtToken,
|
|
42
|
+
query,
|
|
43
|
+
headers
|
|
44
|
+
}) {
|
|
48
45
|
return client({
|
|
49
46
|
url: "/parcels-manifests",
|
|
50
|
-
headers: authorizationHeaders({
|
|
47
|
+
headers: authorizationHeaders({
|
|
48
|
+
token,
|
|
49
|
+
jwtToken,
|
|
50
|
+
internalAuthTokenProvider,
|
|
51
|
+
headers
|
|
52
|
+
}),
|
|
51
53
|
params: query
|
|
52
54
|
});
|
|
53
55
|
}
|
|
@@ -62,18 +64,25 @@ function parcelsManifestsFactory(_ref) {
|
|
|
62
64
|
* @param {Object} [opts.headers] - Optional request headers
|
|
63
65
|
* @returns {Promise<import("axios").AxiosResponse>} response.data parcel manifest; 400 WRONG_DATA; 404 MANIFEST_NOT_FOUND, PARCELMANIFEST_NOT_FOUND
|
|
64
66
|
*/
|
|
65
|
-
function get(
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
67
|
+
function get({
|
|
68
|
+
token,
|
|
69
|
+
jwtToken,
|
|
70
|
+
id,
|
|
71
|
+
format,
|
|
72
|
+
headers
|
|
73
|
+
}) {
|
|
72
74
|
return client({
|
|
73
|
-
url:
|
|
75
|
+
url: `/parcels-manifests/${id}`,
|
|
74
76
|
method: "get",
|
|
75
|
-
headers: authorizationHeaders({
|
|
76
|
-
|
|
77
|
+
headers: authorizationHeaders({
|
|
78
|
+
token,
|
|
79
|
+
jwtToken,
|
|
80
|
+
internalAuthTokenProvider,
|
|
81
|
+
headers
|
|
82
|
+
}),
|
|
83
|
+
params: format != null ? {
|
|
84
|
+
format
|
|
85
|
+
} : undefined
|
|
77
86
|
});
|
|
78
87
|
}
|
|
79
88
|
|
|
@@ -88,24 +97,27 @@ function parcelsManifestsFactory(_ref) {
|
|
|
88
97
|
* @param {Object} [opts.headers] - Optional request headers
|
|
89
98
|
* @returns {Promise<import("axios").AxiosResponse>} response.data NewParcelManifestResponse; 404, 409 on validation errors
|
|
90
99
|
*/
|
|
91
|
-
function create(
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
100
|
+
function create({
|
|
101
|
+
token,
|
|
102
|
+
jwtToken,
|
|
103
|
+
query = {},
|
|
104
|
+
data,
|
|
105
|
+
headers
|
|
106
|
+
}) {
|
|
99
107
|
return client({
|
|
100
108
|
url: "/parcels-manifests",
|
|
101
109
|
method: "post",
|
|
102
|
-
headers: authorizationHeaders({
|
|
110
|
+
headers: authorizationHeaders({
|
|
111
|
+
token,
|
|
112
|
+
jwtToken,
|
|
113
|
+
internalAuthTokenProvider,
|
|
114
|
+
headers
|
|
115
|
+
}),
|
|
103
116
|
params: query,
|
|
104
|
-
data
|
|
117
|
+
data
|
|
105
118
|
});
|
|
106
119
|
}
|
|
107
|
-
|
|
108
|
-
var parcels = {
|
|
120
|
+
const parcels = {
|
|
109
121
|
/**
|
|
110
122
|
* DELETE /parcels-manifests/:manifestId/parcels/:parcelId - remove parcel from manifest. API does not accept query params.
|
|
111
123
|
* @param {Object} opts
|
|
@@ -116,20 +128,24 @@ function parcelsManifestsFactory(_ref) {
|
|
|
116
128
|
* @param {Object} [opts.headers] - Optional request headers
|
|
117
129
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
118
130
|
*/
|
|
119
|
-
remove
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
131
|
+
remove({
|
|
132
|
+
token,
|
|
133
|
+
jwtToken,
|
|
134
|
+
manifestId,
|
|
135
|
+
parcelId,
|
|
136
|
+
headers
|
|
137
|
+
}) {
|
|
126
138
|
return client({
|
|
127
|
-
url:
|
|
139
|
+
url: `/parcels-manifests/${manifestId}/parcels/${parcelId}`,
|
|
128
140
|
method: "delete",
|
|
129
|
-
headers: authorizationHeaders({
|
|
141
|
+
headers: authorizationHeaders({
|
|
142
|
+
token,
|
|
143
|
+
jwtToken,
|
|
144
|
+
internalAuthTokenProvider,
|
|
145
|
+
headers
|
|
146
|
+
})
|
|
130
147
|
});
|
|
131
148
|
},
|
|
132
|
-
|
|
133
149
|
/**
|
|
134
150
|
* POST /parcels-manifests/:manifestId/parcels - create parcel on manifest. API does not accept query params.
|
|
135
151
|
* @param {Object} opts
|
|
@@ -140,26 +156,29 @@ function parcelsManifestsFactory(_ref) {
|
|
|
140
156
|
* @param {Object} [opts.headers] - Optional request headers
|
|
141
157
|
* @returns {Promise<import("axios").AxiosResponse>} PostParcelsManifestsResponse; 400 WRONG_DATA, 404, 409 CAN_ADD_PARCEL_TO_MANIFEST_BECAUSE_OF_CUTOFF
|
|
142
158
|
*/
|
|
143
|
-
create
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
159
|
+
create({
|
|
160
|
+
token,
|
|
161
|
+
jwtToken,
|
|
162
|
+
manifestId,
|
|
163
|
+
query = {},
|
|
164
|
+
data,
|
|
165
|
+
headers
|
|
166
|
+
}) {
|
|
152
167
|
return client({
|
|
153
|
-
url:
|
|
168
|
+
url: `/parcels-manifests/${manifestId}/parcels`,
|
|
154
169
|
method: "post",
|
|
155
|
-
headers: authorizationHeaders({
|
|
170
|
+
headers: authorizationHeaders({
|
|
171
|
+
token,
|
|
172
|
+
jwtToken,
|
|
173
|
+
internalAuthTokenProvider,
|
|
174
|
+
headers
|
|
175
|
+
}),
|
|
156
176
|
params: query,
|
|
157
|
-
data
|
|
177
|
+
data
|
|
158
178
|
});
|
|
159
179
|
}
|
|
160
180
|
};
|
|
161
|
-
|
|
162
|
-
var vehicles = {
|
|
181
|
+
const vehicles = {
|
|
163
182
|
/**
|
|
164
183
|
* POST /parcels-manifests/:manifestId/vehicles - create or update vehicle on manifest. API does not accept query params.
|
|
165
184
|
* @param {Object} opts
|
|
@@ -170,19 +189,23 @@ function parcelsManifestsFactory(_ref) {
|
|
|
170
189
|
* @param {Object} [opts.headers] - Optional request headers
|
|
171
190
|
* @returns {Promise<import("axios").AxiosResponse>} PostVehicleManifestsResponse; 400 WRONG_DATA, 404 MANIFEST_NOT_FOUND, 409 MANIFEST_HAS_PASSENGERS
|
|
172
191
|
*/
|
|
173
|
-
createOrUpdate
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
192
|
+
createOrUpdate({
|
|
193
|
+
token,
|
|
194
|
+
jwtToken,
|
|
195
|
+
manifestId,
|
|
196
|
+
query = {},
|
|
197
|
+
data,
|
|
198
|
+
headers
|
|
199
|
+
}) {
|
|
182
200
|
return client({
|
|
183
|
-
url:
|
|
201
|
+
url: `/parcels-manifests/${manifestId}/vehicles`,
|
|
184
202
|
method: "post",
|
|
185
|
-
headers: authorizationHeaders({
|
|
203
|
+
headers: authorizationHeaders({
|
|
204
|
+
token,
|
|
205
|
+
jwtToken,
|
|
206
|
+
internalAuthTokenProvider,
|
|
207
|
+
headers
|
|
208
|
+
}),
|
|
186
209
|
params: query,
|
|
187
210
|
data: {
|
|
188
211
|
parcelManifestVehicle: data
|
|
@@ -190,14 +213,12 @@ function parcelsManifestsFactory(_ref) {
|
|
|
190
213
|
});
|
|
191
214
|
}
|
|
192
215
|
};
|
|
193
|
-
|
|
194
216
|
return {
|
|
195
|
-
all
|
|
196
|
-
get
|
|
197
|
-
create
|
|
198
|
-
parcels
|
|
199
|
-
vehicles
|
|
217
|
+
all,
|
|
218
|
+
get,
|
|
219
|
+
create,
|
|
220
|
+
parcels,
|
|
221
|
+
vehicles
|
|
200
222
|
};
|
|
201
223
|
}
|
|
202
|
-
|
|
203
224
|
module.exports = parcelsManifestsFactory;
|
|
@@ -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 /passenger-check-in-info (btrz-api-operations getSpec).
|
|
@@ -18,12 +17,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {Object} passenger-check-in-info API methods
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function passengerCheckInInfoFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET /passenger-check-in-info - list passenger check-in info by document.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -33,15 +30,20 @@ function passengerCheckInInfoFactory(_ref) {
|
|
|
33
30
|
* @param {Object} [opts.headers] - Optional request headers
|
|
34
31
|
* @returns {Promise<import("axios").AxiosResponse>} GetPassengerCheckInInfoResponse; 400 WRONG_DATA, INVALID_DOCUMENTTYPE_ID
|
|
35
32
|
*/
|
|
36
|
-
function all(
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
33
|
+
function all({
|
|
34
|
+
token,
|
|
35
|
+
jwtToken,
|
|
36
|
+
query,
|
|
37
|
+
headers
|
|
38
|
+
}) {
|
|
42
39
|
return client({
|
|
43
40
|
url: "/passenger-check-in-info",
|
|
44
|
-
headers: authorizationHeaders({
|
|
41
|
+
headers: authorizationHeaders({
|
|
42
|
+
token,
|
|
43
|
+
jwtToken,
|
|
44
|
+
internalAuthTokenProvider,
|
|
45
|
+
headers
|
|
46
|
+
}),
|
|
45
47
|
params: query
|
|
46
48
|
});
|
|
47
49
|
}
|
|
@@ -55,16 +57,21 @@ function passengerCheckInInfoFactory(_ref) {
|
|
|
55
57
|
* @param {Object} [opts.headers] - Optional request headers
|
|
56
58
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
57
59
|
*/
|
|
58
|
-
function get(
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
60
|
+
function get({
|
|
61
|
+
token,
|
|
62
|
+
jwtToken,
|
|
63
|
+
id,
|
|
64
|
+
headers
|
|
65
|
+
}) {
|
|
64
66
|
return client({
|
|
65
|
-
url:
|
|
67
|
+
url: `/passenger-check-in-info/${id}`,
|
|
66
68
|
method: "get",
|
|
67
|
-
headers: authorizationHeaders({
|
|
69
|
+
headers: authorizationHeaders({
|
|
70
|
+
token,
|
|
71
|
+
jwtToken,
|
|
72
|
+
internalAuthTokenProvider,
|
|
73
|
+
headers
|
|
74
|
+
})
|
|
68
75
|
});
|
|
69
76
|
}
|
|
70
77
|
|
|
@@ -78,20 +85,25 @@ function passengerCheckInInfoFactory(_ref) {
|
|
|
78
85
|
* @param {Object} [opts.headers] - Optional request headers
|
|
79
86
|
* @returns {Promise<import("axios").AxiosResponse>} 404 PASSENGERCHECKININFO_NOT_FOUND
|
|
80
87
|
*/
|
|
81
|
-
function update(
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
88
|
+
function update({
|
|
89
|
+
token,
|
|
90
|
+
jwtToken,
|
|
91
|
+
id,
|
|
92
|
+
data,
|
|
93
|
+
headers,
|
|
94
|
+
query
|
|
95
|
+
}) {
|
|
89
96
|
return client({
|
|
90
|
-
url:
|
|
97
|
+
url: `/passenger-check-in-info/${id}`,
|
|
91
98
|
method: "put",
|
|
92
99
|
params: query,
|
|
93
|
-
headers: authorizationHeaders({
|
|
94
|
-
|
|
100
|
+
headers: authorizationHeaders({
|
|
101
|
+
token,
|
|
102
|
+
jwtToken,
|
|
103
|
+
internalAuthTokenProvider,
|
|
104
|
+
headers
|
|
105
|
+
}),
|
|
106
|
+
data
|
|
95
107
|
});
|
|
96
108
|
}
|
|
97
109
|
|
|
@@ -112,30 +124,32 @@ function passengerCheckInInfoFactory(_ref) {
|
|
|
112
124
|
* @param {Object} [opts.headers] - Optional request headers
|
|
113
125
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
114
126
|
*/
|
|
115
|
-
function create(
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
127
|
+
function create({
|
|
128
|
+
token,
|
|
129
|
+
jwtToken,
|
|
130
|
+
query = {},
|
|
131
|
+
data,
|
|
132
|
+
headers
|
|
133
|
+
}) {
|
|
123
134
|
return client({
|
|
124
135
|
url: "/passenger-check-in-info",
|
|
125
136
|
method: "post",
|
|
126
|
-
headers: authorizationHeaders({
|
|
137
|
+
headers: authorizationHeaders({
|
|
138
|
+
token,
|
|
139
|
+
jwtToken,
|
|
140
|
+
internalAuthTokenProvider,
|
|
141
|
+
headers
|
|
142
|
+
}),
|
|
127
143
|
params: query,
|
|
128
|
-
data
|
|
144
|
+
data
|
|
129
145
|
});
|
|
130
146
|
}
|
|
131
|
-
|
|
132
147
|
return {
|
|
133
|
-
all
|
|
134
|
-
get
|
|
135
|
-
update
|
|
148
|
+
all,
|
|
149
|
+
get,
|
|
150
|
+
update,
|
|
136
151
|
// remove,
|
|
137
|
-
create
|
|
152
|
+
create
|
|
138
153
|
};
|
|
139
154
|
}
|
|
140
|
-
|
|
141
155
|
module.exports = passengerCheckInInfoFactory;
|
|
@@ -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 redemptions API (btrz-api-operations).
|
|
@@ -10,12 +9,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {Object} redemptions API methods
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function redemptionFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* POST /redemptions - create redemption. API does not accept query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -25,16 +22,21 @@ function redemptionFactory(_ref) {
|
|
|
25
22
|
* @param {Object} [opts.headers] - Optional headers
|
|
26
23
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
27
24
|
*/
|
|
28
|
-
function create(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
25
|
+
function create({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
redemption,
|
|
29
|
+
headers
|
|
30
|
+
}) {
|
|
34
31
|
return client({
|
|
35
32
|
url: "/redemptions",
|
|
36
33
|
method: "post",
|
|
37
|
-
headers: authorizationHeaders({
|
|
34
|
+
headers: authorizationHeaders({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
internalAuthTokenProvider,
|
|
38
|
+
headers
|
|
39
|
+
}),
|
|
38
40
|
data: redemption
|
|
39
41
|
});
|
|
40
42
|
}
|
|
@@ -49,18 +51,25 @@ function redemptionFactory(_ref) {
|
|
|
49
51
|
* @param {Object} [opts.headers] - Optional headers
|
|
50
52
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
51
53
|
*/
|
|
52
|
-
function getValidate(
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
54
|
+
function getValidate({
|
|
55
|
+
token,
|
|
56
|
+
jwtToken,
|
|
57
|
+
passId,
|
|
58
|
+
timezone,
|
|
59
|
+
headers
|
|
60
|
+
}) {
|
|
59
61
|
return client({
|
|
60
|
-
url:
|
|
61
|
-
params: {
|
|
62
|
+
url: `/redemptions/validate/${passId}`,
|
|
63
|
+
params: {
|
|
64
|
+
timezone
|
|
65
|
+
},
|
|
62
66
|
method: "get",
|
|
63
|
-
headers: authorizationHeaders({
|
|
67
|
+
headers: authorizationHeaders({
|
|
68
|
+
token,
|
|
69
|
+
jwtToken,
|
|
70
|
+
internalAuthTokenProvider,
|
|
71
|
+
headers
|
|
72
|
+
})
|
|
64
73
|
});
|
|
65
74
|
}
|
|
66
75
|
|
|
@@ -73,25 +82,28 @@ function redemptionFactory(_ref) {
|
|
|
73
82
|
* @param {Object} [opts.headers] - Optional headers
|
|
74
83
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
75
84
|
*/
|
|
76
|
-
function unredeem(
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
85
|
+
function unredeem({
|
|
86
|
+
token,
|
|
87
|
+
jwtToken,
|
|
88
|
+
data,
|
|
89
|
+
headers
|
|
90
|
+
}) {
|
|
82
91
|
return client({
|
|
83
92
|
url: "/unredeem",
|
|
84
93
|
method: "post",
|
|
85
|
-
headers: authorizationHeaders({
|
|
86
|
-
|
|
94
|
+
headers: authorizationHeaders({
|
|
95
|
+
token,
|
|
96
|
+
jwtToken,
|
|
97
|
+
internalAuthTokenProvider,
|
|
98
|
+
headers
|
|
99
|
+
}),
|
|
100
|
+
data
|
|
87
101
|
});
|
|
88
102
|
}
|
|
89
|
-
|
|
90
103
|
return {
|
|
91
|
-
create
|
|
92
|
-
getValidate
|
|
93
|
-
unredeem
|
|
104
|
+
create,
|
|
105
|
+
getValidate,
|
|
106
|
+
unredeem
|
|
94
107
|
};
|
|
95
108
|
}
|
|
96
|
-
|
|
97
109
|
module.exports = redemptionFactory;
|
|
@@ -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 /rms/manifest-forecast (btrz-api-operations). See get-handler getSpec() and handlers-common parameters().
|
|
@@ -41,13 +40,11 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
41
40
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
42
41
|
* @returns {Object} rms API methods (manifestForecasts)
|
|
43
42
|
*/
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
var manifestForecasts = {
|
|
43
|
+
function rmsFactory({
|
|
44
|
+
client,
|
|
45
|
+
internalAuthTokenProvider
|
|
46
|
+
}) {
|
|
47
|
+
const manifestForecasts = {
|
|
51
48
|
/**
|
|
52
49
|
* GET /rms/manifest-forecast - list manifest forecasts. Query: date required.
|
|
53
50
|
* @param {Object} opts
|
|
@@ -57,19 +54,22 @@ function rmsFactory(_ref) {
|
|
|
57
54
|
* @param {Object} [opts.headers] - Optional headers
|
|
58
55
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
59
56
|
*/
|
|
60
|
-
all
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
57
|
+
all({
|
|
58
|
+
token,
|
|
59
|
+
jwtToken,
|
|
60
|
+
query = {},
|
|
61
|
+
headers
|
|
62
|
+
}) {
|
|
67
63
|
return client.get("/rms/manifest-forecast", {
|
|
68
64
|
params: query,
|
|
69
|
-
headers: authorizationHeaders({
|
|
65
|
+
headers: authorizationHeaders({
|
|
66
|
+
token,
|
|
67
|
+
jwtToken,
|
|
68
|
+
internalAuthTokenProvider,
|
|
69
|
+
headers
|
|
70
|
+
})
|
|
70
71
|
});
|
|
71
72
|
},
|
|
72
|
-
|
|
73
73
|
/**
|
|
74
74
|
* GET /rms/manifest-forecast/:scheduleId - get manifest forecast by schedule id.
|
|
75
75
|
* Optional query: originId, destinationId, status, forecastMin/Max, loadMin/Max.
|
|
@@ -81,24 +81,26 @@ function rmsFactory(_ref) {
|
|
|
81
81
|
* @param {Object} [opts.headers] - Optional headers
|
|
82
82
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
83
83
|
*/
|
|
84
|
-
get
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
return client.get("/rms/manifest-forecast/" + scheduleId, {
|
|
84
|
+
get({
|
|
85
|
+
scheduleId,
|
|
86
|
+
token,
|
|
87
|
+
jwtToken,
|
|
88
|
+
query = {},
|
|
89
|
+
headers
|
|
90
|
+
}) {
|
|
91
|
+
return client.get(`/rms/manifest-forecast/${scheduleId}`, {
|
|
93
92
|
params: query,
|
|
94
|
-
headers: authorizationHeaders({
|
|
93
|
+
headers: authorizationHeaders({
|
|
94
|
+
token,
|
|
95
|
+
jwtToken,
|
|
96
|
+
internalAuthTokenProvider,
|
|
97
|
+
headers
|
|
98
|
+
})
|
|
95
99
|
});
|
|
96
100
|
}
|
|
97
101
|
};
|
|
98
|
-
|
|
99
102
|
return {
|
|
100
|
-
manifestForecasts
|
|
103
|
+
manifestForecasts
|
|
101
104
|
};
|
|
102
105
|
}
|
|
103
|
-
|
|
104
106
|
module.exports = rmsFactory;
|