btrz-api-client 8.75.0 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +133 -73
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +218 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/inventory/control-classes.js +27 -0
- package/src/endpoints/operations/transactions.js +1 -1
- package/test/endpoints/inventory/control-classes.js +14 -0
- package/tools/build-standalone.mjs +15 -0
- package/types/endpoints/inventory/control-classes.d.ts +4 -0
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/* eslint-disable max-len */
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
const {
|
|
3
|
+
authorizationHeaders
|
|
4
|
+
} = require("./../endpoints_helpers.js");
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* Query params for GET /cart/:cartId (btrz-api-sales get-cart getSpec).
|
|
@@ -37,12 +36,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
37
36
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
38
37
|
* @returns {{ get: function, create: function, add: function, deleteItems: function, deletePaidInItem: function, deletePaidInItems: function, loyaltyPointsAmount: Object, patch: function, partialDepositStatus: Object, payments: Object, taxExemptPaymentMethod: Object, financingCosts: Object }}
|
|
39
38
|
*/
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
45
|
-
|
|
39
|
+
function cartFactory({
|
|
40
|
+
client,
|
|
41
|
+
internalAuthTokenProvider
|
|
42
|
+
}) {
|
|
46
43
|
/**
|
|
47
44
|
* GET /cart/:id - get cart by id.
|
|
48
45
|
* @param {Object} opts
|
|
@@ -52,17 +49,20 @@ function cartFactory(_ref) {
|
|
|
52
49
|
* @param {Object} [opts.headers] - Optional headers
|
|
53
50
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
54
51
|
*/
|
|
55
|
-
function get(
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
52
|
+
function get({
|
|
53
|
+
token,
|
|
54
|
+
id,
|
|
55
|
+
query = {},
|
|
56
|
+
headers
|
|
57
|
+
}) {
|
|
62
58
|
return client({
|
|
63
|
-
url:
|
|
59
|
+
url: `/cart/${id}`,
|
|
64
60
|
params: query,
|
|
65
|
-
headers: authorizationHeaders({
|
|
61
|
+
headers: authorizationHeaders({
|
|
62
|
+
token,
|
|
63
|
+
internalAuthTokenProvider,
|
|
64
|
+
headers
|
|
65
|
+
})
|
|
66
66
|
});
|
|
67
67
|
}
|
|
68
68
|
|
|
@@ -75,16 +75,21 @@ function cartFactory(_ref) {
|
|
|
75
75
|
* @param {Object} [opts.headers] - Optional headers
|
|
76
76
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
77
77
|
*/
|
|
78
|
-
function create(
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
78
|
+
function create({
|
|
79
|
+
token,
|
|
80
|
+
cart,
|
|
81
|
+
jwtToken,
|
|
82
|
+
headers
|
|
83
|
+
}) {
|
|
84
84
|
return client({
|
|
85
85
|
url: "/cart",
|
|
86
86
|
method: "post",
|
|
87
|
-
headers: authorizationHeaders({
|
|
87
|
+
headers: authorizationHeaders({
|
|
88
|
+
token,
|
|
89
|
+
jwtToken,
|
|
90
|
+
internalAuthTokenProvider,
|
|
91
|
+
headers
|
|
92
|
+
}),
|
|
88
93
|
data: cart
|
|
89
94
|
});
|
|
90
95
|
}
|
|
@@ -99,17 +104,22 @@ function cartFactory(_ref) {
|
|
|
99
104
|
* @param {Object} [opts.headers] - Optional headers
|
|
100
105
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
101
106
|
*/
|
|
102
|
-
function add(
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
107
|
+
function add({
|
|
108
|
+
token,
|
|
109
|
+
cartId,
|
|
110
|
+
cart,
|
|
111
|
+
jwtToken,
|
|
112
|
+
headers
|
|
113
|
+
}) {
|
|
109
114
|
return client({
|
|
110
|
-
url:
|
|
115
|
+
url: `/cart/${cartId}/items`,
|
|
111
116
|
method: "post",
|
|
112
|
-
headers: authorizationHeaders({
|
|
117
|
+
headers: authorizationHeaders({
|
|
118
|
+
token,
|
|
119
|
+
jwtToken,
|
|
120
|
+
internalAuthTokenProvider,
|
|
121
|
+
headers
|
|
122
|
+
}),
|
|
113
123
|
data: cart
|
|
114
124
|
});
|
|
115
125
|
}
|
|
@@ -124,18 +134,23 @@ function cartFactory(_ref) {
|
|
|
124
134
|
* @param {Object} [opts.headers] - Optional headers
|
|
125
135
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
126
136
|
*/
|
|
127
|
-
function deleteItems(
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
137
|
+
function deleteItems({
|
|
138
|
+
token,
|
|
139
|
+
cartId,
|
|
140
|
+
params,
|
|
141
|
+
jwtToken,
|
|
142
|
+
headers
|
|
143
|
+
}) {
|
|
134
144
|
return client({
|
|
135
|
-
url:
|
|
145
|
+
url: `/cart/${cartId}/items`,
|
|
136
146
|
method: "delete",
|
|
137
|
-
headers: authorizationHeaders({
|
|
138
|
-
|
|
147
|
+
headers: authorizationHeaders({
|
|
148
|
+
token,
|
|
149
|
+
jwtToken,
|
|
150
|
+
internalAuthTokenProvider,
|
|
151
|
+
headers
|
|
152
|
+
}),
|
|
153
|
+
params
|
|
139
154
|
});
|
|
140
155
|
}
|
|
141
156
|
|
|
@@ -149,17 +164,22 @@ function cartFactory(_ref) {
|
|
|
149
164
|
* @param {Object} [opts.headers] - Optional headers
|
|
150
165
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
151
166
|
*/
|
|
152
|
-
function deletePaidInItem(
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
167
|
+
function deletePaidInItem({
|
|
168
|
+
token,
|
|
169
|
+
cartId,
|
|
170
|
+
itemId,
|
|
171
|
+
jwtToken,
|
|
172
|
+
headers
|
|
173
|
+
}) {
|
|
159
174
|
return client({
|
|
160
|
-
url:
|
|
175
|
+
url: `/carts/${cartId}/paid-in-items/${itemId}`,
|
|
161
176
|
method: "delete",
|
|
162
|
-
headers: authorizationHeaders({
|
|
177
|
+
headers: authorizationHeaders({
|
|
178
|
+
token,
|
|
179
|
+
jwtToken,
|
|
180
|
+
internalAuthTokenProvider,
|
|
181
|
+
headers
|
|
182
|
+
})
|
|
163
183
|
});
|
|
164
184
|
}
|
|
165
185
|
|
|
@@ -173,22 +193,26 @@ function cartFactory(_ref) {
|
|
|
173
193
|
* @param {Object} [opts.headers] - Optional headers
|
|
174
194
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
175
195
|
*/
|
|
176
|
-
function deletePaidInItems(
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
196
|
+
function deletePaidInItems({
|
|
197
|
+
token,
|
|
198
|
+
cartId,
|
|
199
|
+
params,
|
|
200
|
+
jwtToken,
|
|
201
|
+
headers
|
|
202
|
+
}) {
|
|
183
203
|
return client({
|
|
184
|
-
url:
|
|
204
|
+
url: `/carts/${cartId}/paid-in-items`,
|
|
185
205
|
method: "delete",
|
|
186
|
-
headers: authorizationHeaders({
|
|
206
|
+
headers: authorizationHeaders({
|
|
207
|
+
token,
|
|
208
|
+
jwtToken,
|
|
209
|
+
internalAuthTokenProvider,
|
|
210
|
+
headers
|
|
211
|
+
}),
|
|
187
212
|
params: params || {}
|
|
188
213
|
});
|
|
189
214
|
}
|
|
190
|
-
|
|
191
|
-
var loyaltyPointsAmount = {
|
|
215
|
+
const loyaltyPointsAmount = {
|
|
192
216
|
/**
|
|
193
217
|
* GET /carts/:cartId/loyalty-points-amount - get loyalty points amount for cart. API does not accept query params.
|
|
194
218
|
* @param {Object} opts
|
|
@@ -198,18 +222,22 @@ function cartFactory(_ref) {
|
|
|
198
222
|
* @param {Object} [opts.headers] - Optional headers
|
|
199
223
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
200
224
|
*/
|
|
201
|
-
get
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
225
|
+
get({
|
|
226
|
+
token,
|
|
227
|
+
jwtToken,
|
|
228
|
+
cartId,
|
|
229
|
+
query = {},
|
|
230
|
+
headers
|
|
231
|
+
}) {
|
|
209
232
|
return client({
|
|
210
|
-
url:
|
|
233
|
+
url: `/carts/${cartId}/loyalty-points-amount`,
|
|
211
234
|
params: query,
|
|
212
|
-
headers: authorizationHeaders({
|
|
235
|
+
headers: authorizationHeaders({
|
|
236
|
+
token,
|
|
237
|
+
jwtToken,
|
|
238
|
+
internalAuthTokenProvider,
|
|
239
|
+
headers
|
|
240
|
+
})
|
|
213
241
|
});
|
|
214
242
|
}
|
|
215
243
|
};
|
|
@@ -224,22 +252,26 @@ function cartFactory(_ref) {
|
|
|
224
252
|
* @param {Object} [opts.headers] - Optional headers
|
|
225
253
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
226
254
|
*/
|
|
227
|
-
function patch(
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
255
|
+
function patch({
|
|
256
|
+
token,
|
|
257
|
+
jwtToken,
|
|
258
|
+
cartId,
|
|
259
|
+
data,
|
|
260
|
+
headers
|
|
261
|
+
}) {
|
|
234
262
|
return client({
|
|
235
|
-
url:
|
|
263
|
+
url: `/cart/${cartId}`,
|
|
236
264
|
method: "patch",
|
|
237
|
-
headers: authorizationHeaders({
|
|
238
|
-
|
|
265
|
+
headers: authorizationHeaders({
|
|
266
|
+
token,
|
|
267
|
+
jwtToken,
|
|
268
|
+
internalAuthTokenProvider,
|
|
269
|
+
headers
|
|
270
|
+
}),
|
|
271
|
+
data
|
|
239
272
|
});
|
|
240
273
|
}
|
|
241
|
-
|
|
242
|
-
var partialDepositStatus = {
|
|
274
|
+
const partialDepositStatus = {
|
|
243
275
|
/**
|
|
244
276
|
* GET /cart/:shiftId/partial-deposit-status - get shift partial deposit status. API does not accept query params. Response: partialDeposit.
|
|
245
277
|
* @param {Object} opts
|
|
@@ -249,19 +281,23 @@ function cartFactory(_ref) {
|
|
|
249
281
|
* @param {Object} [opts.headers] - Optional headers
|
|
250
282
|
* @returns {Promise<import("axios").AxiosResponse<{ partialDeposit: * }>>}
|
|
251
283
|
*/
|
|
252
|
-
get
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
return client.get(
|
|
259
|
-
headers: authorizationHeaders({
|
|
284
|
+
get({
|
|
285
|
+
token,
|
|
286
|
+
jwtToken,
|
|
287
|
+
shiftId,
|
|
288
|
+
headers
|
|
289
|
+
}) {
|
|
290
|
+
return client.get(`/cart/${shiftId}/partial-deposit-status`, {
|
|
291
|
+
headers: authorizationHeaders({
|
|
292
|
+
token,
|
|
293
|
+
jwtToken,
|
|
294
|
+
internalAuthTokenProvider,
|
|
295
|
+
headers
|
|
296
|
+
})
|
|
260
297
|
});
|
|
261
298
|
}
|
|
262
299
|
};
|
|
263
|
-
|
|
264
|
-
var payments = {
|
|
300
|
+
const payments = {
|
|
265
301
|
/**
|
|
266
302
|
* DELETE /carts/:cartId/payments - delete cart payments. API does not accept query params.
|
|
267
303
|
* @param {Object} opts
|
|
@@ -271,19 +307,23 @@ function cartFactory(_ref) {
|
|
|
271
307
|
* @param {Object} [opts.headers] - Optional headers
|
|
272
308
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
273
309
|
*/
|
|
274
|
-
delete
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
310
|
+
delete({
|
|
311
|
+
token,
|
|
312
|
+
cartId,
|
|
313
|
+
jwtToken,
|
|
314
|
+
headers
|
|
315
|
+
}) {
|
|
280
316
|
return client({
|
|
281
|
-
url:
|
|
317
|
+
url: `/carts/${cartId}/payments`,
|
|
282
318
|
method: "delete",
|
|
283
|
-
headers: authorizationHeaders({
|
|
319
|
+
headers: authorizationHeaders({
|
|
320
|
+
token,
|
|
321
|
+
jwtToken,
|
|
322
|
+
internalAuthTokenProvider,
|
|
323
|
+
headers
|
|
324
|
+
})
|
|
284
325
|
});
|
|
285
326
|
},
|
|
286
|
-
|
|
287
327
|
/**
|
|
288
328
|
* PUT /carts/:cartId/payments - put cart payments. API does not accept query params.
|
|
289
329
|
* @param {Object} opts
|
|
@@ -294,23 +334,27 @@ function cartFactory(_ref) {
|
|
|
294
334
|
* @param {Object} opts.payment - Payment payload
|
|
295
335
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
296
336
|
*/
|
|
297
|
-
put
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
337
|
+
put({
|
|
338
|
+
token,
|
|
339
|
+
cartId,
|
|
340
|
+
jwtToken,
|
|
341
|
+
headers,
|
|
342
|
+
payment
|
|
343
|
+
}) {
|
|
304
344
|
return client({
|
|
305
|
-
url:
|
|
345
|
+
url: `/carts/${cartId}/payments`,
|
|
306
346
|
method: "put",
|
|
307
|
-
headers: authorizationHeaders({
|
|
347
|
+
headers: authorizationHeaders({
|
|
348
|
+
token,
|
|
349
|
+
jwtToken,
|
|
350
|
+
internalAuthTokenProvider,
|
|
351
|
+
headers
|
|
352
|
+
}),
|
|
308
353
|
data: payment
|
|
309
354
|
});
|
|
310
355
|
}
|
|
311
356
|
};
|
|
312
|
-
|
|
313
|
-
var taxExemptPaymentMethod = {
|
|
357
|
+
const taxExemptPaymentMethod = {
|
|
314
358
|
/**
|
|
315
359
|
* POST /carts/:cartId/tax-exempt-payment-method - recalculate taxes for a tax exempt payment method. Body: amountExempt (number).
|
|
316
360
|
* @param {Object} opts
|
|
@@ -321,24 +365,27 @@ function cartFactory(_ref) {
|
|
|
321
365
|
* @param {Object} opts.data - Request body; must include amountExempt (number, amount exempted of taxes)
|
|
322
366
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
323
367
|
*/
|
|
324
|
-
post
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
368
|
+
post({
|
|
369
|
+
token,
|
|
370
|
+
cartId,
|
|
371
|
+
jwtToken,
|
|
372
|
+
headers,
|
|
373
|
+
data = {}
|
|
374
|
+
}) {
|
|
332
375
|
return client({
|
|
333
|
-
url:
|
|
376
|
+
url: `/carts/${cartId}/tax-exempt-payment-method`,
|
|
334
377
|
method: "POST",
|
|
335
|
-
headers: authorizationHeaders({
|
|
336
|
-
|
|
378
|
+
headers: authorizationHeaders({
|
|
379
|
+
token,
|
|
380
|
+
jwtToken,
|
|
381
|
+
internalAuthTokenProvider,
|
|
382
|
+
headers
|
|
383
|
+
}),
|
|
384
|
+
data
|
|
337
385
|
});
|
|
338
386
|
}
|
|
339
387
|
};
|
|
340
|
-
|
|
341
|
-
var financingCosts = {
|
|
388
|
+
const financingCosts = {
|
|
342
389
|
/**
|
|
343
390
|
* POST /carts/:cartId/financing-costs - create financing cost.
|
|
344
391
|
* @param {Object} opts
|
|
@@ -350,26 +397,29 @@ function cartFactory(_ref) {
|
|
|
350
397
|
* @param {CartFinancingCostsCreateQuery} [opts.query] - Query params (providerId)
|
|
351
398
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
352
399
|
*/
|
|
353
|
-
create
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
400
|
+
create({
|
|
401
|
+
token,
|
|
402
|
+
jwtToken,
|
|
403
|
+
headers,
|
|
404
|
+
cartId,
|
|
405
|
+
financingCost,
|
|
406
|
+
query = {}
|
|
407
|
+
}) {
|
|
362
408
|
return client({
|
|
363
|
-
url:
|
|
409
|
+
url: `/carts/${cartId}/financing-costs`,
|
|
364
410
|
method: "POST",
|
|
365
411
|
params: query,
|
|
366
|
-
headers: authorizationHeaders({
|
|
412
|
+
headers: authorizationHeaders({
|
|
413
|
+
token,
|
|
414
|
+
jwtToken,
|
|
415
|
+
internalAuthTokenProvider,
|
|
416
|
+
headers
|
|
417
|
+
}),
|
|
367
418
|
data: {
|
|
368
419
|
financingcost: financingCost
|
|
369
420
|
}
|
|
370
421
|
});
|
|
371
422
|
},
|
|
372
|
-
|
|
373
423
|
/**
|
|
374
424
|
* DELETE /carts/:cartId/financing-costs - delete financing cost.
|
|
375
425
|
* @param {Object} opts
|
|
@@ -380,37 +430,39 @@ function cartFactory(_ref) {
|
|
|
380
430
|
* @param {CartFinancingCostsDeleteQuery} [opts.query] - Query params (internalId)
|
|
381
431
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
382
432
|
*/
|
|
383
|
-
delete
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
433
|
+
delete({
|
|
434
|
+
token,
|
|
435
|
+
jwtToken,
|
|
436
|
+
headers,
|
|
437
|
+
cartId,
|
|
438
|
+
query = {}
|
|
439
|
+
}) {
|
|
391
440
|
return client({
|
|
392
|
-
url:
|
|
441
|
+
url: `/carts/${cartId}/financing-costs`,
|
|
393
442
|
method: "delete",
|
|
394
443
|
params: query,
|
|
395
|
-
headers: authorizationHeaders({
|
|
444
|
+
headers: authorizationHeaders({
|
|
445
|
+
token,
|
|
446
|
+
jwtToken,
|
|
447
|
+
internalAuthTokenProvider,
|
|
448
|
+
headers
|
|
449
|
+
})
|
|
396
450
|
});
|
|
397
451
|
}
|
|
398
452
|
};
|
|
399
|
-
|
|
400
453
|
return {
|
|
401
|
-
get
|
|
402
|
-
create
|
|
403
|
-
add
|
|
404
|
-
deleteItems
|
|
405
|
-
deletePaidInItem
|
|
406
|
-
deletePaidInItems
|
|
407
|
-
loyaltyPointsAmount
|
|
408
|
-
patch
|
|
409
|
-
partialDepositStatus
|
|
410
|
-
payments
|
|
411
|
-
taxExemptPaymentMethod
|
|
412
|
-
financingCosts
|
|
454
|
+
get,
|
|
455
|
+
create,
|
|
456
|
+
add,
|
|
457
|
+
deleteItems,
|
|
458
|
+
deletePaidInItem,
|
|
459
|
+
deletePaidInItems,
|
|
460
|
+
loyaltyPointsAmount,
|
|
461
|
+
patch,
|
|
462
|
+
partialDepositStatus,
|
|
463
|
+
payments,
|
|
464
|
+
taxExemptPaymentMethod,
|
|
465
|
+
financingCosts
|
|
413
466
|
};
|
|
414
467
|
}
|
|
415
|
-
|
|
416
468
|
module.exports = cartFactory;
|
|
@@ -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
|
* Factory for check-in API (btrz-api-sales).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ get: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function checkInInfoFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /check-in/:id - get check-in info. API does not accept query params (btrz-api-sales).
|
|
22
19
|
* @param {Object} opts
|
|
@@ -26,24 +23,26 @@ function checkInInfoFactory(_ref) {
|
|
|
26
23
|
* @param {Object} [opts.headers] - Optional headers
|
|
27
24
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
28
25
|
*/
|
|
29
|
-
function get(
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
26
|
+
function get({
|
|
27
|
+
token,
|
|
28
|
+
jwtToken,
|
|
29
|
+
id,
|
|
30
|
+
headers,
|
|
31
|
+
query = {}
|
|
32
|
+
}) {
|
|
37
33
|
return client({
|
|
38
|
-
url:
|
|
34
|
+
url: `/check-in/${id}`,
|
|
39
35
|
params: query,
|
|
40
|
-
headers: authorizationHeaders({
|
|
36
|
+
headers: authorizationHeaders({
|
|
37
|
+
token,
|
|
38
|
+
jwtToken,
|
|
39
|
+
internalAuthTokenProvider,
|
|
40
|
+
headers
|
|
41
|
+
})
|
|
41
42
|
});
|
|
42
43
|
}
|
|
43
|
-
|
|
44
44
|
return {
|
|
45
|
-
get
|
|
45
|
+
get
|
|
46
46
|
};
|
|
47
47
|
}
|
|
48
|
-
|
|
49
48
|
module.exports = checkInInfoFactory;
|
|
@@ -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 /custom-fields (btrz-api-sales get-custom-fields getSpec).
|
|
@@ -17,12 +16,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
17
16
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
18
17
|
* @returns {{ all: function }}
|
|
19
18
|
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
25
|
-
|
|
19
|
+
function customFieldsFactory({
|
|
20
|
+
client,
|
|
21
|
+
internalAuthTokenProvider
|
|
22
|
+
}) {
|
|
26
23
|
/**
|
|
27
24
|
* GET /custom-fields - list custom fields.
|
|
28
25
|
* @param {Object} opts
|
|
@@ -31,21 +28,22 @@ function customFieldsFactory(_ref) {
|
|
|
31
28
|
* @param {Object} [opts.headers] - Optional headers
|
|
32
29
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
33
30
|
*/
|
|
34
|
-
function all(
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
31
|
+
function all({
|
|
32
|
+
token,
|
|
33
|
+
query = {},
|
|
34
|
+
headers
|
|
35
|
+
}) {
|
|
40
36
|
return client.get("/custom-fields", {
|
|
41
37
|
params: query,
|
|
42
|
-
headers: authorizationHeaders({
|
|
38
|
+
headers: authorizationHeaders({
|
|
39
|
+
token,
|
|
40
|
+
internalAuthTokenProvider,
|
|
41
|
+
headers
|
|
42
|
+
})
|
|
43
43
|
});
|
|
44
44
|
}
|
|
45
|
-
|
|
46
45
|
return {
|
|
47
|
-
all
|
|
46
|
+
all
|
|
48
47
|
};
|
|
49
48
|
}
|
|
50
|
-
|
|
51
49
|
module.exports = customFieldsFactory;
|