btrz-api-client 8.75.1 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +112 -85
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +258 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/operations/transactions.js +1 -1
- package/src/endpoints/sales/cart.js +31 -1
- package/test/endpoints/sales/cart.test.js +6 -0
- package/tools/build-standalone.mjs +15 -0
- package/.eslint-report.json +0 -1
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/* eslint-disable import/extensions */
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
const {
|
|
3
|
+
authorizationHeaders
|
|
4
|
+
} = require("./../endpoints_helpers.js");
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* Factory for email-settings API (btrz-api-accounts).
|
|
@@ -12,12 +11,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
12
11
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
13
12
|
* @returns {{ all: function, getByEmail: function, create: function, update: function, remove: function }}
|
|
14
13
|
*/
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
20
|
-
|
|
14
|
+
function emailSettingsFactory({
|
|
15
|
+
client,
|
|
16
|
+
internalAuthTokenProvider
|
|
17
|
+
}) {
|
|
21
18
|
/**
|
|
22
19
|
* GET /email-settings – List all email settings for the account.
|
|
23
20
|
* Response may trigger AWS verification and commIdentity updates. No query params.
|
|
@@ -27,17 +24,21 @@ function emailSettingsFactory(_ref) {
|
|
|
27
24
|
* @param {Object} [opts.headers] - Optional headers
|
|
28
25
|
* @returns {Promise<import("axios").AxiosResponse<{ emailSettings: object[] }>>}
|
|
29
26
|
*/
|
|
30
|
-
function all(
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
27
|
+
function all({
|
|
28
|
+
token,
|
|
29
|
+
jwtToken,
|
|
30
|
+
query = {},
|
|
31
|
+
headers
|
|
32
|
+
}) {
|
|
37
33
|
return client({
|
|
38
34
|
params: query,
|
|
39
35
|
url: "/email-settings",
|
|
40
|
-
headers: authorizationHeaders({
|
|
36
|
+
headers: authorizationHeaders({
|
|
37
|
+
token,
|
|
38
|
+
jwtToken,
|
|
39
|
+
internalAuthTokenProvider,
|
|
40
|
+
headers
|
|
41
|
+
})
|
|
41
42
|
});
|
|
42
43
|
}
|
|
43
44
|
/**
|
|
@@ -49,18 +50,22 @@ function emailSettingsFactory(_ref) {
|
|
|
49
50
|
* @param {Object} [opts.headers] - Optional headers
|
|
50
51
|
* @returns {Promise<import("axios").AxiosResponse<object>>} response.data is EmailSetting
|
|
51
52
|
*/
|
|
52
|
-
function getByEmail(
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
53
|
+
function getByEmail({
|
|
54
|
+
token,
|
|
55
|
+
jwtToken,
|
|
56
|
+
email,
|
|
57
|
+
query = {},
|
|
58
|
+
headers
|
|
59
|
+
}) {
|
|
60
60
|
return client({
|
|
61
61
|
params: query,
|
|
62
|
-
url:
|
|
63
|
-
headers: authorizationHeaders({
|
|
62
|
+
url: `/email-settings/${email}`,
|
|
63
|
+
headers: authorizationHeaders({
|
|
64
|
+
token,
|
|
65
|
+
jwtToken,
|
|
66
|
+
internalAuthTokenProvider,
|
|
67
|
+
headers
|
|
68
|
+
})
|
|
64
69
|
});
|
|
65
70
|
}
|
|
66
71
|
|
|
@@ -74,17 +79,22 @@ function emailSettingsFactory(_ref) {
|
|
|
74
79
|
* @param {Object} [opts.headers] - Optional headers
|
|
75
80
|
* @returns {Promise<import("axios").AxiosResponse<{ emailSetting: object }>>}
|
|
76
81
|
*/
|
|
77
|
-
function create(
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
82
|
+
function create({
|
|
83
|
+
data,
|
|
84
|
+
token,
|
|
85
|
+
jwtToken,
|
|
86
|
+
headers
|
|
87
|
+
}) {
|
|
83
88
|
return client({
|
|
84
89
|
url: "/email-settings",
|
|
85
90
|
method: "post",
|
|
86
|
-
headers: authorizationHeaders({
|
|
87
|
-
|
|
91
|
+
headers: authorizationHeaders({
|
|
92
|
+
token,
|
|
93
|
+
jwtToken,
|
|
94
|
+
internalAuthTokenProvider,
|
|
95
|
+
headers
|
|
96
|
+
}),
|
|
97
|
+
data
|
|
88
98
|
});
|
|
89
99
|
}
|
|
90
100
|
|
|
@@ -98,18 +108,23 @@ function emailSettingsFactory(_ref) {
|
|
|
98
108
|
* @param {Object} [opts.headers] - Optional headers
|
|
99
109
|
* @returns {Promise<import("axios").AxiosResponse<{ emailSetting: object }>>}
|
|
100
110
|
*/
|
|
101
|
-
function update(
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
111
|
+
function update({
|
|
112
|
+
token,
|
|
113
|
+
jwtToken,
|
|
114
|
+
email,
|
|
115
|
+
data,
|
|
116
|
+
headers
|
|
117
|
+
}) {
|
|
108
118
|
return client({
|
|
109
|
-
url:
|
|
119
|
+
url: `/email-settings/${email}`,
|
|
110
120
|
method: "put",
|
|
111
|
-
headers: authorizationHeaders({
|
|
112
|
-
|
|
121
|
+
headers: authorizationHeaders({
|
|
122
|
+
token,
|
|
123
|
+
jwtToken,
|
|
124
|
+
internalAuthTokenProvider,
|
|
125
|
+
headers
|
|
126
|
+
}),
|
|
127
|
+
data
|
|
113
128
|
});
|
|
114
129
|
}
|
|
115
130
|
|
|
@@ -123,26 +138,29 @@ function emailSettingsFactory(_ref) {
|
|
|
123
138
|
* @param {Object} [opts.headers] - Optional headers
|
|
124
139
|
* @returns {Promise<import("axios").AxiosResponse<{ emailSetting: object }>>}
|
|
125
140
|
*/
|
|
126
|
-
function remove(
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
141
|
+
function remove({
|
|
142
|
+
email,
|
|
143
|
+
token,
|
|
144
|
+
jwtToken,
|
|
145
|
+
headers
|
|
146
|
+
}) {
|
|
132
147
|
return client({
|
|
133
|
-
url:
|
|
148
|
+
url: `/email-settings/${email}`,
|
|
134
149
|
method: "delete",
|
|
135
|
-
headers: authorizationHeaders({
|
|
150
|
+
headers: authorizationHeaders({
|
|
151
|
+
token,
|
|
152
|
+
jwtToken,
|
|
153
|
+
internalAuthTokenProvider,
|
|
154
|
+
headers
|
|
155
|
+
})
|
|
136
156
|
});
|
|
137
157
|
}
|
|
138
|
-
|
|
139
158
|
return {
|
|
140
|
-
all
|
|
141
|
-
getByEmail
|
|
142
|
-
create
|
|
143
|
-
update
|
|
144
|
-
remove
|
|
159
|
+
all,
|
|
160
|
+
getByEmail,
|
|
161
|
+
create,
|
|
162
|
+
update,
|
|
163
|
+
remove
|
|
145
164
|
};
|
|
146
165
|
}
|
|
147
|
-
|
|
148
166
|
module.exports = emailSettingsFactory;
|
|
@@ -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 /email-templates (btrz-api-accounts). See get-handler getSpec().
|
|
@@ -49,12 +48,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
49
48
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
50
49
|
* @returns {{ getTypes: function, all: function, get: function, create: function, update: function, remove: function, createSub: function, versions: { update: function } }}
|
|
51
50
|
*/
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
57
|
-
|
|
51
|
+
function emailTemplatesFactory({
|
|
52
|
+
client,
|
|
53
|
+
internalAuthTokenProvider
|
|
54
|
+
}) {
|
|
58
55
|
/**
|
|
59
56
|
* GET /email-templates/types - returns available template types.
|
|
60
57
|
* @param {Object} opts
|
|
@@ -63,14 +60,19 @@ function emailTemplatesFactory(_ref) {
|
|
|
63
60
|
* @param {Object} [opts.headers] - Optional headers
|
|
64
61
|
* @returns {Promise<import("axios").AxiosResponse>} response.data contains types array
|
|
65
62
|
*/
|
|
66
|
-
function getTypes(
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
63
|
+
function getTypes({
|
|
64
|
+
token,
|
|
65
|
+
jwtToken,
|
|
66
|
+
headers
|
|
67
|
+
}) {
|
|
71
68
|
return client({
|
|
72
69
|
url: "/email-templates/types",
|
|
73
|
-
headers: authorizationHeaders({
|
|
70
|
+
headers: authorizationHeaders({
|
|
71
|
+
token,
|
|
72
|
+
jwtToken,
|
|
73
|
+
internalAuthTokenProvider,
|
|
74
|
+
headers
|
|
75
|
+
})
|
|
74
76
|
});
|
|
75
77
|
}
|
|
76
78
|
|
|
@@ -83,17 +85,21 @@ function emailTemplatesFactory(_ref) {
|
|
|
83
85
|
* @param {Object} [opts.headers] - Optional headers
|
|
84
86
|
* @returns {Promise<import("axios").AxiosResponse<{ emailTemplates: Array<object>, next?: string, previous?: string, totalRecords?: number, page?: number }>>}
|
|
85
87
|
*/
|
|
86
|
-
function all(
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
88
|
+
function all({
|
|
89
|
+
token,
|
|
90
|
+
jwtToken,
|
|
91
|
+
query = {},
|
|
92
|
+
headers
|
|
93
|
+
}) {
|
|
93
94
|
return client({
|
|
94
95
|
url: "/email-templates",
|
|
95
96
|
params: query,
|
|
96
|
-
headers: authorizationHeaders({
|
|
97
|
+
headers: authorizationHeaders({
|
|
98
|
+
token,
|
|
99
|
+
jwtToken,
|
|
100
|
+
internalAuthTokenProvider,
|
|
101
|
+
headers
|
|
102
|
+
})
|
|
97
103
|
});
|
|
98
104
|
}
|
|
99
105
|
|
|
@@ -107,18 +113,22 @@ function emailTemplatesFactory(_ref) {
|
|
|
107
113
|
* @param {Object} [opts.headers] - Optional headers
|
|
108
114
|
* @returns {Promise<import("axios").AxiosResponse<{ emailTemplate: object }>>}
|
|
109
115
|
*/
|
|
110
|
-
function get(
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
function get({
|
|
117
|
+
token,
|
|
118
|
+
jwtToken,
|
|
119
|
+
emailTemplateId,
|
|
120
|
+
query = {},
|
|
121
|
+
headers
|
|
122
|
+
}) {
|
|
118
123
|
return client({
|
|
119
|
-
url:
|
|
124
|
+
url: `/email-templates/${emailTemplateId}`,
|
|
120
125
|
params: query,
|
|
121
|
-
headers: authorizationHeaders({
|
|
126
|
+
headers: authorizationHeaders({
|
|
127
|
+
token,
|
|
128
|
+
jwtToken,
|
|
129
|
+
internalAuthTokenProvider,
|
|
130
|
+
headers
|
|
131
|
+
})
|
|
122
132
|
});
|
|
123
133
|
}
|
|
124
134
|
|
|
@@ -131,17 +141,22 @@ function emailTemplatesFactory(_ref) {
|
|
|
131
141
|
* @param {Object} [opts.headers] - Optional headers
|
|
132
142
|
* @returns {Promise<import("axios").AxiosResponse<{ emailTemplate: object }>>}
|
|
133
143
|
*/
|
|
134
|
-
function create(
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
144
|
+
function create({
|
|
145
|
+
token,
|
|
146
|
+
jwtToken,
|
|
147
|
+
data,
|
|
148
|
+
headers
|
|
149
|
+
}) {
|
|
140
150
|
return client({
|
|
141
151
|
url: "/email-templates",
|
|
142
152
|
method: "post",
|
|
143
|
-
headers: authorizationHeaders({
|
|
144
|
-
|
|
153
|
+
headers: authorizationHeaders({
|
|
154
|
+
token,
|
|
155
|
+
jwtToken,
|
|
156
|
+
internalAuthTokenProvider,
|
|
157
|
+
headers
|
|
158
|
+
}),
|
|
159
|
+
data
|
|
145
160
|
});
|
|
146
161
|
}
|
|
147
162
|
|
|
@@ -155,18 +170,23 @@ function emailTemplatesFactory(_ref) {
|
|
|
155
170
|
* @param {Object} [opts.headers] - Optional headers
|
|
156
171
|
* @returns {Promise<import("axios").AxiosResponse<{ emailTemplate: object }>>}
|
|
157
172
|
*/
|
|
158
|
-
function update(
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
173
|
+
function update({
|
|
174
|
+
token,
|
|
175
|
+
jwtToken,
|
|
176
|
+
emailTemplateId,
|
|
177
|
+
data,
|
|
178
|
+
headers
|
|
179
|
+
}) {
|
|
165
180
|
return client({
|
|
166
|
-
url:
|
|
181
|
+
url: `/email-templates/${emailTemplateId}`,
|
|
167
182
|
method: "put",
|
|
168
|
-
headers: authorizationHeaders({
|
|
169
|
-
|
|
183
|
+
headers: authorizationHeaders({
|
|
184
|
+
token,
|
|
185
|
+
jwtToken,
|
|
186
|
+
internalAuthTokenProvider,
|
|
187
|
+
headers
|
|
188
|
+
}),
|
|
189
|
+
data
|
|
170
190
|
});
|
|
171
191
|
}
|
|
172
192
|
|
|
@@ -179,16 +199,21 @@ function emailTemplatesFactory(_ref) {
|
|
|
179
199
|
* @param {Object} [opts.headers] - Optional headers
|
|
180
200
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
181
201
|
*/
|
|
182
|
-
function remove(
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
202
|
+
function remove({
|
|
203
|
+
token,
|
|
204
|
+
jwtToken,
|
|
205
|
+
emailTemplateId,
|
|
206
|
+
headers
|
|
207
|
+
}) {
|
|
188
208
|
return client({
|
|
189
|
-
url:
|
|
209
|
+
url: `/email-templates/${emailTemplateId}`,
|
|
190
210
|
method: "delete",
|
|
191
|
-
headers: authorizationHeaders({
|
|
211
|
+
headers: authorizationHeaders({
|
|
212
|
+
token,
|
|
213
|
+
jwtToken,
|
|
214
|
+
internalAuthTokenProvider,
|
|
215
|
+
headers
|
|
216
|
+
})
|
|
192
217
|
});
|
|
193
218
|
}
|
|
194
219
|
|
|
@@ -203,22 +228,29 @@ function emailTemplatesFactory(_ref) {
|
|
|
203
228
|
* @returns {Promise<import("axios").AxiosResponse<{ emailTemplate: object }>>}
|
|
204
229
|
* @throws {import("axios").AxiosError} 400 validation (WRONG_DATA, MAIN_TEMPLATE_IS_NOT_CUSTOM), 401 (MAIN_TEMPLATE_ACCOUNT_MISMATCH, MAIN_TEMPLATE_NOT_FROM_PROVIDER), 404 MAIN_TEMPLATE_NOT_FOUND, 500
|
|
205
230
|
*/
|
|
206
|
-
function createSub(
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
231
|
+
function createSub({
|
|
232
|
+
token,
|
|
233
|
+
jwtToken,
|
|
234
|
+
mainTemplateId,
|
|
235
|
+
agencyId,
|
|
236
|
+
headers
|
|
237
|
+
}) {
|
|
213
238
|
return client({
|
|
214
239
|
url: "/sub-email-templates",
|
|
215
240
|
method: "post",
|
|
216
|
-
headers: authorizationHeaders({
|
|
217
|
-
|
|
241
|
+
headers: authorizationHeaders({
|
|
242
|
+
token,
|
|
243
|
+
jwtToken,
|
|
244
|
+
internalAuthTokenProvider,
|
|
245
|
+
headers
|
|
246
|
+
}),
|
|
247
|
+
data: {
|
|
248
|
+
mainTemplateId,
|
|
249
|
+
agencyId
|
|
250
|
+
}
|
|
218
251
|
});
|
|
219
252
|
}
|
|
220
|
-
|
|
221
|
-
var versions = {
|
|
253
|
+
const versions = {
|
|
222
254
|
/**
|
|
223
255
|
* PUT /email-templates/:emailTemplateId/versions/:versionId - roll back template to a saved version (versionId is zero-based index in versions array).
|
|
224
256
|
* @param {Object} opts
|
|
@@ -231,34 +263,36 @@ function emailTemplatesFactory(_ref) {
|
|
|
231
263
|
* @returns {Promise<import("axios").AxiosResponse<{ emailTemplate: object }>>}
|
|
232
264
|
* @throws {import("axios").AxiosError} 400 WRONG_DATA, 401 NOT_SUPER_USER, 404 EMAIL_TEMPLATE_NOT_FOUND / EMAIL_TEMPLATE_VERSION_NOT_FOUND, 500
|
|
233
265
|
*/
|
|
234
|
-
update
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
266
|
+
update({
|
|
267
|
+
token,
|
|
268
|
+
jwtToken,
|
|
269
|
+
emailTemplateId,
|
|
270
|
+
versionId,
|
|
271
|
+
query = {},
|
|
272
|
+
headers
|
|
273
|
+
}) {
|
|
243
274
|
return client({
|
|
244
|
-
url:
|
|
275
|
+
url: `/email-templates/${emailTemplateId}/versions/${versionId}`,
|
|
245
276
|
method: "put",
|
|
246
|
-
headers: authorizationHeaders({
|
|
277
|
+
headers: authorizationHeaders({
|
|
278
|
+
token,
|
|
279
|
+
jwtToken,
|
|
280
|
+
internalAuthTokenProvider,
|
|
281
|
+
headers
|
|
282
|
+
}),
|
|
247
283
|
params: query
|
|
248
284
|
});
|
|
249
285
|
}
|
|
250
286
|
};
|
|
251
|
-
|
|
252
287
|
return {
|
|
253
|
-
getTypes
|
|
254
|
-
all
|
|
255
|
-
get
|
|
256
|
-
create
|
|
257
|
-
update
|
|
258
|
-
remove
|
|
259
|
-
createSub
|
|
260
|
-
versions
|
|
288
|
+
getTypes,
|
|
289
|
+
all,
|
|
290
|
+
get,
|
|
291
|
+
create,
|
|
292
|
+
update,
|
|
293
|
+
remove,
|
|
294
|
+
createSub,
|
|
295
|
+
versions
|
|
261
296
|
};
|
|
262
297
|
}
|
|
263
|
-
|
|
264
298
|
module.exports = emailTemplatesFactory;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/* eslint-disable max-len */
|
|
4
2
|
/* eslint-disable import/extensions */
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
const {
|
|
4
|
+
authorizationHeaders
|
|
5
|
+
} = require("./../endpoints_helpers");
|
|
7
6
|
|
|
8
7
|
/**
|
|
9
8
|
* Factory for exchange-rates API (btrz-api-accounts).
|
|
@@ -13,12 +12,10 @@ var _require = require("./../endpoints_helpers"),
|
|
|
13
12
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
14
13
|
* @returns {{ allByIsoCode: function, create: function }}
|
|
15
14
|
*/
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
21
|
-
|
|
15
|
+
function exchangeRatesFactory({
|
|
16
|
+
client,
|
|
17
|
+
internalAuthTokenProvider
|
|
18
|
+
}) {
|
|
22
19
|
/**
|
|
23
20
|
* GET /exchange-rates/:isoCode – List exchange rates for the account filtered by currency ISO code (3 letters).
|
|
24
21
|
* Response is paginated (exchangeRates array + totalRecords, page, etc.).
|
|
@@ -30,18 +27,22 @@ function exchangeRatesFactory(_ref) {
|
|
|
30
27
|
* @param {Object} [opts.headers] - Optional headers
|
|
31
28
|
* @returns {Promise<import("axios").AxiosResponse<{ exchangeRates: object[], totalRecords: number, ... }>>}
|
|
32
29
|
*/
|
|
33
|
-
function allByIsoCode(
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
30
|
+
function allByIsoCode({
|
|
31
|
+
token,
|
|
32
|
+
jwtToken,
|
|
33
|
+
isoCode,
|
|
34
|
+
query = {},
|
|
35
|
+
headers
|
|
36
|
+
}) {
|
|
41
37
|
return client({
|
|
42
38
|
params: query,
|
|
43
|
-
url:
|
|
44
|
-
headers: authorizationHeaders({
|
|
39
|
+
url: `/exchange-rates/${isoCode}`,
|
|
40
|
+
headers: authorizationHeaders({
|
|
41
|
+
token,
|
|
42
|
+
jwtToken,
|
|
43
|
+
internalAuthTokenProvider,
|
|
44
|
+
headers
|
|
45
|
+
})
|
|
45
46
|
});
|
|
46
47
|
}
|
|
47
48
|
|
|
@@ -56,24 +57,27 @@ function exchangeRatesFactory(_ref) {
|
|
|
56
57
|
* @param {Object} [opts.headers] - Optional headers
|
|
57
58
|
* @returns {Promise<import("axios").AxiosResponse<{ exchangeRate: object }>>}
|
|
58
59
|
*/
|
|
59
|
-
function create(
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
60
|
+
function create({
|
|
61
|
+
data,
|
|
62
|
+
token,
|
|
63
|
+
jwtToken,
|
|
64
|
+
headers
|
|
65
|
+
}) {
|
|
65
66
|
return client({
|
|
66
67
|
url: "/exchange-rates",
|
|
67
68
|
method: "post",
|
|
68
|
-
headers: authorizationHeaders({
|
|
69
|
-
|
|
69
|
+
headers: authorizationHeaders({
|
|
70
|
+
token,
|
|
71
|
+
jwtToken,
|
|
72
|
+
internalAuthTokenProvider,
|
|
73
|
+
headers
|
|
74
|
+
}),
|
|
75
|
+
data
|
|
70
76
|
});
|
|
71
77
|
}
|
|
72
|
-
|
|
73
78
|
return {
|
|
74
|
-
allByIsoCode
|
|
75
|
-
create
|
|
79
|
+
allByIsoCode,
|
|
80
|
+
create
|
|
76
81
|
};
|
|
77
82
|
}
|
|
78
|
-
|
|
79
83
|
module.exports = exchangeRatesFactory;
|