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,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 /financing-costs (btrz-api-inventory). See get-financing-costs getSpec().
|
|
@@ -23,12 +22,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
23
22
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
24
23
|
* @returns {{ all: function, get: function, create: function, update: function, remove: function }}
|
|
25
24
|
*/
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
31
|
-
|
|
25
|
+
function financingCostsFactory({
|
|
26
|
+
client,
|
|
27
|
+
internalAuthTokenProvider
|
|
28
|
+
}) {
|
|
32
29
|
/**
|
|
33
30
|
* GET /financing-costs - list financing costs (paginated).
|
|
34
31
|
* @param {Object} opts
|
|
@@ -39,16 +36,20 @@ function financingCostsFactory(_ref) {
|
|
|
39
36
|
* @returns {Promise<import("axios").AxiosResponse<{ financingcosts: Array, next: string, previous: string, count: number }>>}
|
|
40
37
|
* @throws When response is 4xx/5xx (400 INVALID_PAGE, 401, 500)
|
|
41
38
|
*/
|
|
42
|
-
function all(
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
39
|
+
function all({
|
|
40
|
+
token,
|
|
41
|
+
jwtToken,
|
|
42
|
+
query = {},
|
|
43
|
+
headers
|
|
44
|
+
}) {
|
|
49
45
|
return client.get("/financing-costs", {
|
|
50
46
|
params: query,
|
|
51
|
-
headers: authorizationHeaders({
|
|
47
|
+
headers: authorizationHeaders({
|
|
48
|
+
token,
|
|
49
|
+
jwtToken,
|
|
50
|
+
internalAuthTokenProvider,
|
|
51
|
+
headers
|
|
52
|
+
})
|
|
52
53
|
});
|
|
53
54
|
}
|
|
54
55
|
|
|
@@ -63,17 +64,21 @@ function financingCostsFactory(_ref) {
|
|
|
63
64
|
* @returns {Promise<import("axios").AxiosResponse<{ financingcost: Object }>>}
|
|
64
65
|
* @throws When response is 4xx/5xx (400 INVALID_FINANCINGCOST_ID, 401, 404 FINANCINGCOST_NOT_FOUND, 500)
|
|
65
66
|
*/
|
|
66
|
-
function get(
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
return client.get("/financing-costs/" + id, {
|
|
67
|
+
function get({
|
|
68
|
+
id,
|
|
69
|
+
token,
|
|
70
|
+
headers,
|
|
71
|
+
jwtToken,
|
|
72
|
+
query = {}
|
|
73
|
+
}) {
|
|
74
|
+
return client.get(`/financing-costs/${id}`, {
|
|
75
75
|
params: query,
|
|
76
|
-
headers: authorizationHeaders({
|
|
76
|
+
headers: authorizationHeaders({
|
|
77
|
+
token,
|
|
78
|
+
jwtToken,
|
|
79
|
+
internalAuthTokenProvider,
|
|
80
|
+
headers
|
|
81
|
+
})
|
|
77
82
|
});
|
|
78
83
|
}
|
|
79
84
|
|
|
@@ -87,16 +92,21 @@ function financingCostsFactory(_ref) {
|
|
|
87
92
|
* @returns {Promise<import("axios").AxiosResponse<{ financingcost: Object }>>}
|
|
88
93
|
* @throws When response is 4xx/5xx (400 WRONG_DATA, 401, 409 duplicated internalId, 500)
|
|
89
94
|
*/
|
|
90
|
-
function create(
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
95
|
+
function create({
|
|
96
|
+
jwtToken,
|
|
97
|
+
token,
|
|
98
|
+
financingCost,
|
|
99
|
+
headers
|
|
100
|
+
}) {
|
|
96
101
|
return client({
|
|
97
102
|
url: "/financing-costs",
|
|
98
103
|
method: "post",
|
|
99
|
-
headers: authorizationHeaders({
|
|
104
|
+
headers: authorizationHeaders({
|
|
105
|
+
token,
|
|
106
|
+
jwtToken,
|
|
107
|
+
internalAuthTokenProvider,
|
|
108
|
+
headers
|
|
109
|
+
}),
|
|
100
110
|
data: {
|
|
101
111
|
financingcost: financingCost
|
|
102
112
|
}
|
|
@@ -113,19 +123,23 @@ function financingCostsFactory(_ref) {
|
|
|
113
123
|
* @returns {Promise<import("axios").AxiosResponse<{ financingcostId: string }>>}
|
|
114
124
|
* @throws When response is 4xx/5xx (400 INVALID_FINANCINGCOST_ID, 401, 404 FINANCINGCOST_NOT_FOUND, 500)
|
|
115
125
|
*/
|
|
116
|
-
function remove(
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
126
|
+
function remove({
|
|
127
|
+
jwtToken,
|
|
128
|
+
id,
|
|
129
|
+
token,
|
|
130
|
+
headers,
|
|
131
|
+
query = {}
|
|
132
|
+
}) {
|
|
124
133
|
return client({
|
|
125
|
-
url:
|
|
134
|
+
url: `/financing-costs/${id}`,
|
|
126
135
|
method: "delete",
|
|
127
136
|
params: query,
|
|
128
|
-
headers: authorizationHeaders({
|
|
137
|
+
headers: authorizationHeaders({
|
|
138
|
+
token,
|
|
139
|
+
jwtToken,
|
|
140
|
+
internalAuthTokenProvider,
|
|
141
|
+
headers
|
|
142
|
+
})
|
|
129
143
|
});
|
|
130
144
|
}
|
|
131
145
|
|
|
@@ -140,30 +154,33 @@ function financingCostsFactory(_ref) {
|
|
|
140
154
|
* @returns {Promise<import("axios").AxiosResponse<{ financingcost: Object }>>}
|
|
141
155
|
* @throws When response is 4xx/5xx (400 WRONG_DATA, 401, 404 not found, 409 duplicated internalId, 500)
|
|
142
156
|
*/
|
|
143
|
-
function update(
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
157
|
+
function update({
|
|
158
|
+
jwtToken,
|
|
159
|
+
token,
|
|
160
|
+
id,
|
|
161
|
+
financingCost,
|
|
162
|
+
headers
|
|
163
|
+
}) {
|
|
150
164
|
return client({
|
|
151
|
-
url:
|
|
165
|
+
url: `/financing-costs/${id}`,
|
|
152
166
|
method: "put",
|
|
153
|
-
headers: authorizationHeaders({
|
|
167
|
+
headers: authorizationHeaders({
|
|
168
|
+
token,
|
|
169
|
+
jwtToken,
|
|
170
|
+
internalAuthTokenProvider,
|
|
171
|
+
headers
|
|
172
|
+
}),
|
|
154
173
|
data: {
|
|
155
174
|
financingcost: financingCost
|
|
156
175
|
}
|
|
157
176
|
});
|
|
158
177
|
}
|
|
159
|
-
|
|
160
178
|
return {
|
|
161
|
-
all
|
|
162
|
-
get
|
|
163
|
-
create
|
|
164
|
-
update
|
|
165
|
-
remove
|
|
179
|
+
all,
|
|
180
|
+
get,
|
|
181
|
+
create,
|
|
182
|
+
update,
|
|
183
|
+
remove
|
|
166
184
|
};
|
|
167
185
|
}
|
|
168
|
-
|
|
169
186
|
module.exports = financingCostsFactory;
|
|
@@ -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 /garages (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -17,12 +16,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
17
16
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
18
17
|
* @returns {{ all: function, get: function, create: function, update: function, remove: function }}
|
|
19
18
|
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
25
|
-
|
|
19
|
+
function garagesFactory({
|
|
20
|
+
client,
|
|
21
|
+
internalAuthTokenProvider
|
|
22
|
+
}) {
|
|
26
23
|
/**
|
|
27
24
|
* GET /garages - list garages (paginated).
|
|
28
25
|
* @param {Object} opts
|
|
@@ -33,16 +30,20 @@ function garagesFactory(_ref) {
|
|
|
33
30
|
* @returns {Promise<import("axios").AxiosResponse<{ garages: Array, next?: string, previous?: string, count: number }>>}
|
|
34
31
|
* @throws When response is 4xx/5xx (401, 500)
|
|
35
32
|
*/
|
|
36
|
-
function all(
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
33
|
+
function all({
|
|
34
|
+
token,
|
|
35
|
+
jwtToken,
|
|
36
|
+
query = {},
|
|
37
|
+
headers
|
|
38
|
+
}) {
|
|
43
39
|
return client.get("/garages", {
|
|
44
40
|
params: query,
|
|
45
|
-
headers: authorizationHeaders({
|
|
41
|
+
headers: authorizationHeaders({
|
|
42
|
+
token,
|
|
43
|
+
jwtToken,
|
|
44
|
+
internalAuthTokenProvider,
|
|
45
|
+
headers
|
|
46
|
+
})
|
|
46
47
|
});
|
|
47
48
|
}
|
|
48
49
|
|
|
@@ -56,14 +57,19 @@ function garagesFactory(_ref) {
|
|
|
56
57
|
* @returns {Promise<import("axios").AxiosResponse<{ garage: Object }>>}
|
|
57
58
|
* @throws When response is 4xx/5xx (400 INVALID_GARAGE_ID, 401, 404 GARAGE_NOT_FOUND, 500)
|
|
58
59
|
*/
|
|
59
|
-
function get(
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
return client.get(
|
|
66
|
-
headers: authorizationHeaders({
|
|
60
|
+
function get({
|
|
61
|
+
token,
|
|
62
|
+
jwtToken,
|
|
63
|
+
garageId,
|
|
64
|
+
headers
|
|
65
|
+
}) {
|
|
66
|
+
return client.get(`/garages/${garageId}`, {
|
|
67
|
+
headers: authorizationHeaders({
|
|
68
|
+
token,
|
|
69
|
+
jwtToken,
|
|
70
|
+
internalAuthTokenProvider,
|
|
71
|
+
headers
|
|
72
|
+
})
|
|
67
73
|
});
|
|
68
74
|
}
|
|
69
75
|
|
|
@@ -77,19 +83,22 @@ function garagesFactory(_ref) {
|
|
|
77
83
|
* @returns {Promise<import("axios").AxiosResponse<{ garage: Object }>>}
|
|
78
84
|
* @throws When response is 4xx/5xx (400 WRONG_DATA, 401, 500)
|
|
79
85
|
*/
|
|
80
|
-
function create(
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
+
function create({
|
|
87
|
+
token,
|
|
88
|
+
jwtToken,
|
|
89
|
+
data,
|
|
90
|
+
headers
|
|
91
|
+
}) {
|
|
86
92
|
return client({
|
|
87
93
|
url: "/garages",
|
|
88
94
|
method: "post",
|
|
89
95
|
headers: authorizationHeaders({
|
|
90
|
-
token
|
|
96
|
+
token,
|
|
97
|
+
jwtToken,
|
|
98
|
+
internalAuthTokenProvider,
|
|
99
|
+
headers
|
|
91
100
|
}),
|
|
92
|
-
data
|
|
101
|
+
data
|
|
93
102
|
});
|
|
94
103
|
}
|
|
95
104
|
|
|
@@ -104,20 +113,23 @@ function garagesFactory(_ref) {
|
|
|
104
113
|
* @returns {Promise<import("axios").AxiosResponse<{ garage: Object }>>}
|
|
105
114
|
* @throws When response is 4xx/5xx (400, 401, 404 GARAGE_NOT_FOUND/STATION_NOT_FOUND, 500)
|
|
106
115
|
*/
|
|
107
|
-
function update(
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
116
|
+
function update({
|
|
117
|
+
token,
|
|
118
|
+
jwtToken,
|
|
119
|
+
garageId,
|
|
120
|
+
data,
|
|
121
|
+
headers
|
|
122
|
+
}) {
|
|
114
123
|
return client({
|
|
115
|
-
url:
|
|
124
|
+
url: `/garages/${garageId}`,
|
|
116
125
|
method: "put",
|
|
117
126
|
headers: authorizationHeaders({
|
|
118
|
-
token
|
|
127
|
+
token,
|
|
128
|
+
jwtToken,
|
|
129
|
+
internalAuthTokenProvider,
|
|
130
|
+
headers
|
|
119
131
|
}),
|
|
120
|
-
data
|
|
132
|
+
data
|
|
121
133
|
});
|
|
122
134
|
}
|
|
123
135
|
|
|
@@ -131,28 +143,29 @@ function garagesFactory(_ref) {
|
|
|
131
143
|
* @returns {Promise<import("axios").AxiosResponse<{ success: boolean }>>}
|
|
132
144
|
* @throws When response is 4xx/5xx (400 INVALID_GARAGE_ID or GARAGE_WITH_VEHICLES, 401, 404, 500)
|
|
133
145
|
*/
|
|
134
|
-
function remove(
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
146
|
+
function remove({
|
|
147
|
+
token,
|
|
148
|
+
jwtToken,
|
|
149
|
+
garageId,
|
|
150
|
+
headers
|
|
151
|
+
}) {
|
|
140
152
|
return client({
|
|
141
|
-
url:
|
|
153
|
+
url: `/garages/${garageId}`,
|
|
142
154
|
method: "delete",
|
|
143
155
|
headers: authorizationHeaders({
|
|
144
|
-
token
|
|
156
|
+
token,
|
|
157
|
+
jwtToken,
|
|
158
|
+
internalAuthTokenProvider,
|
|
159
|
+
headers
|
|
145
160
|
})
|
|
146
161
|
});
|
|
147
162
|
}
|
|
148
|
-
|
|
149
163
|
return {
|
|
150
|
-
all
|
|
151
|
-
get
|
|
152
|
-
create
|
|
153
|
-
update
|
|
154
|
-
remove
|
|
164
|
+
all,
|
|
165
|
+
get,
|
|
166
|
+
create,
|
|
167
|
+
update,
|
|
168
|
+
remove
|
|
155
169
|
};
|
|
156
170
|
}
|
|
157
|
-
|
|
158
171
|
module.exports = garagesFactory;
|
|
@@ -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 /getnet-terminals (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -18,12 +17,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ all: function, get: function, create: function, remove: function, update: function }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function getnetTerminalFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET /getnet-terminals - list getnet terminals (paginated).
|
|
29
26
|
* @param {Object} opts
|
|
@@ -34,16 +31,20 @@ function getnetTerminalFactory(_ref) {
|
|
|
34
31
|
* @returns {Promise<import("axios").AxiosResponse<{ getnetTerminals: Array, next?: string, previous?: string, count: number }>>}
|
|
35
32
|
* @throws When response is 4xx/5xx (400 INVALID_PAGE, 401, 500)
|
|
36
33
|
*/
|
|
37
|
-
function all(
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
34
|
+
function all({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
query = {},
|
|
38
|
+
headers
|
|
39
|
+
}) {
|
|
44
40
|
return client.get("/getnet-terminals", {
|
|
45
41
|
params: query,
|
|
46
|
-
headers: authorizationHeaders({
|
|
42
|
+
headers: authorizationHeaders({
|
|
43
|
+
token,
|
|
44
|
+
jwtToken,
|
|
45
|
+
internalAuthTokenProvider,
|
|
46
|
+
headers
|
|
47
|
+
})
|
|
47
48
|
});
|
|
48
49
|
}
|
|
49
50
|
|
|
@@ -57,14 +58,19 @@ function getnetTerminalFactory(_ref) {
|
|
|
57
58
|
* @returns {Promise<import("axios").AxiosResponse<{ getnetTerminal: Object }>>}
|
|
58
59
|
* @throws When response is 4xx/5xx (400 INVALID_GETNET_TERMINAL_ID, 401, 404 GETNET_TERMINAL_NOT_FOUND, 500)
|
|
59
60
|
*/
|
|
60
|
-
function get(
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
return client.get(
|
|
67
|
-
headers: authorizationHeaders({
|
|
61
|
+
function get({
|
|
62
|
+
getnetTerminalId,
|
|
63
|
+
token,
|
|
64
|
+
jwtToken,
|
|
65
|
+
headers
|
|
66
|
+
}) {
|
|
67
|
+
return client.get(`/getnet-terminals/${getnetTerminalId}`, {
|
|
68
|
+
headers: authorizationHeaders({
|
|
69
|
+
token,
|
|
70
|
+
jwtToken,
|
|
71
|
+
internalAuthTokenProvider,
|
|
72
|
+
headers
|
|
73
|
+
})
|
|
68
74
|
});
|
|
69
75
|
}
|
|
70
76
|
|
|
@@ -78,18 +84,23 @@ function getnetTerminalFactory(_ref) {
|
|
|
78
84
|
* @returns {Promise<import("axios").AxiosResponse<{ getnetTerminal: Object }>>}
|
|
79
85
|
* @throws When response is 4xx/5xx (400 WRONG_DATA/INVALID_STATION_ID/STATION_NOT_FOUND, 401, 409 duplicate serial, 500)
|
|
80
86
|
*/
|
|
81
|
-
function create(
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
+
function create({
|
|
88
|
+
jwtToken,
|
|
89
|
+
token,
|
|
90
|
+
getnetTerminal,
|
|
91
|
+
headers
|
|
92
|
+
}) {
|
|
87
93
|
return client({
|
|
88
94
|
url: "/getnet-terminals",
|
|
89
95
|
method: "post",
|
|
90
|
-
headers: authorizationHeaders({
|
|
96
|
+
headers: authorizationHeaders({
|
|
97
|
+
token,
|
|
98
|
+
jwtToken,
|
|
99
|
+
internalAuthTokenProvider,
|
|
100
|
+
headers
|
|
101
|
+
}),
|
|
91
102
|
data: {
|
|
92
|
-
getnetTerminal
|
|
103
|
+
getnetTerminal
|
|
93
104
|
}
|
|
94
105
|
});
|
|
95
106
|
}
|
|
@@ -104,16 +115,21 @@ function getnetTerminalFactory(_ref) {
|
|
|
104
115
|
* @returns {Promise<import("axios").AxiosResponse<{ getnetTerminalId: string }>>}
|
|
105
116
|
* @throws When response is 4xx/5xx (400 INVALID_GETNET_TERMINAL_ID, 401, 404 GETNET_TERMINAL_NOT_FOUND, 500)
|
|
106
117
|
*/
|
|
107
|
-
function remove(
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
118
|
+
function remove({
|
|
119
|
+
jwtToken,
|
|
120
|
+
getnetTerminalId,
|
|
121
|
+
token,
|
|
122
|
+
headers
|
|
123
|
+
}) {
|
|
113
124
|
return client({
|
|
114
|
-
url:
|
|
125
|
+
url: `/getnet-terminals/${getnetTerminalId}`,
|
|
115
126
|
method: "delete",
|
|
116
|
-
headers: authorizationHeaders({
|
|
127
|
+
headers: authorizationHeaders({
|
|
128
|
+
token,
|
|
129
|
+
jwtToken,
|
|
130
|
+
internalAuthTokenProvider,
|
|
131
|
+
headers
|
|
132
|
+
})
|
|
117
133
|
});
|
|
118
134
|
}
|
|
119
135
|
|
|
@@ -128,19 +144,23 @@ function getnetTerminalFactory(_ref) {
|
|
|
128
144
|
* @returns {Promise<import("axios").AxiosResponse<{ getnetTerminal: Object }>>}
|
|
129
145
|
* @throws When response is 4xx/5xx (400, 401, 404 GETNET_TERMINAL_NOT_FOUND, 409 duplicate serial, 500)
|
|
130
146
|
*/
|
|
131
|
-
function update(
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
147
|
+
function update({
|
|
148
|
+
jwtToken,
|
|
149
|
+
token,
|
|
150
|
+
getnetTerminalId,
|
|
151
|
+
getnetTerminal,
|
|
152
|
+
headers
|
|
153
|
+
}) {
|
|
154
|
+
const _getnetTerminalId = getnetTerminalId || getnetTerminal._id;
|
|
140
155
|
return client({
|
|
141
|
-
url:
|
|
156
|
+
url: `/getnet-terminals/${_getnetTerminalId}`,
|
|
142
157
|
method: "put",
|
|
143
|
-
headers: authorizationHeaders({
|
|
158
|
+
headers: authorizationHeaders({
|
|
159
|
+
token,
|
|
160
|
+
jwtToken,
|
|
161
|
+
internalAuthTokenProvider,
|
|
162
|
+
headers
|
|
163
|
+
}),
|
|
144
164
|
data: {
|
|
145
165
|
getnetTerminal: {
|
|
146
166
|
name: getnetTerminal.name,
|
|
@@ -150,14 +170,12 @@ function getnetTerminalFactory(_ref) {
|
|
|
150
170
|
}
|
|
151
171
|
});
|
|
152
172
|
}
|
|
153
|
-
|
|
154
173
|
return {
|
|
155
|
-
all
|
|
156
|
-
get
|
|
157
|
-
create
|
|
158
|
-
remove
|
|
159
|
-
update
|
|
174
|
+
all,
|
|
175
|
+
get,
|
|
176
|
+
create,
|
|
177
|
+
remove,
|
|
178
|
+
update
|
|
160
179
|
};
|
|
161
180
|
}
|
|
162
|
-
|
|
163
181
|
module.exports = getnetTerminalFactory;
|