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 orders-rules-validations API (btrz-api-notifications).
|
|
@@ -10,12 +9,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ create: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function ordersRulesValidations({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* POST /orders-rules-validations - validate a rule using the data (body only). API does not accept query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -25,27 +22,30 @@ function ordersRulesValidations(_ref) {
|
|
|
25
22
|
* @param {Object} [opts.headers] - Optional headers
|
|
26
23
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
27
24
|
*/
|
|
28
|
-
function create(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
25
|
+
function create({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
query = {},
|
|
29
|
+
orderRulesValidation,
|
|
30
|
+
headers
|
|
31
|
+
}) {
|
|
36
32
|
return client({
|
|
37
33
|
url: "/orders-rules-validations",
|
|
38
34
|
method: "post",
|
|
39
35
|
params: query,
|
|
40
36
|
data: {
|
|
41
|
-
orderRulesValidation
|
|
37
|
+
orderRulesValidation
|
|
42
38
|
},
|
|
43
|
-
headers: authorizationHeaders({
|
|
39
|
+
headers: authorizationHeaders({
|
|
40
|
+
token,
|
|
41
|
+
jwtToken,
|
|
42
|
+
internalAuthTokenProvider,
|
|
43
|
+
headers
|
|
44
|
+
})
|
|
44
45
|
});
|
|
45
46
|
}
|
|
46
47
|
return {
|
|
47
|
-
create
|
|
48
|
+
create
|
|
48
49
|
};
|
|
49
50
|
}
|
|
50
|
-
|
|
51
51
|
module.exports = ordersRulesValidations;
|
|
@@ -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 pdf-templates-processing routes (btrz-api-notifications). Client uses type/family to resolve path.
|
|
@@ -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 pdfDataFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET PDF data (JSON) by item id and type.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -35,143 +32,138 @@ function pdfDataFactory(_ref) {
|
|
|
35
32
|
* @returns {Promise<import("axios").AxiosResponse>} response.data is JSON (structure depends on type)
|
|
36
33
|
*/
|
|
37
34
|
// eslint-disable-next-line max-statements
|
|
38
|
-
function get(
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
var url = "/pdf-tickets/" + itemId;
|
|
35
|
+
function get({
|
|
36
|
+
token,
|
|
37
|
+
jwtToken,
|
|
38
|
+
query = {},
|
|
39
|
+
itemId,
|
|
40
|
+
headers
|
|
41
|
+
}) {
|
|
42
|
+
let url = `/pdf-tickets/${itemId}`;
|
|
47
43
|
if (query.type === "product") {
|
|
48
44
|
switch (query.family) {
|
|
49
45
|
case "ticket":
|
|
50
|
-
url =
|
|
46
|
+
url = `/pdf-tickets/${itemId}`;
|
|
51
47
|
break;
|
|
52
48
|
case "reservation":
|
|
53
|
-
url =
|
|
49
|
+
url = `/pdf-reservations/${itemId}`;
|
|
54
50
|
break;
|
|
55
51
|
case "paid in":
|
|
56
|
-
url =
|
|
52
|
+
url = `/pdf-paid-ins/${itemId}`;
|
|
57
53
|
break;
|
|
58
54
|
case "paid out":
|
|
59
|
-
url =
|
|
55
|
+
url = `/pdf-paid-outs/${itemId}`;
|
|
60
56
|
break;
|
|
61
57
|
case "parcel":
|
|
62
|
-
url =
|
|
58
|
+
url = `/pdf-parcels/${itemId}`;
|
|
63
59
|
break;
|
|
64
60
|
case "flexpass":
|
|
65
|
-
url =
|
|
61
|
+
url = `/pdf-flexpasses/${itemId}`;
|
|
66
62
|
break;
|
|
67
63
|
case "bundle":
|
|
68
|
-
url =
|
|
64
|
+
url = `/pdf-redeemable-items/${itemId}`;
|
|
69
65
|
break;
|
|
70
66
|
default:
|
|
71
67
|
break;
|
|
72
68
|
}
|
|
73
69
|
}
|
|
74
|
-
|
|
75
70
|
if (query.type === "pre_trip_notification" || query.type === "post_trip_notification") {
|
|
76
|
-
url =
|
|
71
|
+
url = `/queue-notifications/manifest-notification-data/${itemId}`;
|
|
77
72
|
}
|
|
78
73
|
if (query.type === "parcel_confirmation") {
|
|
79
|
-
url =
|
|
74
|
+
url = `/pdf-parcels/${itemId}`;
|
|
80
75
|
}
|
|
81
76
|
if (query.type === "redeemable_items_confirmation") {
|
|
82
|
-
url =
|
|
77
|
+
url = `/pdf-redeemable-items/${itemId}`;
|
|
83
78
|
}
|
|
84
79
|
if (query.type === "sold_item_confirmation") {
|
|
85
|
-
url =
|
|
80
|
+
url = `/pdf-paid-ins/${itemId}`;
|
|
86
81
|
}
|
|
87
82
|
if (query.type === "customer_card_membership" || query.type === "scanning_badge" || query.type === "customer_activation" || query.type === "customer_activation_mobile" || query.type === "customer_password_reset" || query.type === "customer_password_reset_mobile") {
|
|
88
|
-
url =
|
|
83
|
+
url = `/pdf-customer/${itemId}`;
|
|
89
84
|
}
|
|
90
85
|
if (query.type === "giftCertificate" || query.type === "gift_certificate_notification") {
|
|
91
|
-
url =
|
|
86
|
+
url = `/pdf-gift-certificates/${itemId}`;
|
|
92
87
|
}
|
|
93
88
|
if (query.type === "user_password_reset") {
|
|
94
|
-
url =
|
|
89
|
+
url = `/pdf-users/${itemId}`;
|
|
95
90
|
}
|
|
96
91
|
if (query.type === "voucher" || query.type === "voucher_notification" || query.type === "compensation_voucher") {
|
|
97
|
-
url =
|
|
92
|
+
url = `/pdf-vouchers/${itemId}`;
|
|
98
93
|
}
|
|
99
94
|
if (query.type === "new_account" || query.type === "new_seller_account" || query.type === "interline_provider_invite") {
|
|
100
|
-
url =
|
|
95
|
+
url = `/pdf-accounts/${itemId}`;
|
|
101
96
|
}
|
|
102
97
|
if (query.type === "transaction" || query.type === "operator_purchase" || query.type === "operator_ssr") {
|
|
103
|
-
url =
|
|
98
|
+
url = `/pdf-transactions/${itemId}`;
|
|
104
99
|
}
|
|
105
100
|
if (query.type === "ssr") {
|
|
106
|
-
url =
|
|
101
|
+
url = `/pdf-ssrs/${itemId}`;
|
|
107
102
|
}
|
|
108
103
|
if (query.type === "passengersManifest") {
|
|
109
|
-
url =
|
|
104
|
+
url = `/pdf-passengers-manifests/${itemId}`;
|
|
110
105
|
}
|
|
111
106
|
if (query.type === "reaccomodation" || query.type === "ticket_movement") {
|
|
112
|
-
url =
|
|
107
|
+
url = `/pdf-tickets/${itemId}`;
|
|
113
108
|
}
|
|
114
109
|
if (query.type === "manifest" || query.type === "manifest_notification" || query.type === "operator_manifest_capacity") {
|
|
115
|
-
url =
|
|
110
|
+
url = `/pdf-manifests/${itemId}`;
|
|
116
111
|
}
|
|
117
|
-
|
|
112
|
+
const orderTypes = ["order", "order_confirmation", "cancellation", "change"];
|
|
118
113
|
if (orderTypes.includes(query.type)) {
|
|
119
|
-
url =
|
|
114
|
+
url = `/pdf-orders/${itemId}`;
|
|
120
115
|
}
|
|
121
116
|
if (query.type === "shift") {
|
|
122
|
-
url =
|
|
117
|
+
url = `/pdf-shifts/${itemId}`;
|
|
123
118
|
}
|
|
124
119
|
if (query.type === "remainderSlip") {
|
|
125
|
-
url =
|
|
120
|
+
url = `/pdf-remainder-slip/${itemId}`;
|
|
126
121
|
}
|
|
127
122
|
if (query.type === "exchange") {
|
|
128
|
-
url =
|
|
123
|
+
url = `/pdf-exchanges/${itemId}`;
|
|
129
124
|
}
|
|
130
125
|
if (query.type === "invoice") {
|
|
131
|
-
url =
|
|
126
|
+
url = `/pdf-invoices/${itemId}`;
|
|
132
127
|
}
|
|
133
128
|
if (query.type === "locationClosure") {
|
|
134
|
-
url =
|
|
129
|
+
url = `/pdf-location-closures/${itemId}`;
|
|
135
130
|
}
|
|
136
131
|
if (query.type === "parcelManifest") {
|
|
137
|
-
url =
|
|
132
|
+
url = `/pdf-parcels-manifests/${itemId}`;
|
|
138
133
|
}
|
|
139
134
|
if (query.type === "startingBalance") {
|
|
140
|
-
url =
|
|
135
|
+
url = `/pdf-starting-balance/${itemId}`;
|
|
141
136
|
}
|
|
142
137
|
if (query.type === "partialShiftDeposits") {
|
|
143
|
-
url =
|
|
138
|
+
url = `/pdf-partial-shift-deposits/${itemId}`;
|
|
144
139
|
}
|
|
145
140
|
if (query.type === "shiftLocationClosure") {
|
|
146
|
-
url =
|
|
141
|
+
url = `/pdf-shift-location-closures/${itemId}`;
|
|
147
142
|
}
|
|
148
143
|
if (query.type === "bankDepositSlip") {
|
|
149
|
-
url =
|
|
144
|
+
url = `/pdf-bank-deposit-slips/${itemId}`;
|
|
150
145
|
}
|
|
151
146
|
if (query.type === "terminalVoucher") {
|
|
152
|
-
url =
|
|
147
|
+
url = `/pdf-terminal-voucher/${itemId}`;
|
|
153
148
|
}
|
|
154
149
|
if (query.type === "manualTickets") {
|
|
155
|
-
url =
|
|
150
|
+
url = `/pdf-manual-tickets/${itemId}`;
|
|
156
151
|
}
|
|
157
152
|
if (query.type === "externalWalletVoucher") {
|
|
158
|
-
url =
|
|
153
|
+
url = `/pdf-external-wallet-voucher/${itemId}`;
|
|
159
154
|
}
|
|
160
|
-
|
|
161
155
|
return client.get(url, {
|
|
162
156
|
params: query,
|
|
163
157
|
headers: authorizationHeaders({
|
|
164
|
-
token
|
|
165
|
-
jwtToken
|
|
166
|
-
internalAuthTokenProvider
|
|
167
|
-
headers
|
|
158
|
+
token,
|
|
159
|
+
jwtToken,
|
|
160
|
+
internalAuthTokenProvider,
|
|
161
|
+
headers
|
|
168
162
|
})
|
|
169
163
|
});
|
|
170
164
|
}
|
|
171
|
-
|
|
172
165
|
return {
|
|
173
|
-
get
|
|
166
|
+
get
|
|
174
167
|
};
|
|
175
168
|
}
|
|
176
|
-
|
|
177
169
|
module.exports = pdfDataFactory;
|
|
@@ -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 pdf-templates-processing binary routes (btrz-api-notifications). Client uses type/family to resolve path.
|
|
@@ -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 pdfFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET a PDF by item id and type. Returns binary (blob) by default.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -36,119 +33,115 @@ function pdfFactory(_ref) {
|
|
|
36
33
|
* @returns {Promise<import("axios").AxiosResponse<Blob|ArrayBuffer>>}
|
|
37
34
|
*/
|
|
38
35
|
// eslint-disable-next-line max-statements
|
|
39
|
-
function get(
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
var url = "/pdf-tickets/" + itemId;
|
|
36
|
+
function get({
|
|
37
|
+
token,
|
|
38
|
+
jwtToken,
|
|
39
|
+
query = {},
|
|
40
|
+
itemId,
|
|
41
|
+
headers,
|
|
42
|
+
responseType
|
|
43
|
+
}) {
|
|
44
|
+
let url = `/pdf-tickets/${itemId}`;
|
|
49
45
|
if (query.type === "product") {
|
|
50
46
|
switch (query.family) {
|
|
51
47
|
case "ticket":
|
|
52
|
-
url =
|
|
48
|
+
url = `/pdf-tickets/${itemId}`;
|
|
53
49
|
break;
|
|
54
50
|
case "reservation":
|
|
55
|
-
url =
|
|
51
|
+
url = `/pdf-reservations/${itemId}`;
|
|
56
52
|
break;
|
|
57
53
|
case "paid in":
|
|
58
|
-
url =
|
|
54
|
+
url = `/pdf-paid-ins/${itemId}`;
|
|
59
55
|
break;
|
|
60
56
|
case "paid out":
|
|
61
|
-
url =
|
|
57
|
+
url = `/pdf-paid-outs/${itemId}`;
|
|
62
58
|
break;
|
|
63
59
|
case "parcel":
|
|
64
|
-
url =
|
|
60
|
+
url = `/pdf-parcels/${itemId}`;
|
|
65
61
|
break;
|
|
66
62
|
case "flexpass":
|
|
67
|
-
url =
|
|
63
|
+
url = `/pdf-flexpasses/${itemId}`;
|
|
68
64
|
break;
|
|
69
65
|
case "bundle":
|
|
70
|
-
url =
|
|
66
|
+
url = `/pdf-redeemable-items/${itemId}`;
|
|
71
67
|
break;
|
|
72
68
|
default:
|
|
73
69
|
break;
|
|
74
70
|
}
|
|
75
71
|
}
|
|
76
72
|
if (query.type === "giftCertificate") {
|
|
77
|
-
url =
|
|
73
|
+
url = `/pdf-gift-certificates/${itemId}`;
|
|
78
74
|
}
|
|
79
75
|
if (query.type === "voucher") {
|
|
80
|
-
url =
|
|
76
|
+
url = `/pdf-vouchers/${itemId}`;
|
|
81
77
|
}
|
|
82
78
|
if (query.type === "transaction") {
|
|
83
|
-
url =
|
|
79
|
+
url = `/pdf-transactions/${itemId}`;
|
|
84
80
|
}
|
|
85
81
|
if (query.type === "ssr") {
|
|
86
|
-
url =
|
|
82
|
+
url = `/pdf-ssrs/${itemId}`;
|
|
87
83
|
}
|
|
88
84
|
if (query.type === "manifest") {
|
|
89
|
-
url =
|
|
85
|
+
url = `/pdf-manifests/${itemId}`;
|
|
90
86
|
}
|
|
91
87
|
if (query.type === "passengersManifest") {
|
|
92
|
-
url =
|
|
88
|
+
url = `/pdf-passengers-manifests/${itemId}`;
|
|
93
89
|
}
|
|
94
90
|
if (query.type === "order") {
|
|
95
|
-
url =
|
|
91
|
+
url = `/pdf-orders/${itemId}`;
|
|
96
92
|
}
|
|
97
93
|
if (query.type === "shift") {
|
|
98
|
-
url =
|
|
94
|
+
url = `/pdf-shifts/${itemId}`;
|
|
99
95
|
}
|
|
100
96
|
if (query.type === "remainderSlip") {
|
|
101
|
-
url =
|
|
97
|
+
url = `/pdf-remainder-slip/${itemId}`;
|
|
102
98
|
}
|
|
103
99
|
if (query.type === "exchange") {
|
|
104
|
-
url =
|
|
100
|
+
url = `/pdf-exchanges/${itemId}`;
|
|
105
101
|
}
|
|
106
102
|
if (query.type === "invoice") {
|
|
107
|
-
url =
|
|
103
|
+
url = `/pdf-invoices/${itemId}`;
|
|
108
104
|
}
|
|
109
105
|
if (query.type === "locationClosure") {
|
|
110
|
-
url =
|
|
106
|
+
url = `/pdf-location-closures/${itemId}`;
|
|
111
107
|
}
|
|
112
108
|
if (query.type === "parcelManifest") {
|
|
113
|
-
url =
|
|
109
|
+
url = `/pdf-parcels-manifests/${itemId}`;
|
|
114
110
|
}
|
|
115
111
|
if (query.type === "startingBalance") {
|
|
116
|
-
url =
|
|
112
|
+
url = `/pdf-starting-balance/${itemId}`;
|
|
117
113
|
}
|
|
118
114
|
if (query.type === "partialShiftDeposits") {
|
|
119
|
-
url =
|
|
115
|
+
url = `/pdf-partial-shift-deposits-id/${itemId}`;
|
|
120
116
|
}
|
|
121
117
|
if (query.type === "shiftLocationClosure") {
|
|
122
|
-
url =
|
|
118
|
+
url = `/pdf-shift-location-closures/${itemId}`;
|
|
123
119
|
}
|
|
124
120
|
if (query.type === "bankDepositSlip") {
|
|
125
|
-
url =
|
|
121
|
+
url = `/pdf-bank-deposit-slips/${itemId}`;
|
|
126
122
|
}
|
|
127
123
|
if (query.type === "terminalVoucher") {
|
|
128
|
-
url =
|
|
124
|
+
url = `/pdf-terminal-voucher/${itemId}`;
|
|
129
125
|
}
|
|
130
126
|
if (query.type === "manualTickets") {
|
|
131
|
-
url =
|
|
127
|
+
url = `/pdf-manual-tickets/${itemId}`;
|
|
132
128
|
}
|
|
133
129
|
if (query.type === "externalWalletVoucher") {
|
|
134
|
-
url =
|
|
130
|
+
url = `/pdf-external-wallet-voucher/${itemId}`;
|
|
135
131
|
}
|
|
136
|
-
|
|
137
132
|
return client.get(url, {
|
|
138
133
|
params: query,
|
|
139
134
|
responseType: responseType || "blob",
|
|
140
135
|
headers: authorizationHeaders({
|
|
141
|
-
token
|
|
142
|
-
jwtToken
|
|
143
|
-
internalAuthTokenProvider
|
|
144
|
-
headers
|
|
136
|
+
token,
|
|
137
|
+
jwtToken,
|
|
138
|
+
internalAuthTokenProvider,
|
|
139
|
+
headers
|
|
145
140
|
})
|
|
146
141
|
});
|
|
147
142
|
}
|
|
148
|
-
|
|
149
143
|
return {
|
|
150
|
-
get
|
|
144
|
+
get
|
|
151
145
|
};
|
|
152
146
|
}
|
|
153
|
-
|
|
154
147
|
module.exports = pdfFactory;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
authorizationHeaders = _require.authorizationHeaders;
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("../endpoints_helpers.js");
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Query params for GET /printed-tickets (btrz-api-notifications). See get-printed-tickets getSpec().
|
|
@@ -19,12 +18,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
19
18
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
20
19
|
* @returns {{ get: function }}
|
|
21
20
|
*/
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
27
|
-
|
|
21
|
+
function printedTicketsFactory({
|
|
22
|
+
client,
|
|
23
|
+
internalAuthTokenProvider
|
|
24
|
+
}) {
|
|
28
25
|
/**
|
|
29
26
|
* GET /printed-tickets - get printed tickets PDF (trxId required; lang, date optional).
|
|
30
27
|
* @param {Object} opts
|
|
@@ -38,28 +35,35 @@ function printedTicketsFactory(_ref) {
|
|
|
38
35
|
* @param {Object} [opts.headers] - Optional headers
|
|
39
36
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
40
37
|
*/
|
|
41
|
-
function get(
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
38
|
+
function get({
|
|
39
|
+
token,
|
|
40
|
+
jwtToken,
|
|
41
|
+
responseType = "json",
|
|
42
|
+
trxId,
|
|
43
|
+
lang,
|
|
44
|
+
date,
|
|
45
|
+
channel,
|
|
46
|
+
headers
|
|
47
|
+
}) {
|
|
52
48
|
return client({
|
|
53
49
|
url: "/printed-tickets",
|
|
54
|
-
params: {
|
|
55
|
-
|
|
56
|
-
|
|
50
|
+
params: {
|
|
51
|
+
trxId,
|
|
52
|
+
lang,
|
|
53
|
+
date,
|
|
54
|
+
channel
|
|
55
|
+
},
|
|
56
|
+
responseType,
|
|
57
|
+
headers: authorizationHeaders({
|
|
58
|
+
token,
|
|
59
|
+
jwtToken,
|
|
60
|
+
internalAuthTokenProvider,
|
|
61
|
+
headers
|
|
62
|
+
})
|
|
57
63
|
});
|
|
58
64
|
}
|
|
59
|
-
|
|
60
65
|
return {
|
|
61
|
-
get
|
|
66
|
+
get
|
|
62
67
|
};
|
|
63
68
|
}
|
|
64
|
-
|
|
65
69
|
module.exports = printedTicketsFactory;
|
|
@@ -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 salesforce API (btrz-api-notifications).
|
|
@@ -10,12 +9,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ sms: { create: function } }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function salesforceFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
return {
|
|
20
17
|
sms: {
|
|
21
18
|
/**
|
|
@@ -27,24 +24,27 @@ function salesforceFactory(_ref) {
|
|
|
27
24
|
* @param {Object} [opts.headers] - Optional headers
|
|
28
25
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
29
26
|
*/
|
|
30
|
-
create
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
27
|
+
create({
|
|
28
|
+
token,
|
|
29
|
+
jwtToken,
|
|
30
|
+
smsMsg = {},
|
|
31
|
+
headers
|
|
32
|
+
}) {
|
|
37
33
|
return client({
|
|
38
34
|
url: "/salesforce/sms",
|
|
39
35
|
method: "post",
|
|
40
36
|
data: {
|
|
41
37
|
sms: smsMsg
|
|
42
38
|
},
|
|
43
|
-
headers: authorizationHeaders({
|
|
39
|
+
headers: authorizationHeaders({
|
|
40
|
+
token,
|
|
41
|
+
jwtToken,
|
|
42
|
+
internalAuthTokenProvider,
|
|
43
|
+
headers
|
|
44
|
+
})
|
|
44
45
|
});
|
|
45
46
|
}
|
|
46
47
|
}
|
|
47
48
|
};
|
|
48
49
|
}
|
|
49
|
-
|
|
50
50
|
module.exports = salesforceFactory;
|