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
|
* Factory for payment-terminals API (btrz-api-inventory).
|
|
@@ -10,12 +9,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ all: function, get: function, create: function, update: function, remove: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function paymentTerminalFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET /payment-terminals - list payment terminals. API does not accept query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -24,15 +21,18 @@ function paymentTerminalFactory(_ref) {
|
|
|
24
21
|
* @returns {Promise<import("axios").AxiosResponse<{ paymentTerminals: Object[], next?: string, previous?: string, count: number }>>}
|
|
25
22
|
* @throws When the request fails (401 Unauthorized, 500 Internal Server Error)
|
|
26
23
|
*/
|
|
27
|
-
function all(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
24
|
+
function all({
|
|
25
|
+
token,
|
|
26
|
+
query = {},
|
|
27
|
+
headers
|
|
28
|
+
}) {
|
|
33
29
|
return client.get("/payment-terminals", {
|
|
34
30
|
params: query,
|
|
35
|
-
headers: authorizationHeaders({
|
|
31
|
+
headers: authorizationHeaders({
|
|
32
|
+
token,
|
|
33
|
+
internalAuthTokenProvider,
|
|
34
|
+
headers
|
|
35
|
+
})
|
|
36
36
|
});
|
|
37
37
|
}
|
|
38
38
|
|
|
@@ -45,13 +45,17 @@ function paymentTerminalFactory(_ref) {
|
|
|
45
45
|
* @returns {Promise<import("axios").AxiosResponse<{ paymentTerminal: Object }>>}
|
|
46
46
|
* @throws When the request fails (400 INVALID_PAYMENT_TERMINAL_ID, 401, 404 PAYMENT_TERMINAL_NOT_FOUND, 500)
|
|
47
47
|
*/
|
|
48
|
-
function get(
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
return client.get(
|
|
54
|
-
headers: authorizationHeaders({
|
|
48
|
+
function get({
|
|
49
|
+
paymentTerminalId,
|
|
50
|
+
token,
|
|
51
|
+
headers
|
|
52
|
+
}) {
|
|
53
|
+
return client.get(`/payment-terminals/${paymentTerminalId}`, {
|
|
54
|
+
headers: authorizationHeaders({
|
|
55
|
+
token,
|
|
56
|
+
internalAuthTokenProvider,
|
|
57
|
+
headers
|
|
58
|
+
})
|
|
55
59
|
});
|
|
56
60
|
}
|
|
57
61
|
|
|
@@ -65,18 +69,23 @@ function paymentTerminalFactory(_ref) {
|
|
|
65
69
|
* @returns {Promise<import("axios").AxiosResponse<{ paymentTerminal: Object }>>}
|
|
66
70
|
* @throws When the request fails (400 WRONG_DATA, 401, 500)
|
|
67
71
|
*/
|
|
68
|
-
function create(
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
function create({
|
|
73
|
+
jwtToken,
|
|
74
|
+
token,
|
|
75
|
+
paymentTerminal,
|
|
76
|
+
headers
|
|
77
|
+
}) {
|
|
74
78
|
return client({
|
|
75
79
|
url: "/payment-terminals",
|
|
76
80
|
method: "post",
|
|
77
|
-
headers: authorizationHeaders({
|
|
81
|
+
headers: authorizationHeaders({
|
|
82
|
+
token,
|
|
83
|
+
jwtToken,
|
|
84
|
+
internalAuthTokenProvider,
|
|
85
|
+
headers
|
|
86
|
+
}),
|
|
78
87
|
data: {
|
|
79
|
-
paymentTerminal
|
|
88
|
+
paymentTerminal
|
|
80
89
|
}
|
|
81
90
|
});
|
|
82
91
|
}
|
|
@@ -91,16 +100,21 @@ function paymentTerminalFactory(_ref) {
|
|
|
91
100
|
* @returns {Promise<import("axios").AxiosResponse<{ paymentTerminalId: string }>>}
|
|
92
101
|
* @throws When the request fails (400 INVALID_PAYMENT_TERMINAL_ID, 401, 404 PAYMENT_TERMINAL_NOT_FOUND, 500)
|
|
93
102
|
*/
|
|
94
|
-
function remove(
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
103
|
+
function remove({
|
|
104
|
+
jwtToken,
|
|
105
|
+
paymentTerminalId,
|
|
106
|
+
token,
|
|
107
|
+
headers
|
|
108
|
+
}) {
|
|
100
109
|
return client({
|
|
101
|
-
url:
|
|
110
|
+
url: `/payment-terminals/${paymentTerminalId}`,
|
|
102
111
|
method: "delete",
|
|
103
|
-
headers: authorizationHeaders({
|
|
112
|
+
headers: authorizationHeaders({
|
|
113
|
+
token,
|
|
114
|
+
jwtToken,
|
|
115
|
+
internalAuthTokenProvider,
|
|
116
|
+
headers
|
|
117
|
+
})
|
|
104
118
|
});
|
|
105
119
|
}
|
|
106
120
|
|
|
@@ -115,30 +129,33 @@ function paymentTerminalFactory(_ref) {
|
|
|
115
129
|
* @returns {Promise<import("axios").AxiosResponse<{ paymentTerminal: Object }>>}
|
|
116
130
|
* @throws When the request fails (400 WRONG_DATA, 401, 404 PAYMENT_TERMINAL_NOT_FOUND, 500)
|
|
117
131
|
*/
|
|
118
|
-
function update(
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
132
|
+
function update({
|
|
133
|
+
jwtToken,
|
|
134
|
+
token,
|
|
135
|
+
paymentTerminalId,
|
|
136
|
+
paymentTerminal,
|
|
137
|
+
headers
|
|
138
|
+
}) {
|
|
125
139
|
return client({
|
|
126
|
-
url:
|
|
140
|
+
url: `/payment-terminals/${paymentTerminalId}`,
|
|
127
141
|
method: "put",
|
|
128
|
-
headers: authorizationHeaders({
|
|
142
|
+
headers: authorizationHeaders({
|
|
143
|
+
token,
|
|
144
|
+
jwtToken,
|
|
145
|
+
internalAuthTokenProvider,
|
|
146
|
+
headers
|
|
147
|
+
}),
|
|
129
148
|
data: {
|
|
130
|
-
paymentTerminal
|
|
149
|
+
paymentTerminal
|
|
131
150
|
}
|
|
132
151
|
});
|
|
133
152
|
}
|
|
134
|
-
|
|
135
153
|
return {
|
|
136
|
-
all
|
|
137
|
-
get
|
|
138
|
-
create
|
|
139
|
-
update
|
|
140
|
-
remove
|
|
154
|
+
all,
|
|
155
|
+
get,
|
|
156
|
+
create,
|
|
157
|
+
update,
|
|
158
|
+
remove
|
|
141
159
|
};
|
|
142
160
|
}
|
|
143
|
-
|
|
144
161
|
module.exports = paymentTerminalFactory;
|
|
@@ -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 /prisma-terminals (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -19,12 +18,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
19
18
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
20
19
|
* @returns {{ all: function, get: function, create: function, update: function, remove: function }}
|
|
21
20
|
*/
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
27
|
-
|
|
21
|
+
function prismaTerminalFactory({
|
|
22
|
+
client,
|
|
23
|
+
internalAuthTokenProvider
|
|
24
|
+
}) {
|
|
28
25
|
/**
|
|
29
26
|
* GET /prisma-terminals - list prisma terminals.
|
|
30
27
|
* @param {Object} opts
|
|
@@ -34,16 +31,20 @@ function prismaTerminalFactory(_ref) {
|
|
|
34
31
|
* @param {Object} [opts.headers] - Optional headers
|
|
35
32
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
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("/prisma-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
|
|
|
@@ -56,14 +57,19 @@ function prismaTerminalFactory(_ref) {
|
|
|
56
57
|
* @param {Object} [opts.headers] - Optional headers
|
|
57
58
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
58
59
|
*/
|
|
59
|
-
function get(
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
return client.get(
|
|
66
|
-
headers: authorizationHeaders({
|
|
60
|
+
function get({
|
|
61
|
+
prismaTerminalId,
|
|
62
|
+
token,
|
|
63
|
+
jwtToken,
|
|
64
|
+
headers
|
|
65
|
+
}) {
|
|
66
|
+
return client.get(`/prisma-terminals/${prismaTerminalId}`, {
|
|
67
|
+
headers: authorizationHeaders({
|
|
68
|
+
token,
|
|
69
|
+
jwtToken,
|
|
70
|
+
internalAuthTokenProvider,
|
|
71
|
+
headers
|
|
72
|
+
})
|
|
67
73
|
});
|
|
68
74
|
}
|
|
69
75
|
|
|
@@ -76,18 +82,23 @@ function prismaTerminalFactory(_ref) {
|
|
|
76
82
|
* @param {Object} [opts.headers] - Optional headers
|
|
77
83
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
78
84
|
*/
|
|
79
|
-
function create(
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
+
function create({
|
|
86
|
+
jwtToken,
|
|
87
|
+
token,
|
|
88
|
+
prismaTerminal,
|
|
89
|
+
headers
|
|
90
|
+
}) {
|
|
85
91
|
return client({
|
|
86
92
|
url: "/prisma-terminals",
|
|
87
93
|
method: "post",
|
|
88
|
-
headers: authorizationHeaders({
|
|
94
|
+
headers: authorizationHeaders({
|
|
95
|
+
token,
|
|
96
|
+
jwtToken,
|
|
97
|
+
internalAuthTokenProvider,
|
|
98
|
+
headers
|
|
99
|
+
}),
|
|
89
100
|
data: {
|
|
90
|
-
prismaTerminal
|
|
101
|
+
prismaTerminal
|
|
91
102
|
}
|
|
92
103
|
});
|
|
93
104
|
}
|
|
@@ -101,16 +112,21 @@ function prismaTerminalFactory(_ref) {
|
|
|
101
112
|
* @param {Object} [opts.headers] - Optional headers
|
|
102
113
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
103
114
|
*/
|
|
104
|
-
function remove(
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
115
|
+
function remove({
|
|
116
|
+
jwtToken,
|
|
117
|
+
prismaTerminalId,
|
|
118
|
+
token,
|
|
119
|
+
headers
|
|
120
|
+
}) {
|
|
110
121
|
return client({
|
|
111
|
-
url:
|
|
122
|
+
url: `/prisma-terminals/${prismaTerminalId}`,
|
|
112
123
|
method: "delete",
|
|
113
|
-
headers: authorizationHeaders({
|
|
124
|
+
headers: authorizationHeaders({
|
|
125
|
+
token,
|
|
126
|
+
jwtToken,
|
|
127
|
+
internalAuthTokenProvider,
|
|
128
|
+
headers
|
|
129
|
+
})
|
|
114
130
|
});
|
|
115
131
|
}
|
|
116
132
|
|
|
@@ -124,30 +140,33 @@ function prismaTerminalFactory(_ref) {
|
|
|
124
140
|
* @param {Object} [opts.headers] - Optional headers
|
|
125
141
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
126
142
|
*/
|
|
127
|
-
function update(
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
143
|
+
function update({
|
|
144
|
+
jwtToken,
|
|
145
|
+
token,
|
|
146
|
+
prismaTerminalId,
|
|
147
|
+
prismaTerminal,
|
|
148
|
+
headers
|
|
149
|
+
}) {
|
|
134
150
|
return client({
|
|
135
|
-
url:
|
|
151
|
+
url: `/prisma-terminals/${prismaTerminalId}`,
|
|
136
152
|
method: "put",
|
|
137
|
-
headers: authorizationHeaders({
|
|
153
|
+
headers: authorizationHeaders({
|
|
154
|
+
token,
|
|
155
|
+
jwtToken,
|
|
156
|
+
internalAuthTokenProvider,
|
|
157
|
+
headers
|
|
158
|
+
}),
|
|
138
159
|
data: {
|
|
139
|
-
prismaTerminal
|
|
160
|
+
prismaTerminal
|
|
140
161
|
}
|
|
141
162
|
});
|
|
142
163
|
}
|
|
143
|
-
|
|
144
164
|
return {
|
|
145
|
-
all
|
|
146
|
-
get
|
|
147
|
-
create
|
|
148
|
-
update
|
|
149
|
-
remove
|
|
165
|
+
all,
|
|
166
|
+
get,
|
|
167
|
+
create,
|
|
168
|
+
update,
|
|
169
|
+
remove
|
|
150
170
|
};
|
|
151
171
|
}
|
|
152
|
-
|
|
153
172
|
module.exports = prismaTerminalFactory;
|
|
@@ -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 /products (btrz-api-inventory). See get-products getSpec().
|
|
@@ -36,12 +35,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
36
35
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
37
36
|
* @returns {{ all: function, get: function, create: function, update: function, families: object, domains: object }}
|
|
38
37
|
*/
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
44
|
-
|
|
38
|
+
function productsFactory({
|
|
39
|
+
client,
|
|
40
|
+
internalAuthTokenProvider
|
|
41
|
+
}) {
|
|
45
42
|
/**
|
|
46
43
|
* GET /products - list products.
|
|
47
44
|
* @param {Object} opts
|
|
@@ -53,16 +50,19 @@ function productsFactory(_ref) {
|
|
|
53
50
|
* Resolves with list of products; response.data has Products shape.
|
|
54
51
|
* @throws When the request fails (400 invalid channels, 401 unauthorized, 500). ErrorResponse body.
|
|
55
52
|
*/
|
|
56
|
-
function all(
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
53
|
+
function all({
|
|
54
|
+
token,
|
|
55
|
+
query = {},
|
|
56
|
+
headers
|
|
57
|
+
}) {
|
|
62
58
|
return client({
|
|
63
59
|
url: "/products",
|
|
64
60
|
params: query,
|
|
65
|
-
headers: authorizationHeaders({
|
|
61
|
+
headers: authorizationHeaders({
|
|
62
|
+
token,
|
|
63
|
+
internalAuthTokenProvider,
|
|
64
|
+
headers
|
|
65
|
+
})
|
|
66
66
|
});
|
|
67
67
|
}
|
|
68
68
|
|
|
@@ -78,18 +78,22 @@ function productsFactory(_ref) {
|
|
|
78
78
|
* Resolves with single product; response.data.product is the Product.
|
|
79
79
|
* @throws When the request fails (400/401/404/500). Body: INVALID_PRODUCTID, WRONG_DATA, PRODUCT_NOTFOUND.
|
|
80
80
|
*/
|
|
81
|
-
function get(
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
81
|
+
function get({
|
|
82
|
+
productId,
|
|
83
|
+
token,
|
|
84
|
+
jwtToken,
|
|
85
|
+
query = {},
|
|
86
|
+
headers
|
|
87
|
+
}) {
|
|
89
88
|
return client({
|
|
90
|
-
url:
|
|
89
|
+
url: `/products/${productId}`,
|
|
91
90
|
params: query,
|
|
92
|
-
headers: authorizationHeaders({
|
|
91
|
+
headers: authorizationHeaders({
|
|
92
|
+
token,
|
|
93
|
+
internalAuthTokenProvider,
|
|
94
|
+
jwtToken,
|
|
95
|
+
headers
|
|
96
|
+
})
|
|
93
97
|
});
|
|
94
98
|
}
|
|
95
99
|
|
|
@@ -105,17 +109,22 @@ function productsFactory(_ref) {
|
|
|
105
109
|
* @throws When the request fails (400/401/500). Body: DUPLICATE_PRODUCT, CANNOT_CREATE_PRODUCT_WITH_ID,
|
|
106
110
|
* INVALID_PAYMENT_METHODS, INVALID_PARENT_PRODUCT_ID, INVALID_JOURNEY_RESTRICTIONS, INVALID_PRODUCT_NAME, etc.
|
|
107
111
|
*/
|
|
108
|
-
function create(
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
112
|
+
function create({
|
|
113
|
+
data,
|
|
114
|
+
token,
|
|
115
|
+
jwtToken,
|
|
116
|
+
headers
|
|
117
|
+
}) {
|
|
114
118
|
return client({
|
|
115
119
|
url: "/products",
|
|
116
120
|
method: "post",
|
|
117
|
-
headers: authorizationHeaders({
|
|
118
|
-
|
|
121
|
+
headers: authorizationHeaders({
|
|
122
|
+
token,
|
|
123
|
+
jwtToken,
|
|
124
|
+
internalAuthTokenProvider,
|
|
125
|
+
headers
|
|
126
|
+
}),
|
|
127
|
+
data
|
|
119
128
|
});
|
|
120
129
|
}
|
|
121
130
|
|
|
@@ -132,23 +141,28 @@ function productsFactory(_ref) {
|
|
|
132
141
|
* @throws When the request fails (400/401/404/500). Body: NOT_FOUND, INVALID_PAYMENT_METHODS,
|
|
133
142
|
* CANNOT_SET_PARENT_AS_CHILD, INVALID_JOURNEY_RESTRICTIONS, INVALID_PRODUCT_NAME, etc.
|
|
134
143
|
*/
|
|
135
|
-
function update(
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
144
|
+
function update({
|
|
145
|
+
productId,
|
|
146
|
+
data,
|
|
147
|
+
token,
|
|
148
|
+
jwtToken,
|
|
149
|
+
headers
|
|
150
|
+
}) {
|
|
142
151
|
return client({
|
|
143
|
-
url:
|
|
152
|
+
url: `/products/${productId}`,
|
|
144
153
|
method: "put",
|
|
145
|
-
headers: authorizationHeaders({
|
|
146
|
-
|
|
154
|
+
headers: authorizationHeaders({
|
|
155
|
+
token,
|
|
156
|
+
jwtToken,
|
|
157
|
+
internalAuthTokenProvider,
|
|
158
|
+
headers
|
|
159
|
+
}),
|
|
160
|
+
data
|
|
147
161
|
});
|
|
148
162
|
}
|
|
149
163
|
|
|
150
164
|
/** @type {{ remove: function }} */
|
|
151
|
-
|
|
165
|
+
const domains = {
|
|
152
166
|
/**
|
|
153
167
|
* DELETE /products/domains/:domain - remove product domain. API does not accept query params.
|
|
154
168
|
* @param {Object} opts
|
|
@@ -159,22 +173,27 @@ function productsFactory(_ref) {
|
|
|
159
173
|
* @returns {Promise<import("axios").AxiosResponse>} Resolves on success. May emit product.updated.
|
|
160
174
|
* @throws When the request fails (401, 404, 500).
|
|
161
175
|
*/
|
|
162
|
-
remove:
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
176
|
+
remove: ({
|
|
177
|
+
token,
|
|
178
|
+
jwtToken,
|
|
179
|
+
domain,
|
|
180
|
+
headers
|
|
181
|
+
}) => {
|
|
168
182
|
return client({
|
|
169
|
-
url:
|
|
183
|
+
url: `/products/domains/${domain}`,
|
|
170
184
|
method: "delete",
|
|
171
|
-
headers: authorizationHeaders({
|
|
185
|
+
headers: authorizationHeaders({
|
|
186
|
+
token,
|
|
187
|
+
jwtToken,
|
|
188
|
+
internalAuthTokenProvider,
|
|
189
|
+
headers
|
|
190
|
+
})
|
|
172
191
|
});
|
|
173
192
|
}
|
|
174
193
|
};
|
|
175
194
|
|
|
176
195
|
/** @type {{ all: function }} */
|
|
177
|
-
|
|
196
|
+
const families = {
|
|
178
197
|
/**
|
|
179
198
|
* GET /products/families - list product families. API does not accept query params.
|
|
180
199
|
* @param {Object} opts
|
|
@@ -184,28 +203,29 @@ function productsFactory(_ref) {
|
|
|
184
203
|
* @returns {Promise<import("axios").AxiosResponse>} Resolves with list of product families.
|
|
185
204
|
* @throws When the request fails (401, 500).
|
|
186
205
|
*/
|
|
187
|
-
all:
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
206
|
+
all: ({
|
|
207
|
+
token,
|
|
208
|
+
query = {},
|
|
209
|
+
headers
|
|
210
|
+
}) => {
|
|
193
211
|
return client({
|
|
194
212
|
url: "/products/families",
|
|
195
213
|
params: query,
|
|
196
|
-
headers: authorizationHeaders({
|
|
214
|
+
headers: authorizationHeaders({
|
|
215
|
+
token,
|
|
216
|
+
internalAuthTokenProvider,
|
|
217
|
+
headers
|
|
218
|
+
})
|
|
197
219
|
});
|
|
198
220
|
}
|
|
199
221
|
};
|
|
200
|
-
|
|
201
222
|
return {
|
|
202
|
-
all
|
|
203
|
-
get
|
|
204
|
-
create
|
|
205
|
-
update
|
|
206
|
-
families
|
|
207
|
-
domains
|
|
223
|
+
all,
|
|
224
|
+
get,
|
|
225
|
+
create,
|
|
226
|
+
update,
|
|
227
|
+
families,
|
|
228
|
+
domains
|
|
208
229
|
};
|
|
209
230
|
}
|
|
210
|
-
|
|
211
231
|
module.exports = productsFactory;
|