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