btrz-api-client 8.75.1 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +112 -85
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +258 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/operations/transactions.js +1 -1
- package/src/endpoints/sales/cart.js +31 -1
- package/test/endpoints/sales/cart.test.js +6 -0
- package/tools/build-standalone.mjs +15 -0
- package/.eslint-report.json +0 -1
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/* eslint-disable max-len */
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
const {
|
|
3
|
+
authorizationHeaders
|
|
4
|
+
} = require("./../endpoints_helpers.js");
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* Factory for invoice provider sequences API (btrz-api-invoices).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ all: function, get: function, remove: function, create: function, update: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function providersSequencesFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /providers/:invoiceProviderId/sequences - list provider sequences. API does not accept query params.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -26,18 +23,22 @@ function providersSequencesFactory(_ref) {
|
|
|
26
23
|
* @param {Object} [opts.headers] - Optional headers
|
|
27
24
|
* @returns {Promise<import("axios").AxiosResponse>} 404 PROVIDER_NOT_FOUND
|
|
28
25
|
*/
|
|
29
|
-
function all(
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
26
|
+
function all({
|
|
27
|
+
token,
|
|
28
|
+
jwtToken,
|
|
29
|
+
invoiceProviderId,
|
|
30
|
+
query = {},
|
|
31
|
+
headers
|
|
32
|
+
}) {
|
|
37
33
|
return client({
|
|
38
|
-
url:
|
|
34
|
+
url: `/providers/${invoiceProviderId}/sequences`,
|
|
39
35
|
method: "get",
|
|
40
|
-
headers: authorizationHeaders({
|
|
36
|
+
headers: authorizationHeaders({
|
|
37
|
+
token,
|
|
38
|
+
jwtToken,
|
|
39
|
+
internalAuthTokenProvider,
|
|
40
|
+
headers
|
|
41
|
+
}),
|
|
41
42
|
params: query
|
|
42
43
|
});
|
|
43
44
|
}
|
|
@@ -52,19 +53,23 @@ function providersSequencesFactory(_ref) {
|
|
|
52
53
|
* @param {Object} [opts.headers] - Optional headers
|
|
53
54
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
54
55
|
*/
|
|
55
|
-
function get(
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
56
|
+
function get({
|
|
57
|
+
token,
|
|
58
|
+
jwtToken,
|
|
59
|
+
invoiceProviderId,
|
|
60
|
+
invoiceProviderSequenceId,
|
|
61
|
+
query = {},
|
|
62
|
+
headers
|
|
63
|
+
}) {
|
|
64
64
|
return client({
|
|
65
|
-
url:
|
|
65
|
+
url: `/providers/${invoiceProviderId}/sequences/${invoiceProviderSequenceId}`,
|
|
66
66
|
method: "get",
|
|
67
|
-
headers: authorizationHeaders({
|
|
67
|
+
headers: authorizationHeaders({
|
|
68
|
+
token,
|
|
69
|
+
jwtToken,
|
|
70
|
+
internalAuthTokenProvider,
|
|
71
|
+
headers
|
|
72
|
+
}),
|
|
68
73
|
params: query
|
|
69
74
|
});
|
|
70
75
|
}
|
|
@@ -79,19 +84,23 @@ function providersSequencesFactory(_ref) {
|
|
|
79
84
|
* @param {Object} [opts.headers] - Optional headers
|
|
80
85
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
81
86
|
*/
|
|
82
|
-
function remove(
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
87
|
+
function remove({
|
|
88
|
+
token,
|
|
89
|
+
jwtToken,
|
|
90
|
+
invoiceProviderId,
|
|
91
|
+
id,
|
|
92
|
+
query = {},
|
|
93
|
+
headers
|
|
94
|
+
}) {
|
|
91
95
|
return client({
|
|
92
|
-
url:
|
|
96
|
+
url: `/providers/${invoiceProviderId}/sequences/${id}`,
|
|
93
97
|
method: "delete",
|
|
94
|
-
headers: authorizationHeaders({
|
|
98
|
+
headers: authorizationHeaders({
|
|
99
|
+
token,
|
|
100
|
+
jwtToken,
|
|
101
|
+
internalAuthTokenProvider,
|
|
102
|
+
headers
|
|
103
|
+
}),
|
|
95
104
|
params: query
|
|
96
105
|
});
|
|
97
106
|
}
|
|
@@ -106,21 +115,25 @@ function providersSequencesFactory(_ref) {
|
|
|
106
115
|
* @param {Object} [opts.headers] - Optional headers
|
|
107
116
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
108
117
|
*/
|
|
109
|
-
function create(
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
+
function create({
|
|
119
|
+
token,
|
|
120
|
+
jwtToken,
|
|
121
|
+
invoiceProviderId,
|
|
122
|
+
data,
|
|
123
|
+
query = {},
|
|
124
|
+
headers
|
|
125
|
+
}) {
|
|
118
126
|
return client({
|
|
119
|
-
url:
|
|
127
|
+
url: `/providers/${invoiceProviderId}/sequences`,
|
|
120
128
|
method: "post",
|
|
121
|
-
headers: authorizationHeaders({
|
|
129
|
+
headers: authorizationHeaders({
|
|
130
|
+
token,
|
|
131
|
+
jwtToken,
|
|
132
|
+
internalAuthTokenProvider,
|
|
133
|
+
headers
|
|
134
|
+
}),
|
|
122
135
|
params: query,
|
|
123
|
-
data
|
|
136
|
+
data
|
|
124
137
|
});
|
|
125
138
|
}
|
|
126
139
|
|
|
@@ -135,32 +148,34 @@ function providersSequencesFactory(_ref) {
|
|
|
135
148
|
* @param {Object} [opts.headers] - Optional headers
|
|
136
149
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
137
150
|
*/
|
|
138
|
-
function update(
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
151
|
+
function update({
|
|
152
|
+
token,
|
|
153
|
+
jwtToken,
|
|
154
|
+
invoiceProviderId,
|
|
155
|
+
invoiceProviderSequenceId,
|
|
156
|
+
data,
|
|
157
|
+
query = {},
|
|
158
|
+
headers
|
|
159
|
+
}) {
|
|
148
160
|
return client({
|
|
149
|
-
url:
|
|
161
|
+
url: `/providers/${invoiceProviderId}/sequences/${invoiceProviderSequenceId}`,
|
|
150
162
|
method: "put",
|
|
151
|
-
headers: authorizationHeaders({
|
|
163
|
+
headers: authorizationHeaders({
|
|
164
|
+
token,
|
|
165
|
+
jwtToken,
|
|
166
|
+
internalAuthTokenProvider,
|
|
167
|
+
headers
|
|
168
|
+
}),
|
|
152
169
|
params: query,
|
|
153
|
-
data
|
|
170
|
+
data
|
|
154
171
|
});
|
|
155
172
|
}
|
|
156
|
-
|
|
157
173
|
return {
|
|
158
|
-
all
|
|
159
|
-
get
|
|
160
|
-
remove
|
|
161
|
-
create
|
|
162
|
-
update
|
|
174
|
+
all,
|
|
175
|
+
get,
|
|
176
|
+
remove,
|
|
177
|
+
create,
|
|
178
|
+
update
|
|
163
179
|
};
|
|
164
180
|
}
|
|
165
|
-
|
|
166
181
|
module.exports = providersSequencesFactory;
|
|
@@ -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 POST /system (btrz-api-invoices). See post-system-handler getSpec().
|
|
@@ -17,12 +16,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
17
16
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
18
17
|
* @returns {{ create: function, validateCreate: function }}
|
|
19
18
|
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
25
|
-
|
|
19
|
+
function systemFactory({
|
|
20
|
+
client,
|
|
21
|
+
internalAuthTokenProvider
|
|
22
|
+
}) {
|
|
26
23
|
/**
|
|
27
24
|
* POST /system - create system invoice request.
|
|
28
25
|
* @param {Object} opts
|
|
@@ -33,20 +30,24 @@ function systemFactory(_ref) {
|
|
|
33
30
|
* @param {Object} [opts.headers] - Optional headers
|
|
34
31
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
35
32
|
*/
|
|
36
|
-
function create(
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
33
|
+
function create({
|
|
34
|
+
token,
|
|
35
|
+
jwtToken,
|
|
36
|
+
data,
|
|
37
|
+
query = {},
|
|
38
|
+
headers
|
|
39
|
+
}) {
|
|
44
40
|
return client({
|
|
45
41
|
url: "/system",
|
|
46
42
|
method: "post",
|
|
47
|
-
headers: authorizationHeaders({
|
|
43
|
+
headers: authorizationHeaders({
|
|
44
|
+
token,
|
|
45
|
+
jwtToken,
|
|
46
|
+
internalAuthTokenProvider,
|
|
47
|
+
headers
|
|
48
|
+
}),
|
|
48
49
|
params: query,
|
|
49
|
-
data
|
|
50
|
+
data
|
|
50
51
|
});
|
|
51
52
|
}
|
|
52
53
|
|
|
@@ -60,29 +61,31 @@ function systemFactory(_ref) {
|
|
|
60
61
|
* @param {Object} [opts.headers] - Optional headers
|
|
61
62
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
62
63
|
*/
|
|
63
|
-
function validateCreate(
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
64
|
+
function validateCreate({
|
|
65
|
+
token,
|
|
66
|
+
jwtToken,
|
|
67
|
+
data,
|
|
68
|
+
query = {},
|
|
69
|
+
headers
|
|
70
|
+
}) {
|
|
71
71
|
// eslint-disable-next-line no-param-reassign
|
|
72
72
|
query.onlyValidateRequest = true;
|
|
73
73
|
return client({
|
|
74
74
|
url: "/system",
|
|
75
75
|
method: "post",
|
|
76
|
-
headers: authorizationHeaders({
|
|
76
|
+
headers: authorizationHeaders({
|
|
77
|
+
token,
|
|
78
|
+
jwtToken,
|
|
79
|
+
internalAuthTokenProvider,
|
|
80
|
+
headers
|
|
81
|
+
}),
|
|
77
82
|
params: query,
|
|
78
|
-
data
|
|
83
|
+
data
|
|
79
84
|
});
|
|
80
85
|
}
|
|
81
|
-
|
|
82
86
|
return {
|
|
83
|
-
create
|
|
84
|
-
validateCreate
|
|
87
|
+
create,
|
|
88
|
+
validateCreate
|
|
85
89
|
};
|
|
86
90
|
}
|
|
87
|
-
|
|
88
91
|
module.exports = systemFactory;
|
|
@@ -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 /tax-ids (btrz-api-invoices). See tax-ids get-handler getSpec().
|
|
@@ -20,12 +19,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
20
19
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
21
20
|
* @returns {{ all: function }}
|
|
22
21
|
*/
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
28
|
-
|
|
22
|
+
function taxIdsFactory({
|
|
23
|
+
client,
|
|
24
|
+
internalAuthTokenProvider
|
|
25
|
+
}) {
|
|
29
26
|
/**
|
|
30
27
|
* GET /tax-ids — List tax ID information (paginated). Merges internal tax IDs with external provider validation when invoiceProviderId is provided.
|
|
31
28
|
* @param {Object} opts
|
|
@@ -39,24 +36,26 @@ function taxIdsFactory(_ref) {
|
|
|
39
36
|
* @throws 404 TAXID_NOT_FOUND, PROVIDER_NOT_FOUND
|
|
40
37
|
* @throws 500 Internal server error
|
|
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({
|
|
50
46
|
url: "/tax-ids",
|
|
51
47
|
method: "get",
|
|
52
|
-
headers: authorizationHeaders({
|
|
48
|
+
headers: authorizationHeaders({
|
|
49
|
+
token,
|
|
50
|
+
jwtToken,
|
|
51
|
+
internalAuthTokenProvider,
|
|
52
|
+
headers
|
|
53
|
+
}),
|
|
53
54
|
params: query
|
|
54
55
|
});
|
|
55
56
|
}
|
|
56
|
-
|
|
57
57
|
return {
|
|
58
|
-
all
|
|
58
|
+
all
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
|
-
|
|
62
61
|
module.exports = taxIdsFactory;
|
|
@@ -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 /programs/:programId/movements and related (loyalty). Documented from client; backend may support pagination/filters.
|
|
@@ -18,12 +17,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ all: function, create: function, balance: Object }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function movementsFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET /programs/:programId/movements - list movements.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -34,18 +31,22 @@ function movementsFactory(_ref) {
|
|
|
34
31
|
* @param {Object} [opts.headers] - Optional request headers
|
|
35
32
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
36
33
|
*/
|
|
37
|
-
function all(
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
34
|
+
function all({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
programId,
|
|
38
|
+
query = {},
|
|
39
|
+
headers
|
|
40
|
+
}) {
|
|
45
41
|
return client({
|
|
46
|
-
url:
|
|
42
|
+
url: `/programs/${programId}/movements`,
|
|
47
43
|
params: query,
|
|
48
|
-
headers: authorizationHeaders({
|
|
44
|
+
headers: authorizationHeaders({
|
|
45
|
+
token,
|
|
46
|
+
jwtToken,
|
|
47
|
+
internalAuthTokenProvider,
|
|
48
|
+
headers
|
|
49
|
+
})
|
|
49
50
|
});
|
|
50
51
|
}
|
|
51
52
|
|
|
@@ -60,25 +61,28 @@ function movementsFactory(_ref) {
|
|
|
60
61
|
* @param {Object} [opts.headers] - Optional request headers
|
|
61
62
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
62
63
|
*/
|
|
63
|
-
function create(
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
64
|
+
function create({
|
|
65
|
+
token,
|
|
66
|
+
jwtToken,
|
|
67
|
+
programId,
|
|
68
|
+
movement,
|
|
69
|
+
query = {},
|
|
70
|
+
headers
|
|
71
|
+
}) {
|
|
72
72
|
return client({
|
|
73
|
-
url:
|
|
73
|
+
url: `/programs/${programId}/movements`,
|
|
74
74
|
method: "post",
|
|
75
75
|
params: query,
|
|
76
|
-
headers: authorizationHeaders({
|
|
76
|
+
headers: authorizationHeaders({
|
|
77
|
+
token,
|
|
78
|
+
jwtToken,
|
|
79
|
+
internalAuthTokenProvider,
|
|
80
|
+
headers
|
|
81
|
+
}),
|
|
77
82
|
data: movement
|
|
78
83
|
});
|
|
79
84
|
}
|
|
80
|
-
|
|
81
|
-
var balance = {
|
|
85
|
+
const balance = {
|
|
82
86
|
/**
|
|
83
87
|
* GET /programs/:programId/movements/balance/:customerId - get balance.
|
|
84
88
|
* @param {Object} opts
|
|
@@ -90,28 +94,30 @@ function movementsFactory(_ref) {
|
|
|
90
94
|
* @param {Object} [opts.headers] - Optional request headers
|
|
91
95
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
92
96
|
*/
|
|
93
|
-
get
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
97
|
+
get({
|
|
98
|
+
token,
|
|
99
|
+
jwtToken,
|
|
100
|
+
programId,
|
|
101
|
+
customerId,
|
|
102
|
+
query = {},
|
|
103
|
+
headers
|
|
104
|
+
}) {
|
|
102
105
|
return client({
|
|
103
|
-
url:
|
|
106
|
+
url: `/programs/${programId}/movements/balance/${customerId}`,
|
|
104
107
|
params: query,
|
|
105
|
-
headers: authorizationHeaders({
|
|
108
|
+
headers: authorizationHeaders({
|
|
109
|
+
token,
|
|
110
|
+
jwtToken,
|
|
111
|
+
internalAuthTokenProvider,
|
|
112
|
+
headers
|
|
113
|
+
})
|
|
106
114
|
});
|
|
107
115
|
}
|
|
108
116
|
};
|
|
109
|
-
|
|
110
117
|
return {
|
|
111
|
-
all
|
|
112
|
-
create
|
|
113
|
-
balance
|
|
118
|
+
all,
|
|
119
|
+
create,
|
|
120
|
+
balance
|
|
114
121
|
};
|
|
115
122
|
}
|
|
116
|
-
|
|
117
123
|
module.exports = movementsFactory;
|
|
@@ -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 /programs (loyalty). Client merges context into query.
|
|
@@ -17,12 +16,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
17
16
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
18
17
|
* @returns {{ all: function, create: function, put: function }}
|
|
19
18
|
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
25
|
-
|
|
19
|
+
function programsFactory({
|
|
20
|
+
client,
|
|
21
|
+
internalAuthTokenProvider
|
|
22
|
+
}) {
|
|
26
23
|
/**
|
|
27
24
|
* GET /programs - list loyalty programs. Query is merged with context (context takes precedence in merge).
|
|
28
25
|
* @param {Object} opts
|
|
@@ -32,19 +29,23 @@ function programsFactory(_ref) {
|
|
|
32
29
|
* @param {Object} [opts.headers] - Optional request headers
|
|
33
30
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
34
31
|
*/
|
|
35
|
-
function all(
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
32
|
+
function all({
|
|
33
|
+
token,
|
|
34
|
+
context,
|
|
35
|
+
query = {},
|
|
36
|
+
headers
|
|
37
|
+
}) {
|
|
38
|
+
const queryObj = Object.assign({}, query, {
|
|
39
|
+
context
|
|
40
|
+
});
|
|
44
41
|
return client({
|
|
45
42
|
url: "/programs",
|
|
46
43
|
params: queryObj,
|
|
47
|
-
headers: authorizationHeaders({
|
|
44
|
+
headers: authorizationHeaders({
|
|
45
|
+
token,
|
|
46
|
+
internalAuthTokenProvider,
|
|
47
|
+
headers
|
|
48
|
+
})
|
|
48
49
|
});
|
|
49
50
|
}
|
|
50
51
|
|
|
@@ -57,16 +58,21 @@ function programsFactory(_ref) {
|
|
|
57
58
|
* @param {Object} [opts.headers] - Optional request headers
|
|
58
59
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
59
60
|
*/
|
|
60
|
-
function create(
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
61
|
+
function create({
|
|
62
|
+
token,
|
|
63
|
+
jwtToken,
|
|
64
|
+
program,
|
|
65
|
+
headers
|
|
66
|
+
}) {
|
|
66
67
|
return client({
|
|
67
68
|
url: "/programs",
|
|
68
69
|
method: "post",
|
|
69
|
-
headers: authorizationHeaders({
|
|
70
|
+
headers: authorizationHeaders({
|
|
71
|
+
token,
|
|
72
|
+
jwtToken,
|
|
73
|
+
internalAuthTokenProvider,
|
|
74
|
+
headers
|
|
75
|
+
}),
|
|
70
76
|
data: program
|
|
71
77
|
});
|
|
72
78
|
}
|
|
@@ -81,26 +87,29 @@ function programsFactory(_ref) {
|
|
|
81
87
|
* @param {Object} [opts.headers] - Optional request headers
|
|
82
88
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
83
89
|
*/
|
|
84
|
-
function put(
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
90
|
+
function put({
|
|
91
|
+
token,
|
|
92
|
+
jwtToken,
|
|
93
|
+
programId,
|
|
94
|
+
program,
|
|
95
|
+
headers
|
|
96
|
+
}) {
|
|
91
97
|
return client({
|
|
92
|
-
url:
|
|
98
|
+
url: `/programs/${programId}`,
|
|
93
99
|
method: "put",
|
|
94
|
-
headers: authorizationHeaders({
|
|
100
|
+
headers: authorizationHeaders({
|
|
101
|
+
token,
|
|
102
|
+
jwtToken,
|
|
103
|
+
internalAuthTokenProvider,
|
|
104
|
+
headers
|
|
105
|
+
}),
|
|
95
106
|
data: program
|
|
96
107
|
});
|
|
97
108
|
}
|
|
98
|
-
|
|
99
109
|
return {
|
|
100
|
-
all
|
|
101
|
-
create
|
|
102
|
-
put
|
|
110
|
+
all,
|
|
111
|
+
create,
|
|
112
|
+
put
|
|
103
113
|
};
|
|
104
114
|
}
|
|
105
|
-
|
|
106
115
|
module.exports = programsFactory;
|