btrz-api-client 8.75.1 → 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 +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 +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/operations/transactions.js +1 -1
- package/tools/build-standalone.mjs +15 -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 current application (single) 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 {{ get: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function applicationsFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET /application - get current application.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -24,19 +21,22 @@ function applicationsFactory(_ref) {
|
|
|
24
21
|
* @param {Object} [opts.headers] - Optional headers
|
|
25
22
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
26
23
|
*/
|
|
27
|
-
function get(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
function get({
|
|
25
|
+
token,
|
|
26
|
+
jwtToken,
|
|
27
|
+
headers
|
|
28
|
+
}) {
|
|
32
29
|
return client.get("/application", {
|
|
33
|
-
headers: authorizationHeaders({
|
|
30
|
+
headers: authorizationHeaders({
|
|
31
|
+
token,
|
|
32
|
+
jwtToken,
|
|
33
|
+
internalAuthTokenProvider,
|
|
34
|
+
headers
|
|
35
|
+
})
|
|
34
36
|
});
|
|
35
37
|
}
|
|
36
|
-
|
|
37
38
|
return {
|
|
38
|
-
get
|
|
39
|
+
get
|
|
39
40
|
};
|
|
40
41
|
}
|
|
41
|
-
|
|
42
42
|
module.exports = applicationsFactory;
|
|
@@ -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 applications API (btrz-api-accounts): get by id or by name. Requires BETTEREZ_APP or MOBILE_SCANNER (get by id); get by name requires authentication.
|
|
@@ -11,12 +10,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {{ get: function, getByName: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function applicationsFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /applications/:id - get an application by id. Application must belong to the authenticated account.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -26,14 +23,19 @@ function applicationsFactory(_ref) {
|
|
|
26
23
|
* @param {Object} [opts.headers] - Optional headers
|
|
27
24
|
* @returns {Promise<import("axios").AxiosResponse>} Response data: { application } (full application document including privateKey)
|
|
28
25
|
*/
|
|
29
|
-
function get(
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
return client.get(
|
|
36
|
-
headers: authorizationHeaders({
|
|
26
|
+
function get({
|
|
27
|
+
token,
|
|
28
|
+
id,
|
|
29
|
+
jwtToken,
|
|
30
|
+
headers
|
|
31
|
+
}) {
|
|
32
|
+
return client.get(`/applications/${id}`, {
|
|
33
|
+
headers: authorizationHeaders({
|
|
34
|
+
token,
|
|
35
|
+
jwtToken,
|
|
36
|
+
internalAuthTokenProvider,
|
|
37
|
+
headers
|
|
38
|
+
})
|
|
37
39
|
});
|
|
38
40
|
}
|
|
39
41
|
/**
|
|
@@ -45,21 +47,24 @@ function applicationsFactory(_ref) {
|
|
|
45
47
|
* @param {Object} [opts.headers] - Optional headers
|
|
46
48
|
* @returns {Promise<import("axios").AxiosResponse>} Response data: { application } (application document without privateKey)
|
|
47
49
|
*/
|
|
48
|
-
function getByName(
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
return client.get(
|
|
55
|
-
headers: authorizationHeaders({
|
|
50
|
+
function getByName({
|
|
51
|
+
token,
|
|
52
|
+
appName,
|
|
53
|
+
jwtToken,
|
|
54
|
+
headers
|
|
55
|
+
}) {
|
|
56
|
+
return client.get(`/applications/name/${appName}`, {
|
|
57
|
+
headers: authorizationHeaders({
|
|
58
|
+
token,
|
|
59
|
+
jwtToken,
|
|
60
|
+
internalAuthTokenProvider,
|
|
61
|
+
headers
|
|
62
|
+
})
|
|
56
63
|
});
|
|
57
64
|
}
|
|
58
|
-
|
|
59
65
|
return {
|
|
60
|
-
get
|
|
61
|
-
getByName
|
|
66
|
+
get,
|
|
67
|
+
getByName
|
|
62
68
|
};
|
|
63
69
|
}
|
|
64
|
-
|
|
65
70
|
module.exports = applicationsFactory;
|
|
@@ -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 control-classes-settings 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, put: function }}
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function controlClassesSettingsFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* GET /control-classes-settings — get control classes settings for the account. No query parameters.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -27,14 +24,19 @@ function controlClassesSettingsFactory(_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: "/control-classes-settings",
|
|
37
|
-
headers: authorizationHeaders({
|
|
34
|
+
headers: authorizationHeaders({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
internalAuthTokenProvider,
|
|
38
|
+
headers
|
|
39
|
+
})
|
|
38
40
|
});
|
|
39
41
|
}
|
|
40
42
|
|
|
@@ -51,26 +53,27 @@ function controlClassesSettingsFactory(_ref) {
|
|
|
51
53
|
* @throws {import("axios").AxiosError} 404 ACCOUNT_NOT_FOUND
|
|
52
54
|
* @throws {import("axios").AxiosError} 500 Internal server error
|
|
53
55
|
*/
|
|
54
|
-
function put(
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
56
|
+
function put({
|
|
57
|
+
token,
|
|
58
|
+
jwtToken,
|
|
59
|
+
controlClassesSettings,
|
|
60
|
+
headers
|
|
61
|
+
}) {
|
|
60
62
|
return client({
|
|
61
63
|
url: "/control-classes-settings",
|
|
62
64
|
method: "put",
|
|
63
65
|
headers: authorizationHeaders({
|
|
64
|
-
token
|
|
66
|
+
token,
|
|
67
|
+
jwtToken,
|
|
68
|
+
internalAuthTokenProvider,
|
|
69
|
+
headers
|
|
65
70
|
}),
|
|
66
71
|
data: controlClassesSettings
|
|
67
72
|
});
|
|
68
73
|
}
|
|
69
|
-
|
|
70
74
|
return {
|
|
71
|
-
get
|
|
72
|
-
put
|
|
75
|
+
get,
|
|
76
|
+
put
|
|
73
77
|
};
|
|
74
78
|
}
|
|
75
|
-
|
|
76
79
|
module.exports = controlClassesSettingsFactory;
|
|
@@ -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
|
* @typedef {Object} CurrentShiftsQuery
|
|
@@ -15,12 +14,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
15
14
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
16
15
|
* @returns {{ get: function }}
|
|
17
16
|
*/
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
23
|
-
|
|
17
|
+
function currentShiftsFactory({
|
|
18
|
+
client,
|
|
19
|
+
internalAuthTokenProvider
|
|
20
|
+
}) {
|
|
24
21
|
/**
|
|
25
22
|
* GET /users/:userId/current-shift - get current shift for user.
|
|
26
23
|
* @param {Object} opts
|
|
@@ -30,22 +27,23 @@ function currentShiftsFactory(_ref) {
|
|
|
30
27
|
* @param {Object} [opts.headers] - Optional headers
|
|
31
28
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
32
29
|
*/
|
|
33
|
-
function get(
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
30
|
+
function get({
|
|
31
|
+
token,
|
|
32
|
+
userId,
|
|
33
|
+
query = {},
|
|
34
|
+
headers
|
|
35
|
+
}) {
|
|
36
|
+
return client.get(`/users/${userId}/current-shift`, {
|
|
37
|
+
headers: authorizationHeaders({
|
|
38
|
+
token,
|
|
39
|
+
internalAuthTokenProvider,
|
|
40
|
+
headers
|
|
41
|
+
}),
|
|
42
42
|
params: query
|
|
43
43
|
});
|
|
44
44
|
}
|
|
45
|
-
|
|
46
45
|
return {
|
|
47
|
-
get
|
|
46
|
+
get
|
|
48
47
|
};
|
|
49
48
|
}
|
|
50
|
-
|
|
51
49
|
module.exports = currentShiftsFactory;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
2
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
3
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
4
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
5
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5
6
|
/* eslint-disable max-len */
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
const base64 = require("base-64");
|
|
8
|
+
const {
|
|
9
|
+
authorizationHeaders
|
|
10
|
+
} = require("./../endpoints_helpers.js");
|
|
10
11
|
|
|
11
12
|
/**
|
|
12
13
|
* Query params for GET /customers (btrz-api-accounts). Response is paginated (customers array + pagination).
|
|
@@ -24,12 +25,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
24
25
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
25
26
|
* @returns {{ put: function, all: function, create: function, signIn: function, signInCas: function, update: function, merge: function }}
|
|
26
27
|
*/
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
32
|
-
|
|
28
|
+
function customersFactory({
|
|
29
|
+
client,
|
|
30
|
+
internalAuthTokenProvider
|
|
31
|
+
}) {
|
|
33
32
|
/**
|
|
34
33
|
* PUT /customers/:customerId - update a customer (full replace). Requires BETTEREZ_APP or CUSTOMER audience; customer token may only update own record. Side effect: may emit customer.updated webhook.
|
|
35
34
|
* @param {Object} opts
|
|
@@ -40,17 +39,22 @@ function customersFactory(_ref) {
|
|
|
40
39
|
* @param {Object} [opts.headers] - Optional headers
|
|
41
40
|
* @returns {Promise<import("axios").AxiosResponse<{ _id: string, customerNumber: string, ... }>>}
|
|
42
41
|
*/
|
|
43
|
-
function put(
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
42
|
+
function put({
|
|
43
|
+
customerId,
|
|
44
|
+
customer,
|
|
45
|
+
token,
|
|
46
|
+
jwtToken,
|
|
47
|
+
headers
|
|
48
|
+
}) {
|
|
50
49
|
return client({
|
|
51
|
-
url:
|
|
50
|
+
url: `/customers/${customerId}`,
|
|
52
51
|
method: "put",
|
|
53
|
-
headers: authorizationHeaders({
|
|
52
|
+
headers: authorizationHeaders({
|
|
53
|
+
token,
|
|
54
|
+
jwtToken,
|
|
55
|
+
internalAuthTokenProvider,
|
|
56
|
+
headers
|
|
57
|
+
}),
|
|
54
58
|
data: customer
|
|
55
59
|
});
|
|
56
60
|
}
|
|
@@ -65,19 +69,25 @@ function customersFactory(_ref) {
|
|
|
65
69
|
* @param {Object} [opts.headers] - Optional headers
|
|
66
70
|
* @returns {Promise<import("axios").AxiosResponse<{ customers: Array<object>, total: number, ... }>>}
|
|
67
71
|
*/
|
|
68
|
-
function all(
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
72
|
+
function all({
|
|
73
|
+
token,
|
|
74
|
+
jwtToken,
|
|
75
|
+
query = {},
|
|
76
|
+
headers,
|
|
77
|
+
providerId
|
|
78
|
+
}) {
|
|
79
|
+
const query_ = providerId ? _objectSpread(_objectSpread({}, query), {}, {
|
|
80
|
+
providerId
|
|
81
|
+
}) : query;
|
|
77
82
|
return client({
|
|
78
83
|
url: "/customers",
|
|
79
84
|
params: query_,
|
|
80
|
-
headers: authorizationHeaders({
|
|
85
|
+
headers: authorizationHeaders({
|
|
86
|
+
token,
|
|
87
|
+
jwtToken,
|
|
88
|
+
internalAuthTokenProvider,
|
|
89
|
+
headers
|
|
90
|
+
})
|
|
81
91
|
});
|
|
82
92
|
}
|
|
83
93
|
|
|
@@ -91,18 +101,25 @@ function customersFactory(_ref) {
|
|
|
91
101
|
* @param {Object} [opts.headers] - Optional headers
|
|
92
102
|
* @returns {Promise<import("axios").AxiosResponse<{ _id: string, customerNumber: string, ... }>>}
|
|
93
103
|
*/
|
|
94
|
-
function create(
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
104
|
+
function create({
|
|
105
|
+
customer,
|
|
106
|
+
token,
|
|
107
|
+
jwtToken,
|
|
108
|
+
query,
|
|
109
|
+
headers
|
|
110
|
+
}) {
|
|
101
111
|
return client({
|
|
102
112
|
url: "/customer",
|
|
103
113
|
method: "post",
|
|
104
|
-
headers: authorizationHeaders({
|
|
105
|
-
|
|
114
|
+
headers: authorizationHeaders({
|
|
115
|
+
token,
|
|
116
|
+
jwtToken,
|
|
117
|
+
internalAuthTokenProvider,
|
|
118
|
+
headers
|
|
119
|
+
}),
|
|
120
|
+
data: {
|
|
121
|
+
customer
|
|
122
|
+
},
|
|
106
123
|
params: query
|
|
107
124
|
});
|
|
108
125
|
}
|
|
@@ -115,22 +132,22 @@ function customersFactory(_ref) {
|
|
|
115
132
|
* @param {string} opts.apiKey - API key (x-api-key)
|
|
116
133
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
117
134
|
*/
|
|
118
|
-
function signIn(
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
Authorization:
|
|
135
|
+
function signIn({
|
|
136
|
+
email,
|
|
137
|
+
password,
|
|
138
|
+
apiKey
|
|
139
|
+
}) {
|
|
140
|
+
const encodedCredentials = base64.encode(`${email}:${password}`);
|
|
141
|
+
const headers = {
|
|
142
|
+
Authorization: `Basic ${encodedCredentials}`
|
|
126
143
|
};
|
|
127
|
-
|
|
144
|
+
const params = {};
|
|
128
145
|
params["x-api-key"] = apiKey;
|
|
129
146
|
return client({
|
|
130
147
|
url: "/customers",
|
|
131
148
|
method: "post",
|
|
132
|
-
params
|
|
133
|
-
headers
|
|
149
|
+
params,
|
|
150
|
+
headers,
|
|
134
151
|
data: {}
|
|
135
152
|
});
|
|
136
153
|
}
|
|
@@ -144,21 +161,23 @@ function customersFactory(_ref) {
|
|
|
144
161
|
* @param {Object} [opts.headers] - Optional headers
|
|
145
162
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
146
163
|
*/
|
|
147
|
-
function signInCas(
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
164
|
+
function signInCas({
|
|
165
|
+
service,
|
|
166
|
+
ticket,
|
|
167
|
+
token,
|
|
168
|
+
headers
|
|
169
|
+
}) {
|
|
153
170
|
return client({
|
|
154
171
|
url: "/customers/cas",
|
|
155
172
|
headers: authorizationHeaders({
|
|
156
|
-
token
|
|
173
|
+
token,
|
|
174
|
+
internalAuthTokenProvider,
|
|
175
|
+
headers
|
|
157
176
|
}),
|
|
158
177
|
method: "post",
|
|
159
178
|
data: {
|
|
160
|
-
service
|
|
161
|
-
ticket
|
|
179
|
+
service,
|
|
180
|
+
ticket
|
|
162
181
|
}
|
|
163
182
|
});
|
|
164
183
|
}
|
|
@@ -174,20 +193,25 @@ function customersFactory(_ref) {
|
|
|
174
193
|
* @param {Object} [opts.headers] - Optional headers
|
|
175
194
|
* @returns {Promise<import("axios").AxiosResponse<CustomerWithAuthToken>>}
|
|
176
195
|
*/
|
|
177
|
-
function update(
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
196
|
+
function update({
|
|
197
|
+
customerId,
|
|
198
|
+
token,
|
|
199
|
+
jwtToken,
|
|
200
|
+
data,
|
|
201
|
+
query,
|
|
202
|
+
headers
|
|
203
|
+
}) {
|
|
185
204
|
return client({
|
|
186
|
-
url:
|
|
205
|
+
url: `/customers/${customerId}`,
|
|
187
206
|
method: "patch",
|
|
188
207
|
params: query,
|
|
189
|
-
headers: authorizationHeaders({
|
|
190
|
-
|
|
208
|
+
headers: authorizationHeaders({
|
|
209
|
+
token,
|
|
210
|
+
jwtToken,
|
|
211
|
+
internalAuthTokenProvider,
|
|
212
|
+
headers
|
|
213
|
+
}),
|
|
214
|
+
data
|
|
191
215
|
});
|
|
192
216
|
}
|
|
193
217
|
|
|
@@ -200,29 +224,34 @@ function customersFactory(_ref) {
|
|
|
200
224
|
* @param {Array<string>} opts.sourceCustomerIds - Source customer ids (24-char hex ObjectIds)
|
|
201
225
|
* @returns {Promise<import("axios").AxiosResponse<{ customerMerge: object }>>}
|
|
202
226
|
*/
|
|
203
|
-
function merge(
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
227
|
+
function merge({
|
|
228
|
+
destinationCustomerId,
|
|
229
|
+
sourceCustomerIds,
|
|
230
|
+
jwtToken,
|
|
231
|
+
token
|
|
232
|
+
}) {
|
|
209
233
|
return client({
|
|
210
234
|
url: "/customers/merge",
|
|
211
235
|
method: "post",
|
|
212
|
-
headers: authorizationHeaders({
|
|
213
|
-
|
|
236
|
+
headers: authorizationHeaders({
|
|
237
|
+
token,
|
|
238
|
+
jwtToken,
|
|
239
|
+
internalAuthTokenProvider
|
|
240
|
+
}),
|
|
241
|
+
data: {
|
|
242
|
+
destinationCustomerId,
|
|
243
|
+
sourceCustomerIds
|
|
244
|
+
}
|
|
214
245
|
});
|
|
215
246
|
}
|
|
216
|
-
|
|
217
247
|
return {
|
|
218
|
-
put
|
|
219
|
-
all
|
|
220
|
-
create
|
|
221
|
-
signIn
|
|
222
|
-
signInCas
|
|
223
|
-
update
|
|
224
|
-
merge
|
|
248
|
+
put,
|
|
249
|
+
all,
|
|
250
|
+
create,
|
|
251
|
+
signIn,
|
|
252
|
+
signInCas,
|
|
253
|
+
update,
|
|
254
|
+
merge
|
|
225
255
|
};
|
|
226
256
|
}
|
|
227
|
-
|
|
228
257
|
module.exports = customersFactory;
|
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
* Factory for API docs (btrz-api-accounts).
|
|
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 documentation.
|
|
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;
|