btrz-api-client 8.75.0 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +133 -73
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +218 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/inventory/control-classes.js +27 -0
- package/src/endpoints/operations/transactions.js +1 -1
- package/test/endpoints/inventory/control-classes.js +14 -0
- package/tools/build-standalone.mjs +15 -0
- package/types/endpoints/inventory/control-classes.d.ts +4 -0
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
authorizationHeaders = _require.authorizationHeaders;
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("../endpoints_helpers.js");
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Factory for point-to-point-settings API (btrz-api-accounts). Requires user logged in to backoffice app.
|
|
@@ -10,12 +9,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ get: function, update: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function pointToPointSettingsFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET /point-to-point-settings – get point-to-point settings for the current account. No query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -24,14 +21,19 @@ function pointToPointSettingsFactory(_ref) {
|
|
|
24
21
|
* @param {Object} [opts.headers] - Optional headers
|
|
25
22
|
* @returns {Promise<import("axios").AxiosResponse<{ pointToPointSettings: object }>>}
|
|
26
23
|
*/
|
|
27
|
-
function get(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
function get({
|
|
25
|
+
token,
|
|
26
|
+
jwtToken,
|
|
27
|
+
headers
|
|
28
|
+
}) {
|
|
32
29
|
return client({
|
|
33
30
|
url: "/point-to-point-settings",
|
|
34
|
-
headers: authorizationHeaders({
|
|
31
|
+
headers: authorizationHeaders({
|
|
32
|
+
token,
|
|
33
|
+
jwtToken,
|
|
34
|
+
internalAuthTokenProvider,
|
|
35
|
+
headers
|
|
36
|
+
})
|
|
35
37
|
});
|
|
36
38
|
}
|
|
37
39
|
|
|
@@ -44,26 +46,27 @@ function pointToPointSettingsFactory(_ref) {
|
|
|
44
46
|
* @param {Object} [opts.headers] - Optional headers
|
|
45
47
|
* @returns {Promise<import("axios").AxiosResponse<{ pointToPointSettings: object }>>}
|
|
46
48
|
*/
|
|
47
|
-
function update(
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
function update({
|
|
50
|
+
token,
|
|
51
|
+
jwtToken,
|
|
52
|
+
pointToPointSettings,
|
|
53
|
+
headers
|
|
54
|
+
}) {
|
|
53
55
|
return client({
|
|
54
56
|
url: "/point-to-point-settings",
|
|
55
57
|
method: "put",
|
|
56
58
|
headers: authorizationHeaders({
|
|
57
|
-
token
|
|
59
|
+
token,
|
|
60
|
+
jwtToken,
|
|
61
|
+
internalAuthTokenProvider,
|
|
62
|
+
headers
|
|
58
63
|
}),
|
|
59
64
|
data: pointToPointSettings
|
|
60
65
|
});
|
|
61
66
|
}
|
|
62
|
-
|
|
63
67
|
return {
|
|
64
|
-
get
|
|
65
|
-
update
|
|
68
|
+
get,
|
|
69
|
+
update
|
|
66
70
|
};
|
|
67
71
|
}
|
|
68
|
-
|
|
69
72
|
module.exports = pointToPointSettingsFactory;
|
|
@@ -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 print-settings API (btrz-api-accounts).
|
|
@@ -10,12 +9,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ all: function, update: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function printSettingsFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET /print-settings – get print settings for the current account. No query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -25,16 +22,21 @@ function printSettingsFactory(_ref) {
|
|
|
25
22
|
* @param {Object} [opts.headers] - Optional headers
|
|
26
23
|
* @returns {Promise<import("axios").AxiosResponse<{ printSettings: object }>>}
|
|
27
24
|
*/
|
|
28
|
-
function all(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
25
|
+
function all({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
query,
|
|
29
|
+
headers
|
|
30
|
+
}) {
|
|
34
31
|
return client({
|
|
35
32
|
url: "/print-settings",
|
|
36
33
|
params: query,
|
|
37
|
-
headers: authorizationHeaders({
|
|
34
|
+
headers: authorizationHeaders({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
internalAuthTokenProvider,
|
|
38
|
+
headers
|
|
39
|
+
})
|
|
38
40
|
});
|
|
39
41
|
}
|
|
40
42
|
|
|
@@ -47,28 +49,29 @@ function printSettingsFactory(_ref) {
|
|
|
47
49
|
* @param {Object} [opts.headers] - Optional headers
|
|
48
50
|
* @returns {Promise<import("axios").AxiosResponse<{ printSettings: object }>>}
|
|
49
51
|
*/
|
|
50
|
-
function update(
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
52
|
+
function update({
|
|
53
|
+
jwtToken,
|
|
54
|
+
token,
|
|
55
|
+
printSettings,
|
|
56
|
+
headers
|
|
57
|
+
}) {
|
|
56
58
|
return client({
|
|
57
59
|
url: "/print-settings",
|
|
58
60
|
method: "put",
|
|
59
61
|
headers: authorizationHeaders({
|
|
60
|
-
token
|
|
62
|
+
token,
|
|
63
|
+
jwtToken,
|
|
64
|
+
internalAuthTokenProvider,
|
|
65
|
+
headers
|
|
61
66
|
}),
|
|
62
67
|
data: {
|
|
63
|
-
printSettings
|
|
68
|
+
printSettings
|
|
64
69
|
}
|
|
65
70
|
});
|
|
66
71
|
}
|
|
67
|
-
|
|
68
72
|
return {
|
|
69
|
-
all
|
|
70
|
-
update
|
|
73
|
+
all,
|
|
74
|
+
update
|
|
71
75
|
};
|
|
72
76
|
}
|
|
73
|
-
|
|
74
77
|
module.exports = printSettingsFactory;
|
|
@@ -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 /print-templates (btrz-api-accounts). See get-handler getSpec().
|
|
@@ -44,12 +43,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
44
43
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
45
44
|
* @returns {{ all: function, get: function, update: function, create: function, remove: function, versions: { update: function } }}
|
|
46
45
|
*/
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
52
|
-
|
|
46
|
+
function printSettingsFactory({
|
|
47
|
+
client,
|
|
48
|
+
internalAuthTokenProvider
|
|
49
|
+
}) {
|
|
53
50
|
/**
|
|
54
51
|
* GET /print-templates - list print templates (paginated when page is provided).
|
|
55
52
|
* @param {Object} opts
|
|
@@ -61,17 +58,21 @@ function printSettingsFactory(_ref) {
|
|
|
61
58
|
* When page is used, response includes next, previous, totalRecords, page.
|
|
62
59
|
* @throws {import("axios").AxiosError} 400 WRONG_DATA, INVALID_PRODUCT_ID; 401; 500
|
|
63
60
|
*/
|
|
64
|
-
function all(
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
61
|
+
function all({
|
|
62
|
+
token,
|
|
63
|
+
jwtToken,
|
|
64
|
+
query = {},
|
|
65
|
+
headers
|
|
66
|
+
}) {
|
|
71
67
|
return client({
|
|
72
68
|
url: "/print-templates",
|
|
73
69
|
params: query,
|
|
74
|
-
headers: authorizationHeaders({
|
|
70
|
+
headers: authorizationHeaders({
|
|
71
|
+
token,
|
|
72
|
+
jwtToken,
|
|
73
|
+
internalAuthTokenProvider,
|
|
74
|
+
headers
|
|
75
|
+
})
|
|
75
76
|
});
|
|
76
77
|
}
|
|
77
78
|
|
|
@@ -86,18 +87,22 @@ function printSettingsFactory(_ref) {
|
|
|
86
87
|
* @returns {Promise<import("axios").AxiosResponse<{ printTemplate: object }>>}
|
|
87
88
|
* @throws {import("axios").AxiosError} 400 INVALID_PRINT_TEMPLATE_ID / INVALID_PROVIDER_ID, 401, 404 PRINT_TEMPLATE_NOT_FOUND, 500
|
|
88
89
|
*/
|
|
89
|
-
function get(
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
90
|
+
function get({
|
|
91
|
+
token,
|
|
92
|
+
jwtToken,
|
|
93
|
+
printTemplateId,
|
|
94
|
+
query = {},
|
|
95
|
+
headers
|
|
96
|
+
}) {
|
|
97
97
|
return client({
|
|
98
|
-
url:
|
|
98
|
+
url: `/print-templates/${printTemplateId}`,
|
|
99
99
|
params: query,
|
|
100
|
-
headers: authorizationHeaders({
|
|
100
|
+
headers: authorizationHeaders({
|
|
101
|
+
token,
|
|
102
|
+
jwtToken,
|
|
103
|
+
internalAuthTokenProvider,
|
|
104
|
+
headers
|
|
105
|
+
})
|
|
101
106
|
});
|
|
102
107
|
}
|
|
103
108
|
|
|
@@ -113,22 +118,25 @@ function printSettingsFactory(_ref) {
|
|
|
113
118
|
* @returns {Promise<import("axios").AxiosResponse<{ printTemplate: object }>>}
|
|
114
119
|
* @throws {import("axios").AxiosError} 400 WRONG_DATA, type-specific; 401 NOT_SUPER_USER; 404; 500
|
|
115
120
|
*/
|
|
116
|
-
function update(
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
121
|
+
function update({
|
|
122
|
+
jwtToken,
|
|
123
|
+
token,
|
|
124
|
+
printTemplateId,
|
|
125
|
+
printTemplate,
|
|
126
|
+
headers,
|
|
127
|
+
query
|
|
128
|
+
}) {
|
|
124
129
|
return client({
|
|
125
|
-
url:
|
|
130
|
+
url: `/print-templates/${printTemplateId}`,
|
|
126
131
|
method: "put",
|
|
127
132
|
headers: authorizationHeaders({
|
|
128
|
-
token
|
|
133
|
+
token,
|
|
134
|
+
jwtToken,
|
|
135
|
+
internalAuthTokenProvider,
|
|
136
|
+
headers
|
|
129
137
|
}),
|
|
130
138
|
data: {
|
|
131
|
-
printTemplate
|
|
139
|
+
printTemplate
|
|
132
140
|
},
|
|
133
141
|
params: query
|
|
134
142
|
});
|
|
@@ -144,20 +152,23 @@ function printSettingsFactory(_ref) {
|
|
|
144
152
|
* @returns {Promise<import("axios").AxiosResponse<{ printTemplate: object }>>}
|
|
145
153
|
* @throws {import("axios").AxiosError} 400 WRONG_DATA / PRODUCT_* / INVOICE_* / META_* / TEMPLATE_*, 401 NOT_SUPER_USER, 500
|
|
146
154
|
*/
|
|
147
|
-
function create(
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
155
|
+
function create({
|
|
156
|
+
jwtToken,
|
|
157
|
+
token,
|
|
158
|
+
printTemplate,
|
|
159
|
+
headers
|
|
160
|
+
}) {
|
|
153
161
|
return client({
|
|
154
162
|
url: "/print-templates",
|
|
155
163
|
method: "post",
|
|
156
164
|
headers: authorizationHeaders({
|
|
157
|
-
token
|
|
165
|
+
token,
|
|
166
|
+
jwtToken,
|
|
167
|
+
internalAuthTokenProvider,
|
|
168
|
+
headers
|
|
158
169
|
}),
|
|
159
170
|
data: {
|
|
160
|
-
printTemplate
|
|
171
|
+
printTemplate
|
|
161
172
|
}
|
|
162
173
|
});
|
|
163
174
|
}
|
|
@@ -172,22 +183,24 @@ function printSettingsFactory(_ref) {
|
|
|
172
183
|
* @returns {Promise<import("axios").AxiosResponse<{ printTemplateId: string }>>}
|
|
173
184
|
* @throws {import("axios").AxiosError} 400 PRINT_TEMPLATE_ID, 401, 404 PRINT_TEMPLATE_NOT_FOUND, 500
|
|
174
185
|
*/
|
|
175
|
-
function remove(
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
186
|
+
function remove({
|
|
187
|
+
printTemplateId,
|
|
188
|
+
token,
|
|
189
|
+
jwtToken,
|
|
190
|
+
headers
|
|
191
|
+
}) {
|
|
181
192
|
return client({
|
|
182
|
-
url:
|
|
193
|
+
url: `/print-templates/${printTemplateId}`,
|
|
183
194
|
method: "delete",
|
|
184
195
|
headers: authorizationHeaders({
|
|
185
|
-
token
|
|
196
|
+
token,
|
|
197
|
+
jwtToken,
|
|
198
|
+
internalAuthTokenProvider,
|
|
199
|
+
headers
|
|
186
200
|
})
|
|
187
201
|
});
|
|
188
202
|
}
|
|
189
|
-
|
|
190
|
-
var versions = {
|
|
203
|
+
const versions = {
|
|
191
204
|
/**
|
|
192
205
|
* PUT /print-templates/:printTemplateId/versions/:versionId - roll back to a saved version (versionId = zero-based index).
|
|
193
206
|
* @param {Object} opts
|
|
@@ -200,33 +213,34 @@ function printSettingsFactory(_ref) {
|
|
|
200
213
|
* @returns {Promise<import("axios").AxiosResponse<{ printTemplate: object }>>}
|
|
201
214
|
* @throws {import("axios").AxiosError} 400 WRONG_DATA; 401 NOT_SUPER_USER; 404; 500
|
|
202
215
|
*/
|
|
203
|
-
update
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
216
|
+
update({
|
|
217
|
+
printTemplateId,
|
|
218
|
+
token,
|
|
219
|
+
jwtToken,
|
|
220
|
+
headers,
|
|
221
|
+
query,
|
|
222
|
+
versionId
|
|
223
|
+
}) {
|
|
211
224
|
return client({
|
|
212
|
-
url:
|
|
225
|
+
url: `/print-templates/${printTemplateId}/versions/${versionId}`,
|
|
213
226
|
method: "put",
|
|
214
227
|
headers: authorizationHeaders({
|
|
215
|
-
token
|
|
228
|
+
token,
|
|
229
|
+
jwtToken,
|
|
230
|
+
internalAuthTokenProvider,
|
|
231
|
+
headers
|
|
216
232
|
}),
|
|
217
233
|
params: query
|
|
218
234
|
});
|
|
219
235
|
}
|
|
220
236
|
};
|
|
221
|
-
|
|
222
237
|
return {
|
|
223
|
-
all
|
|
224
|
-
get
|
|
225
|
-
update
|
|
226
|
-
create
|
|
227
|
-
remove
|
|
228
|
-
versions
|
|
238
|
+
all,
|
|
239
|
+
get,
|
|
240
|
+
update,
|
|
241
|
+
create,
|
|
242
|
+
remove,
|
|
243
|
+
versions
|
|
229
244
|
};
|
|
230
245
|
}
|
|
231
|
-
|
|
232
246
|
module.exports = printSettingsFactory;
|
|
@@ -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 printers API (btrz-api-accounts).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ all: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function printersFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /printers - list supported printers and their print templates. No query parameters accepted.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -28,22 +25,25 @@ function printersFactory(_ref) {
|
|
|
28
25
|
* Response printers array: each has id, name, itemTypes, templates (see GET /printers).
|
|
29
26
|
* @throws {import("axios").AxiosError} 401 Unauthorized, 500 Internal server error
|
|
30
27
|
*/
|
|
31
|
-
function all(
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
28
|
+
function all({
|
|
29
|
+
token,
|
|
30
|
+
jwtToken,
|
|
31
|
+
query,
|
|
32
|
+
headers
|
|
33
|
+
}) {
|
|
37
34
|
return client({
|
|
38
35
|
url: "/printers",
|
|
39
36
|
params: query || {},
|
|
40
|
-
headers: authorizationHeaders({
|
|
37
|
+
headers: authorizationHeaders({
|
|
38
|
+
token,
|
|
39
|
+
jwtToken,
|
|
40
|
+
internalAuthTokenProvider,
|
|
41
|
+
headers
|
|
42
|
+
})
|
|
41
43
|
});
|
|
42
44
|
}
|
|
43
|
-
|
|
44
45
|
return {
|
|
45
|
-
all
|
|
46
|
+
all
|
|
46
47
|
};
|
|
47
48
|
}
|
|
48
|
-
|
|
49
49
|
module.exports = printersFactory;
|
|
@@ -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 rms-settings (revenue management) API (btrz-api-accounts).
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ get: function, update: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function revenueManagementSettingsFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /rms-settings — get revenue management settings for the account. No query parameters.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -27,14 +24,19 @@ function revenueManagementSettingsFactory(_ref) {
|
|
|
27
24
|
* @throws {import("axios").AxiosError} 401 Unauthorized (missing or invalid API key/Authorization)
|
|
28
25
|
* @throws {import("axios").AxiosError} 500 Internal server error
|
|
29
26
|
*/
|
|
30
|
-
function get(
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
27
|
+
function get({
|
|
28
|
+
token,
|
|
29
|
+
jwtToken,
|
|
30
|
+
headers
|
|
31
|
+
}) {
|
|
35
32
|
return client({
|
|
36
33
|
url: "/rms-settings",
|
|
37
|
-
headers: authorizationHeaders({
|
|
34
|
+
headers: authorizationHeaders({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
internalAuthTokenProvider,
|
|
38
|
+
headers
|
|
39
|
+
})
|
|
38
40
|
});
|
|
39
41
|
}
|
|
40
42
|
|
|
@@ -52,26 +54,27 @@ function revenueManagementSettingsFactory(_ref) {
|
|
|
52
54
|
* @throws {import("axios").AxiosError} 404 ACCOUNT_NOT_FOUND
|
|
53
55
|
* @throws {import("axios").AxiosError} 500 CREATE_USER_ERROR or internal server error
|
|
54
56
|
*/
|
|
55
|
-
function update(
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
57
|
+
function update({
|
|
58
|
+
token,
|
|
59
|
+
jwtToken,
|
|
60
|
+
revenueManagementSettings,
|
|
61
|
+
headers
|
|
62
|
+
}) {
|
|
61
63
|
return client({
|
|
62
64
|
url: "/rms-settings",
|
|
63
65
|
method: "put",
|
|
64
66
|
headers: authorizationHeaders({
|
|
65
|
-
token
|
|
67
|
+
token,
|
|
68
|
+
jwtToken,
|
|
69
|
+
internalAuthTokenProvider,
|
|
70
|
+
headers
|
|
66
71
|
}),
|
|
67
72
|
data: revenueManagementSettings
|
|
68
73
|
});
|
|
69
74
|
}
|
|
70
|
-
|
|
71
75
|
return {
|
|
72
|
-
get
|
|
73
|
-
update
|
|
76
|
+
get,
|
|
77
|
+
update
|
|
74
78
|
};
|
|
75
79
|
}
|
|
76
|
-
|
|
77
80
|
module.exports = revenueManagementSettingsFactory;
|