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,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 /subscriptions (webhooks). Client merges opts.context into query.
|
|
@@ -16,12 +15,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
16
15
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
17
16
|
* @returns {{ all: function, getById: function, create: function, put: function, deleteById: function }}
|
|
18
17
|
*/
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
24
|
-
|
|
18
|
+
function subscriptionsFactory({
|
|
19
|
+
client,
|
|
20
|
+
internalAuthTokenProvider
|
|
21
|
+
}) {
|
|
25
22
|
/**
|
|
26
23
|
* GET /subscriptions - list webhook subscriptions. Query is merged with context (opts.context).
|
|
27
24
|
* @param {Object} opts
|
|
@@ -32,20 +29,25 @@ function subscriptionsFactory(_ref) {
|
|
|
32
29
|
* @param {Object} [opts.headers] - Optional headers
|
|
33
30
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
34
31
|
*/
|
|
35
|
-
function all(
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
32
|
+
function all({
|
|
33
|
+
token,
|
|
34
|
+
jwtToken,
|
|
35
|
+
context,
|
|
36
|
+
query = {},
|
|
37
|
+
headers
|
|
38
|
+
}) {
|
|
39
|
+
const queryObj = Object.assign({}, query, {
|
|
40
|
+
context
|
|
41
|
+
});
|
|
45
42
|
return client({
|
|
46
43
|
url: "/subscriptions",
|
|
47
44
|
params: queryObj,
|
|
48
|
-
headers: authorizationHeaders({
|
|
45
|
+
headers: authorizationHeaders({
|
|
46
|
+
token,
|
|
47
|
+
jwtToken,
|
|
48
|
+
internalAuthTokenProvider,
|
|
49
|
+
headers
|
|
50
|
+
})
|
|
49
51
|
});
|
|
50
52
|
}
|
|
51
53
|
|
|
@@ -58,16 +60,21 @@ function subscriptionsFactory(_ref) {
|
|
|
58
60
|
* @param {Object} [opts.headers] - Optional headers
|
|
59
61
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
60
62
|
*/
|
|
61
|
-
function getById(
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
63
|
+
function getById({
|
|
64
|
+
token,
|
|
65
|
+
jwtToken,
|
|
66
|
+
id,
|
|
67
|
+
headers
|
|
68
|
+
}) {
|
|
67
69
|
return client({
|
|
68
|
-
url:
|
|
70
|
+
url: `/subscriptions/${id}`,
|
|
69
71
|
method: "get",
|
|
70
|
-
headers: authorizationHeaders({
|
|
72
|
+
headers: authorizationHeaders({
|
|
73
|
+
token,
|
|
74
|
+
jwtToken,
|
|
75
|
+
internalAuthTokenProvider,
|
|
76
|
+
headers
|
|
77
|
+
})
|
|
71
78
|
});
|
|
72
79
|
}
|
|
73
80
|
|
|
@@ -80,16 +87,21 @@ function subscriptionsFactory(_ref) {
|
|
|
80
87
|
* @param {Object} [opts.headers] - Optional headers
|
|
81
88
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
82
89
|
*/
|
|
83
|
-
function create(
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
90
|
+
function create({
|
|
91
|
+
token,
|
|
92
|
+
jwtToken,
|
|
93
|
+
subscription,
|
|
94
|
+
headers
|
|
95
|
+
}) {
|
|
89
96
|
return client({
|
|
90
97
|
url: "/subscriptions",
|
|
91
98
|
method: "post",
|
|
92
|
-
headers: authorizationHeaders({
|
|
99
|
+
headers: authorizationHeaders({
|
|
100
|
+
token,
|
|
101
|
+
jwtToken,
|
|
102
|
+
internalAuthTokenProvider,
|
|
103
|
+
headers
|
|
104
|
+
}),
|
|
93
105
|
data: subscription
|
|
94
106
|
});
|
|
95
107
|
}
|
|
@@ -104,17 +116,22 @@ function subscriptionsFactory(_ref) {
|
|
|
104
116
|
* @param {Object} [opts.headers] - Optional headers
|
|
105
117
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
106
118
|
*/
|
|
107
|
-
function put(
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
119
|
+
function put({
|
|
120
|
+
token,
|
|
121
|
+
jwtToken,
|
|
122
|
+
id,
|
|
123
|
+
subscription,
|
|
124
|
+
headers
|
|
125
|
+
}) {
|
|
114
126
|
return client({
|
|
115
|
-
url:
|
|
127
|
+
url: `/subscriptions/${id}`,
|
|
116
128
|
method: "put",
|
|
117
|
-
headers: authorizationHeaders({
|
|
129
|
+
headers: authorizationHeaders({
|
|
130
|
+
token,
|
|
131
|
+
jwtToken,
|
|
132
|
+
internalAuthTokenProvider,
|
|
133
|
+
headers
|
|
134
|
+
}),
|
|
118
135
|
data: subscription
|
|
119
136
|
});
|
|
120
137
|
}
|
|
@@ -128,26 +145,29 @@ function subscriptionsFactory(_ref) {
|
|
|
128
145
|
* @param {Object} [opts.headers] - Optional headers
|
|
129
146
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
130
147
|
*/
|
|
131
|
-
function deleteById(
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
148
|
+
function deleteById({
|
|
149
|
+
token,
|
|
150
|
+
jwtToken,
|
|
151
|
+
id,
|
|
152
|
+
headers
|
|
153
|
+
}) {
|
|
137
154
|
return client({
|
|
138
|
-
url:
|
|
155
|
+
url: `/subscriptions/${id}`,
|
|
139
156
|
method: "delete",
|
|
140
|
-
headers: authorizationHeaders({
|
|
157
|
+
headers: authorizationHeaders({
|
|
158
|
+
token,
|
|
159
|
+
jwtToken,
|
|
160
|
+
internalAuthTokenProvider,
|
|
161
|
+
headers
|
|
162
|
+
})
|
|
141
163
|
});
|
|
142
164
|
}
|
|
143
|
-
|
|
144
165
|
return {
|
|
145
|
-
all
|
|
146
|
-
create
|
|
147
|
-
getById
|
|
148
|
-
put
|
|
149
|
-
deleteById
|
|
166
|
+
all,
|
|
167
|
+
create,
|
|
168
|
+
getById,
|
|
169
|
+
put,
|
|
170
|
+
deleteById
|
|
150
171
|
};
|
|
151
172
|
}
|
|
152
|
-
|
|
153
173
|
module.exports = subscriptionsFactory;
|
|
@@ -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 /undelivered (btrz-api-notifications). context can also be passed via opts.context and is merged 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, getById: function, patch: function, resend: function, resendAll: function, deleteById: function, deleteAll: function }}
|
|
19
18
|
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
25
|
-
|
|
19
|
+
function undeliveredFactory({
|
|
20
|
+
client,
|
|
21
|
+
internalAuthTokenProvider
|
|
22
|
+
}) {
|
|
26
23
|
/**
|
|
27
24
|
* GET /undelivered - list undelivered webhooks.
|
|
28
25
|
* @param {Object} opts
|
|
@@ -33,20 +30,25 @@ function undeliveredFactory(_ref) {
|
|
|
33
30
|
* @param {Object} [opts.headers] - Optional headers
|
|
34
31
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
35
32
|
*/
|
|
36
|
-
function all(
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
33
|
+
function all({
|
|
34
|
+
token,
|
|
35
|
+
jwtToken,
|
|
36
|
+
context,
|
|
37
|
+
query = {},
|
|
38
|
+
headers
|
|
39
|
+
}) {
|
|
40
|
+
const queryObj = Object.assign({}, query, {
|
|
41
|
+
context
|
|
42
|
+
});
|
|
46
43
|
return client({
|
|
47
44
|
url: "/undelivered",
|
|
48
45
|
params: queryObj,
|
|
49
|
-
headers: authorizationHeaders({
|
|
46
|
+
headers: authorizationHeaders({
|
|
47
|
+
token,
|
|
48
|
+
jwtToken,
|
|
49
|
+
internalAuthTokenProvider,
|
|
50
|
+
headers
|
|
51
|
+
})
|
|
50
52
|
});
|
|
51
53
|
}
|
|
52
54
|
|
|
@@ -59,16 +61,21 @@ function undeliveredFactory(_ref) {
|
|
|
59
61
|
* @param {Object} [opts.headers] - Optional headers
|
|
60
62
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
61
63
|
*/
|
|
62
|
-
function getById(
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
64
|
+
function getById({
|
|
65
|
+
token,
|
|
66
|
+
jwtToken,
|
|
67
|
+
id,
|
|
68
|
+
headers
|
|
69
|
+
}) {
|
|
68
70
|
return client({
|
|
69
|
-
url:
|
|
71
|
+
url: `/undelivered/${id}`,
|
|
70
72
|
method: "get",
|
|
71
|
-
headers: authorizationHeaders({
|
|
73
|
+
headers: authorizationHeaders({
|
|
74
|
+
token,
|
|
75
|
+
jwtToken,
|
|
76
|
+
internalAuthTokenProvider,
|
|
77
|
+
headers
|
|
78
|
+
})
|
|
72
79
|
});
|
|
73
80
|
}
|
|
74
81
|
|
|
@@ -81,16 +88,21 @@ function undeliveredFactory(_ref) {
|
|
|
81
88
|
* @param {Object} [opts.headers] - Optional headers
|
|
82
89
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
83
90
|
*/
|
|
84
|
-
function patch(
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
91
|
+
function patch({
|
|
92
|
+
token,
|
|
93
|
+
jwtToken,
|
|
94
|
+
operation,
|
|
95
|
+
headers
|
|
96
|
+
}) {
|
|
90
97
|
return client({
|
|
91
98
|
url: "/undelivered",
|
|
92
99
|
method: "patch",
|
|
93
|
-
headers: authorizationHeaders({
|
|
100
|
+
headers: authorizationHeaders({
|
|
101
|
+
token,
|
|
102
|
+
jwtToken,
|
|
103
|
+
internalAuthTokenProvider,
|
|
104
|
+
headers
|
|
105
|
+
}),
|
|
94
106
|
data: operation
|
|
95
107
|
});
|
|
96
108
|
}
|
|
@@ -104,16 +116,21 @@ function undeliveredFactory(_ref) {
|
|
|
104
116
|
* @param {Object} [opts.headers] - Optional headers
|
|
105
117
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
106
118
|
*/
|
|
107
|
-
function resend(
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
119
|
+
function resend({
|
|
120
|
+
token,
|
|
121
|
+
jwtToken,
|
|
122
|
+
id,
|
|
123
|
+
headers
|
|
124
|
+
}) {
|
|
113
125
|
return client({
|
|
114
|
-
url:
|
|
126
|
+
url: `/undelivered/${id}/retry`,
|
|
115
127
|
method: "put",
|
|
116
|
-
headers: authorizationHeaders({
|
|
128
|
+
headers: authorizationHeaders({
|
|
129
|
+
token,
|
|
130
|
+
jwtToken,
|
|
131
|
+
internalAuthTokenProvider,
|
|
132
|
+
headers
|
|
133
|
+
})
|
|
117
134
|
});
|
|
118
135
|
}
|
|
119
136
|
|
|
@@ -125,15 +142,20 @@ function undeliveredFactory(_ref) {
|
|
|
125
142
|
* @param {Object} [opts.headers] - Optional headers
|
|
126
143
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
127
144
|
*/
|
|
128
|
-
function resendAll(
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
145
|
+
function resendAll({
|
|
146
|
+
token,
|
|
147
|
+
jwtToken,
|
|
148
|
+
headers
|
|
149
|
+
}) {
|
|
133
150
|
return client({
|
|
134
151
|
url: "/undelivered/retry-all",
|
|
135
152
|
method: "put",
|
|
136
|
-
headers: authorizationHeaders({
|
|
153
|
+
headers: authorizationHeaders({
|
|
154
|
+
token,
|
|
155
|
+
jwtToken,
|
|
156
|
+
internalAuthTokenProvider,
|
|
157
|
+
headers
|
|
158
|
+
})
|
|
137
159
|
});
|
|
138
160
|
}
|
|
139
161
|
|
|
@@ -146,16 +168,21 @@ function undeliveredFactory(_ref) {
|
|
|
146
168
|
* @param {Object} [opts.headers] - Optional headers
|
|
147
169
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
148
170
|
*/
|
|
149
|
-
function deleteById(
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
171
|
+
function deleteById({
|
|
172
|
+
token,
|
|
173
|
+
jwtToken,
|
|
174
|
+
id,
|
|
175
|
+
headers
|
|
176
|
+
}) {
|
|
155
177
|
return client({
|
|
156
|
-
url:
|
|
178
|
+
url: `/undelivered/${id}`,
|
|
157
179
|
method: "delete",
|
|
158
|
-
headers: authorizationHeaders({
|
|
180
|
+
headers: authorizationHeaders({
|
|
181
|
+
token,
|
|
182
|
+
jwtToken,
|
|
183
|
+
internalAuthTokenProvider,
|
|
184
|
+
headers
|
|
185
|
+
})
|
|
159
186
|
});
|
|
160
187
|
}
|
|
161
188
|
|
|
@@ -167,27 +194,30 @@ function undeliveredFactory(_ref) {
|
|
|
167
194
|
* @param {Object} [opts.headers] - Optional headers
|
|
168
195
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
169
196
|
*/
|
|
170
|
-
function deleteAll(
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
197
|
+
function deleteAll({
|
|
198
|
+
token,
|
|
199
|
+
jwtToken,
|
|
200
|
+
headers
|
|
201
|
+
}) {
|
|
175
202
|
return client({
|
|
176
203
|
url: "/undelivered/batch-all",
|
|
177
204
|
method: "delete",
|
|
178
|
-
headers: authorizationHeaders({
|
|
205
|
+
headers: authorizationHeaders({
|
|
206
|
+
token,
|
|
207
|
+
jwtToken,
|
|
208
|
+
internalAuthTokenProvider,
|
|
209
|
+
headers
|
|
210
|
+
})
|
|
179
211
|
});
|
|
180
212
|
}
|
|
181
|
-
|
|
182
213
|
return {
|
|
183
|
-
all
|
|
184
|
-
getById
|
|
185
|
-
patch
|
|
186
|
-
resend
|
|
187
|
-
resendAll
|
|
188
|
-
deleteById
|
|
189
|
-
deleteAll
|
|
214
|
+
all,
|
|
215
|
+
getById,
|
|
216
|
+
patch,
|
|
217
|
+
resend,
|
|
218
|
+
resendAll,
|
|
219
|
+
deleteById,
|
|
220
|
+
deleteAll
|
|
190
221
|
};
|
|
191
222
|
}
|
|
192
|
-
|
|
193
223
|
module.exports = undeliveredFactory;
|
|
@@ -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 webhooks emit API (btrz-api-notifications).
|
|
@@ -10,12 +9,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ emit: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function webhooksFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* POST /emit - emit webhook.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -25,23 +22,26 @@ function webhooksFactory(_ref) {
|
|
|
25
22
|
* @param {Object} [opts.headers] - Optional headers
|
|
26
23
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
27
24
|
*/
|
|
28
|
-
function emit(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
25
|
+
function emit({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
webhook,
|
|
29
|
+
headers
|
|
30
|
+
}) {
|
|
34
31
|
return client({
|
|
35
32
|
url: "/emit",
|
|
36
33
|
method: "post",
|
|
37
|
-
headers: authorizationHeaders({
|
|
34
|
+
headers: authorizationHeaders({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
internalAuthTokenProvider,
|
|
38
|
+
headers
|
|
39
|
+
}),
|
|
38
40
|
data: webhook
|
|
39
41
|
});
|
|
40
42
|
}
|
|
41
|
-
|
|
42
43
|
return {
|
|
43
|
-
emit
|
|
44
|
+
emit
|
|
44
45
|
};
|
|
45
46
|
}
|
|
46
|
-
|
|
47
47
|
module.exports = webhooksFactory;
|
package/lib/initializedClient.js
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
* Default options for createApiClient when no options are passed.
|
|
5
3
|
* @type {{ baseURL: string, timeout: number, baseURLOverride: { inventory: function(string): string, trips: function(string): string } }}
|
|
@@ -8,14 +6,14 @@ module.exports = {
|
|
|
8
6
|
baseURL: "https://api.betterez.com",
|
|
9
7
|
timeout: 15000,
|
|
10
8
|
baseURLOverride: {
|
|
11
|
-
inventory:
|
|
12
|
-
return url
|
|
9
|
+
inventory: url => {
|
|
10
|
+
return `${url}/inventory`;
|
|
13
11
|
},
|
|
14
|
-
trips:
|
|
15
|
-
return url
|
|
12
|
+
trips: url => {
|
|
13
|
+
return `${url}/inventory`;
|
|
16
14
|
},
|
|
17
|
-
bpes:
|
|
18
|
-
return url
|
|
15
|
+
bpes: url => {
|
|
16
|
+
return `${url}/bpes`;
|
|
19
17
|
}
|
|
20
18
|
}
|
|
21
19
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "btrz-api-client",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.1.0",
|
|
4
4
|
"description": "Api client for Betterez endpoints",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
"test": "node --require ./test/node-test-globals.js --test test/all.test.js",
|
|
9
9
|
"test:only": "node --require ./test/node-test-globals.js --test test/all.test.js --test-only",
|
|
10
10
|
"test:integration": "node --require ./test/node-test-globals.js --require ./test-integration/ports.js --test test-integration/all.test.js",
|
|
11
|
-
"
|
|
11
|
+
"esbuild": "node tools/build-standalone.mjs",
|
|
12
12
|
"commit-transpile": "git add lib/ && (git diff-index --quiet HEAD || git commit -m \"transpiled src\")",
|
|
13
13
|
"pretranspile": "rm -rf lib/",
|
|
14
|
-
"transpile": "babel
|
|
15
|
-
"preversion": "npm test && npm run transpile && npm run
|
|
14
|
+
"transpile": "node ./node_modules/@babel/cli/bin/babel.js -d lib/ src/",
|
|
15
|
+
"preversion": "npm test && npm run transpile && npm run esbuild && npm run commit-transpile",
|
|
16
16
|
"postversion": "git push origin master && git push --tags",
|
|
17
17
|
"version": "git tag $1"
|
|
18
18
|
},
|
|
@@ -27,23 +27,23 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/Betterez/btrz-api-client#readme",
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"
|
|
31
|
-
"babel
|
|
32
|
-
"babel
|
|
33
|
-
"babel
|
|
34
|
-
"
|
|
30
|
+
"@babel/cli": "^8.0.1",
|
|
31
|
+
"@babel/core": "^8.0.1",
|
|
32
|
+
"@babel/plugin-transform-object-rest-spread": "^8.0.1",
|
|
33
|
+
"@babel/preset-env": "^8.0.2",
|
|
34
|
+
"axios-mock-adapter": "2.1.0",
|
|
35
35
|
"confusing-browser-globals": "^1.0.11",
|
|
36
|
-
"
|
|
37
|
-
"eslint
|
|
38
|
-
"eslint-
|
|
39
|
-
"eslint-plugin-
|
|
40
|
-
"form-data": "
|
|
41
|
-
"
|
|
42
|
-
"uuid": "14.0.
|
|
36
|
+
"esbuild": "^0.28.1",
|
|
37
|
+
"eslint": "10.6.0",
|
|
38
|
+
"eslint-config-btrz-base": "2.0.0",
|
|
39
|
+
"eslint-plugin-chai-friendly": "0.4.1",
|
|
40
|
+
"form-data": "4.0.6",
|
|
41
|
+
"globals": "^17.7.0",
|
|
42
|
+
"uuid": "14.0.1"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"axios": "
|
|
45
|
+
"axios": "1.18.1",
|
|
46
46
|
"base-64": "^1.0.0",
|
|
47
|
-
"undici": "8.
|
|
47
|
+
"undici": "8.5.0"
|
|
48
48
|
}
|
|
49
49
|
}
|
package/src/client.js
CHANGED
|
@@ -142,7 +142,7 @@ function transactionsFactory({client, internalAuthTokenProvider}) {
|
|
|
142
142
|
return client({
|
|
143
143
|
url: `/transactions/${transactionId}/cancellable-items`,
|
|
144
144
|
params: {
|
|
145
|
-
displayAll:
|
|
145
|
+
displayAll: Boolean(displayAll),
|
|
146
146
|
channel: channel || ""
|
|
147
147
|
},
|
|
148
148
|
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
|