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
|
* Query params for GET /custom-fields (btrz-api-sales get-custom-fields getSpec).
|
|
@@ -17,12 +16,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
17
16
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
18
17
|
* @returns {{ all: function }}
|
|
19
18
|
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
25
|
-
|
|
19
|
+
function customFieldsFactory({
|
|
20
|
+
client,
|
|
21
|
+
internalAuthTokenProvider
|
|
22
|
+
}) {
|
|
26
23
|
/**
|
|
27
24
|
* GET /custom-fields - list custom fields.
|
|
28
25
|
* @param {Object} opts
|
|
@@ -31,21 +28,22 @@ function customFieldsFactory(_ref) {
|
|
|
31
28
|
* @param {Object} [opts.headers] - Optional headers
|
|
32
29
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
33
30
|
*/
|
|
34
|
-
function all(
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
31
|
+
function all({
|
|
32
|
+
token,
|
|
33
|
+
query = {},
|
|
34
|
+
headers
|
|
35
|
+
}) {
|
|
40
36
|
return client.get("/custom-fields", {
|
|
41
37
|
params: query,
|
|
42
|
-
headers: authorizationHeaders({
|
|
38
|
+
headers: authorizationHeaders({
|
|
39
|
+
token,
|
|
40
|
+
internalAuthTokenProvider,
|
|
41
|
+
headers
|
|
42
|
+
})
|
|
43
43
|
});
|
|
44
44
|
}
|
|
45
|
-
|
|
46
45
|
return {
|
|
47
|
-
all
|
|
46
|
+
all
|
|
48
47
|
};
|
|
49
48
|
}
|
|
50
|
-
|
|
51
49
|
module.exports = customFieldsFactory;
|
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
* Factory for API docs (btrz-api-sales).
|
|
5
3
|
* @param {Object} deps
|
|
6
4
|
* @param {import("axios").AxiosInstance} deps.client
|
|
7
5
|
* @returns {{ get: function }}
|
|
8
6
|
*/
|
|
9
|
-
function docsFactory(
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
function docsFactory({
|
|
8
|
+
client
|
|
9
|
+
}) {
|
|
12
10
|
/**
|
|
13
11
|
* GET /api-docs-v2 - get API docs.
|
|
14
12
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
@@ -16,10 +14,8 @@ function docsFactory(_ref) {
|
|
|
16
14
|
function get() {
|
|
17
15
|
return client.get("/api-docs-v2", {});
|
|
18
16
|
}
|
|
19
|
-
|
|
20
17
|
return {
|
|
21
|
-
get
|
|
18
|
+
get
|
|
22
19
|
};
|
|
23
20
|
}
|
|
24
|
-
|
|
25
21
|
module.exports = docsFactory;
|
|
@@ -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 flexpasses API (btrz-api-sales).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ get: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function flexpassesEndpointsFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /flexpasses/:flexpassId - get flexpass by id. API does not accept query params.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -26,21 +23,24 @@ function flexpassesEndpointsFactory(_ref) {
|
|
|
26
23
|
* @param {Object} [opts.headers] - Optional headers
|
|
27
24
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
28
25
|
*/
|
|
29
|
-
function get(
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
26
|
+
function get({
|
|
27
|
+
token,
|
|
28
|
+
jwtToken,
|
|
29
|
+
flexpassId,
|
|
30
|
+
headers
|
|
31
|
+
}) {
|
|
35
32
|
return client({
|
|
36
|
-
url:
|
|
37
|
-
headers: authorizationHeaders({
|
|
33
|
+
url: `/flexpasses/${flexpassId}`,
|
|
34
|
+
headers: authorizationHeaders({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
internalAuthTokenProvider,
|
|
38
|
+
headers
|
|
39
|
+
})
|
|
38
40
|
});
|
|
39
41
|
}
|
|
40
|
-
|
|
41
42
|
return {
|
|
42
|
-
get
|
|
43
|
+
get
|
|
43
44
|
};
|
|
44
45
|
}
|
|
45
|
-
|
|
46
46
|
module.exports = flexpassesEndpointsFactory;
|
|
@@ -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 /gift-certificates/:GCNumber (btrz-api-sales get-gift-certificate getSpec).
|
|
@@ -18,12 +17,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ get: function }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function giftCertificatesFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET /gift-certificates/:GCNumber - get gift certificate by number.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -33,23 +30,24 @@ function giftCertificatesFactory(_ref) {
|
|
|
33
30
|
* @param {Object} [opts.headers] - Optional headers
|
|
34
31
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
35
32
|
*/
|
|
36
|
-
function get(
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
33
|
+
function get({
|
|
34
|
+
token,
|
|
35
|
+
GCNumber,
|
|
36
|
+
query = {},
|
|
37
|
+
headers
|
|
38
|
+
}) {
|
|
43
39
|
return client({
|
|
44
|
-
url:
|
|
40
|
+
url: `/gift-certificates/${GCNumber}`,
|
|
45
41
|
params: query,
|
|
46
|
-
headers: authorizationHeaders({
|
|
42
|
+
headers: authorizationHeaders({
|
|
43
|
+
token,
|
|
44
|
+
internalAuthTokenProvider,
|
|
45
|
+
headers
|
|
46
|
+
})
|
|
47
47
|
});
|
|
48
48
|
}
|
|
49
|
-
|
|
50
49
|
return {
|
|
51
|
-
get
|
|
50
|
+
get
|
|
52
51
|
};
|
|
53
52
|
}
|
|
54
|
-
|
|
55
53
|
module.exports = giftCertificatesFactory;
|
|
@@ -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 /orders/:orderId/payments (btrz-api-sales post-payments-handler getSpec).
|
|
@@ -30,12 +29,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
30
29
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
31
30
|
* @returns {{ create: function, get: function, overwrite: function, patch: function }}
|
|
32
31
|
*/
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
38
|
-
|
|
32
|
+
function orderFactory({
|
|
33
|
+
client,
|
|
34
|
+
internalAuthTokenProvider
|
|
35
|
+
}) {
|
|
39
36
|
/**
|
|
40
37
|
* POST /order - create order. Body: orderRequest (cartId, customerInfo, payments, channel, etc.).
|
|
41
38
|
* @param {Object} opts
|
|
@@ -45,16 +42,21 @@ function orderFactory(_ref) {
|
|
|
45
42
|
* @param {Object} [opts.headers] - Optional headers
|
|
46
43
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
47
44
|
*/
|
|
48
|
-
function create(
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
45
|
+
function create({
|
|
46
|
+
token,
|
|
47
|
+
order,
|
|
48
|
+
jwtToken,
|
|
49
|
+
headers
|
|
50
|
+
}) {
|
|
54
51
|
return client({
|
|
55
52
|
url: "/order",
|
|
56
53
|
method: "post",
|
|
57
|
-
headers: authorizationHeaders({
|
|
54
|
+
headers: authorizationHeaders({
|
|
55
|
+
token,
|
|
56
|
+
jwtToken,
|
|
57
|
+
internalAuthTokenProvider,
|
|
58
|
+
headers
|
|
59
|
+
}),
|
|
58
60
|
data: order
|
|
59
61
|
});
|
|
60
62
|
}
|
|
@@ -68,17 +70,20 @@ function orderFactory(_ref) {
|
|
|
68
70
|
* @param {Object} [opts.headers] - Optional headers
|
|
69
71
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
70
72
|
*/
|
|
71
|
-
function get(
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
73
|
+
function get({
|
|
74
|
+
token,
|
|
75
|
+
orderId,
|
|
76
|
+
query = {},
|
|
77
|
+
headers
|
|
78
|
+
}) {
|
|
78
79
|
return client({
|
|
79
|
-
url:
|
|
80
|
+
url: `/order/${orderId}`,
|
|
80
81
|
params: query,
|
|
81
|
-
headers: authorizationHeaders({
|
|
82
|
+
headers: authorizationHeaders({
|
|
83
|
+
token,
|
|
84
|
+
internalAuthTokenProvider,
|
|
85
|
+
headers
|
|
86
|
+
})
|
|
82
87
|
});
|
|
83
88
|
}
|
|
84
89
|
|
|
@@ -93,21 +98,25 @@ function orderFactory(_ref) {
|
|
|
93
98
|
* @param {OrderPaymentsQuery} [opts.query] - Query params (channel, providerId)
|
|
94
99
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
95
100
|
*/
|
|
96
|
-
function overwrite(
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
101
|
+
function overwrite({
|
|
102
|
+
token,
|
|
103
|
+
orderId,
|
|
104
|
+
payments,
|
|
105
|
+
jwtToken,
|
|
106
|
+
headers,
|
|
107
|
+
query = {}
|
|
108
|
+
}) {
|
|
105
109
|
return client({
|
|
106
|
-
url:
|
|
110
|
+
url: `/orders/${orderId}/payments`,
|
|
107
111
|
method: "post",
|
|
108
112
|
data: payments,
|
|
109
113
|
params: query,
|
|
110
|
-
headers: authorizationHeaders({
|
|
114
|
+
headers: authorizationHeaders({
|
|
115
|
+
token,
|
|
116
|
+
jwtToken,
|
|
117
|
+
internalAuthTokenProvider,
|
|
118
|
+
headers
|
|
119
|
+
})
|
|
111
120
|
});
|
|
112
121
|
}
|
|
113
122
|
|
|
@@ -121,29 +130,33 @@ function orderFactory(_ref) {
|
|
|
121
130
|
* @param {OrderPatchQuery} [opts.query] - Query params (includePaidOrExpired)
|
|
122
131
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
123
132
|
*/
|
|
124
|
-
function patch(
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
133
|
+
function patch({
|
|
134
|
+
token,
|
|
135
|
+
jwtToken,
|
|
136
|
+
headers,
|
|
137
|
+
operation,
|
|
138
|
+
query = {}
|
|
139
|
+
}) {
|
|
132
140
|
return client({
|
|
133
141
|
url: "/orders",
|
|
134
142
|
method: "patch",
|
|
135
|
-
headers: authorizationHeaders({
|
|
136
|
-
|
|
143
|
+
headers: authorizationHeaders({
|
|
144
|
+
token,
|
|
145
|
+
jwtToken,
|
|
146
|
+
internalAuthTokenProvider,
|
|
147
|
+
headers
|
|
148
|
+
}),
|
|
149
|
+
data: {
|
|
150
|
+
operation
|
|
151
|
+
},
|
|
137
152
|
params: query
|
|
138
153
|
});
|
|
139
154
|
}
|
|
140
|
-
|
|
141
155
|
return {
|
|
142
|
-
create
|
|
143
|
-
get
|
|
144
|
-
overwrite
|
|
145
|
-
patch
|
|
156
|
+
create,
|
|
157
|
+
get,
|
|
158
|
+
overwrite,
|
|
159
|
+
patch
|
|
146
160
|
};
|
|
147
161
|
}
|
|
148
|
-
|
|
149
162
|
module.exports = orderFactory;
|
|
@@ -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 parcel-quotes API (btrz-api-sales).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ get: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function parcelQuotesFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* POST /parcel-quotes - request a parcel quote. Body: parcelQuoteData (fromId, toId, productId, channel, parcels). API does not accept query params.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -26,23 +23,26 @@ function parcelQuotesFactory(_ref) {
|
|
|
26
23
|
* @param {Object} [opts.headers] - Optional headers
|
|
27
24
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
28
25
|
*/
|
|
29
|
-
function get(
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
26
|
+
function get({
|
|
27
|
+
token,
|
|
28
|
+
parcelQuoteData,
|
|
29
|
+
jwtToken,
|
|
30
|
+
headers
|
|
31
|
+
}) {
|
|
35
32
|
return client({
|
|
36
33
|
url: "/parcel-quotes",
|
|
37
34
|
method: "post",
|
|
38
|
-
headers: authorizationHeaders({
|
|
35
|
+
headers: authorizationHeaders({
|
|
36
|
+
token,
|
|
37
|
+
jwtToken,
|
|
38
|
+
internalAuthTokenProvider,
|
|
39
|
+
headers
|
|
40
|
+
}),
|
|
39
41
|
data: parcelQuoteData
|
|
40
42
|
});
|
|
41
43
|
}
|
|
42
|
-
|
|
43
44
|
return {
|
|
44
|
-
get
|
|
45
|
+
get
|
|
45
46
|
};
|
|
46
47
|
}
|
|
47
|
-
|
|
48
48
|
module.exports = parcelQuotesFactory;
|
|
@@ -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 /payment-providers (btrz-api-sales get-payment-providers getSpec).
|
|
@@ -19,12 +18,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
19
18
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
20
19
|
* @returns {{ all: function }}
|
|
21
20
|
*/
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
27
|
-
|
|
21
|
+
function paymentProvidersFactory({
|
|
22
|
+
client,
|
|
23
|
+
internalAuthTokenProvider
|
|
24
|
+
}) {
|
|
28
25
|
/**
|
|
29
26
|
* GET /payment-providers - list payment providers.
|
|
30
27
|
* @param {Object} opts
|
|
@@ -34,22 +31,24 @@ function paymentProvidersFactory(_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("/payment-providers", {
|
|
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
50
|
return {
|
|
51
|
-
all
|
|
51
|
+
all
|
|
52
52
|
};
|
|
53
53
|
}
|
|
54
|
-
|
|
55
54
|
module.exports = paymentProvidersFactory;
|
|
@@ -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 /redeemable-items/:redeemableItemId (btrz-api-sales get-redeemable-item getSpec).
|
|
@@ -27,12 +26,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
27
26
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
28
27
|
* @returns {{ get: function, getValid: function }}
|
|
29
28
|
*/
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
35
|
-
|
|
29
|
+
function redeemableItemsFactory({
|
|
30
|
+
client,
|
|
31
|
+
internalAuthTokenProvider
|
|
32
|
+
}) {
|
|
36
33
|
/**
|
|
37
34
|
* GET /redeemable-items/:redeemableItemId - get redeemable item by id.
|
|
38
35
|
* @param {Object} opts
|
|
@@ -42,17 +39,20 @@ function redeemableItemsFactory(_ref) {
|
|
|
42
39
|
* @param {Object} [opts.headers] - Optional headers
|
|
43
40
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
44
41
|
*/
|
|
45
|
-
function get(
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
42
|
+
function get({
|
|
43
|
+
token,
|
|
44
|
+
redeemableItemId,
|
|
45
|
+
query = {},
|
|
46
|
+
headers
|
|
47
|
+
}) {
|
|
52
48
|
return client({
|
|
53
|
-
url:
|
|
49
|
+
url: `/redeemable-items/${redeemableItemId}`,
|
|
54
50
|
params: query,
|
|
55
|
-
headers: authorizationHeaders({
|
|
51
|
+
headers: authorizationHeaders({
|
|
52
|
+
token,
|
|
53
|
+
internalAuthTokenProvider,
|
|
54
|
+
headers
|
|
55
|
+
})
|
|
56
56
|
});
|
|
57
57
|
}
|
|
58
58
|
|
|
@@ -65,24 +65,25 @@ function redeemableItemsFactory(_ref) {
|
|
|
65
65
|
* @param {Object} [opts.headers] - Optional headers
|
|
66
66
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
67
67
|
*/
|
|
68
|
-
function getValid(
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
68
|
+
function getValid({
|
|
69
|
+
token,
|
|
70
|
+
jwtToken,
|
|
71
|
+
query = {},
|
|
72
|
+
headers
|
|
73
|
+
}) {
|
|
75
74
|
return client({
|
|
76
75
|
url: "/redeemable-items",
|
|
77
76
|
params: query,
|
|
78
|
-
headers: authorizationHeaders({
|
|
77
|
+
headers: authorizationHeaders({
|
|
78
|
+
token,
|
|
79
|
+
jwtToken,
|
|
80
|
+
headers
|
|
81
|
+
})
|
|
79
82
|
});
|
|
80
83
|
}
|
|
81
|
-
|
|
82
84
|
return {
|
|
83
|
-
get
|
|
84
|
-
getValid
|
|
85
|
+
get,
|
|
86
|
+
getValid
|
|
85
87
|
};
|
|
86
88
|
}
|
|
87
|
-
|
|
88
89
|
module.exports = redeemableItemsFactory;
|