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,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 /marital-status (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -16,12 +15,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
16
15
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
17
16
|
* @returns {{ all: function, get: function, update: function, remove: function, create: function }}
|
|
18
17
|
*/
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
24
|
-
|
|
18
|
+
function maritalStatusFactory({
|
|
19
|
+
client,
|
|
20
|
+
internalAuthTokenProvider
|
|
21
|
+
}) {
|
|
25
22
|
/**
|
|
26
23
|
* GET /marital-status - list marital statuses (paginated).
|
|
27
24
|
* @param {Object} opts
|
|
@@ -32,17 +29,21 @@ function maritalStatusFactory(_ref) {
|
|
|
32
29
|
* @returns {Promise<import("axios").AxiosResponse<{ maritalstatus: Object[], next?: string, previous?: string, count: number }>>}
|
|
33
30
|
* @throws 401; 500.
|
|
34
31
|
*/
|
|
35
|
-
function all(
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
32
|
+
function all({
|
|
33
|
+
token,
|
|
34
|
+
jwtToken,
|
|
35
|
+
query = {},
|
|
36
|
+
headers
|
|
37
|
+
}) {
|
|
42
38
|
return client({
|
|
43
39
|
url: "/marital-status",
|
|
44
40
|
method: "get",
|
|
45
|
-
headers: authorizationHeaders({
|
|
41
|
+
headers: authorizationHeaders({
|
|
42
|
+
token,
|
|
43
|
+
jwtToken,
|
|
44
|
+
internalAuthTokenProvider,
|
|
45
|
+
headers
|
|
46
|
+
}),
|
|
46
47
|
params: query
|
|
47
48
|
});
|
|
48
49
|
}
|
|
@@ -57,18 +58,22 @@ function maritalStatusFactory(_ref) {
|
|
|
57
58
|
* @returns {Promise<import("axios").AxiosResponse<{ maritalstatus: Object }>>}
|
|
58
59
|
* @throws 400 WRONG_DATA, INVALID_MARITALSTATUS_ID; 401; 404 MARITALSTATUS_NOT_FOUND; 500.
|
|
59
60
|
*/
|
|
60
|
-
function get(
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
61
|
+
function get({
|
|
62
|
+
token,
|
|
63
|
+
jwtToken,
|
|
64
|
+
id,
|
|
65
|
+
query = {},
|
|
66
|
+
headers
|
|
67
|
+
}) {
|
|
68
68
|
return client({
|
|
69
|
-
url:
|
|
69
|
+
url: `/marital-status/${id}`,
|
|
70
70
|
method: "get",
|
|
71
|
-
headers: authorizationHeaders({
|
|
71
|
+
headers: authorizationHeaders({
|
|
72
|
+
token,
|
|
73
|
+
jwtToken,
|
|
74
|
+
internalAuthTokenProvider,
|
|
75
|
+
headers
|
|
76
|
+
}),
|
|
72
77
|
params: query
|
|
73
78
|
});
|
|
74
79
|
}
|
|
@@ -84,21 +89,25 @@ function maritalStatusFactory(_ref) {
|
|
|
84
89
|
* @returns {Promise<import("axios").AxiosResponse<{ maritalstatus: Object }>>}
|
|
85
90
|
* @throws 400 WRONG_DATA; 401; 404 MARITALSTATUS_NOT_FOUND; 409 CANNOT_UPDATE_LEXICON_ENTRIES; 500.
|
|
86
91
|
*/
|
|
87
|
-
function update(
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
92
|
+
function update({
|
|
93
|
+
token,
|
|
94
|
+
jwtToken,
|
|
95
|
+
id,
|
|
96
|
+
data,
|
|
97
|
+
query = {},
|
|
98
|
+
headers
|
|
99
|
+
}) {
|
|
96
100
|
return client({
|
|
97
|
-
url:
|
|
101
|
+
url: `/marital-status/${id}`,
|
|
98
102
|
method: "put",
|
|
99
|
-
headers: authorizationHeaders({
|
|
103
|
+
headers: authorizationHeaders({
|
|
104
|
+
token,
|
|
105
|
+
jwtToken,
|
|
106
|
+
internalAuthTokenProvider,
|
|
107
|
+
headers
|
|
108
|
+
}),
|
|
100
109
|
params: query,
|
|
101
|
-
data
|
|
110
|
+
data
|
|
102
111
|
});
|
|
103
112
|
}
|
|
104
113
|
|
|
@@ -112,18 +121,22 @@ function maritalStatusFactory(_ref) {
|
|
|
112
121
|
* @returns {Promise<import("axios").AxiosResponse<{ maritalstatusId: string }>>}
|
|
113
122
|
* @throws 400 WRONG_DATA, INVALID_MARITALSTATUS_ID; 401; 404 MARITALSTATUS_NOT_FOUND; 500.
|
|
114
123
|
*/
|
|
115
|
-
function remove(
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
124
|
+
function remove({
|
|
125
|
+
token,
|
|
126
|
+
jwtToken,
|
|
127
|
+
id,
|
|
128
|
+
query = {},
|
|
129
|
+
headers
|
|
130
|
+
}) {
|
|
123
131
|
return client({
|
|
124
|
-
url:
|
|
132
|
+
url: `/marital-status/${id}`,
|
|
125
133
|
method: "delete",
|
|
126
|
-
headers: authorizationHeaders({
|
|
134
|
+
headers: authorizationHeaders({
|
|
135
|
+
token,
|
|
136
|
+
jwtToken,
|
|
137
|
+
internalAuthTokenProvider,
|
|
138
|
+
headers
|
|
139
|
+
}),
|
|
127
140
|
params: query
|
|
128
141
|
});
|
|
129
142
|
}
|
|
@@ -138,30 +151,32 @@ function maritalStatusFactory(_ref) {
|
|
|
138
151
|
* @returns {Promise<import("axios").AxiosResponse<{ maritalstatus: Object }>>}
|
|
139
152
|
* @throws 400 WRONG_DATA (maritalstatus/name/ord/lexiconKeys required); 401; 409 CANNOT_CREATE_LEXICON_ENTRIES; 500.
|
|
140
153
|
*/
|
|
141
|
-
function create(
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
154
|
+
function create({
|
|
155
|
+
token,
|
|
156
|
+
jwtToken,
|
|
157
|
+
data,
|
|
158
|
+
query = {},
|
|
159
|
+
headers
|
|
160
|
+
}) {
|
|
149
161
|
return client({
|
|
150
162
|
url: "/marital-status",
|
|
151
163
|
method: "post",
|
|
152
|
-
headers: authorizationHeaders({
|
|
164
|
+
headers: authorizationHeaders({
|
|
165
|
+
token,
|
|
166
|
+
jwtToken,
|
|
167
|
+
internalAuthTokenProvider,
|
|
168
|
+
headers
|
|
169
|
+
}),
|
|
153
170
|
params: query,
|
|
154
|
-
data
|
|
171
|
+
data
|
|
155
172
|
});
|
|
156
173
|
}
|
|
157
|
-
|
|
158
174
|
return {
|
|
159
|
-
all
|
|
160
|
-
get
|
|
161
|
-
update
|
|
162
|
-
remove
|
|
163
|
-
create
|
|
175
|
+
all,
|
|
176
|
+
get,
|
|
177
|
+
update,
|
|
178
|
+
remove,
|
|
179
|
+
create
|
|
164
180
|
};
|
|
165
181
|
}
|
|
166
|
-
|
|
167
182
|
module.exports = maritalStatusFactory;
|
|
@@ -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 /marketplace-modifiers (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -26,12 +25,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
26
25
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
27
26
|
* @returns {{ all: function, get: function, create: function, update: function, remove: function }}
|
|
28
27
|
*/
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
34
|
-
|
|
28
|
+
function marketplaceModifierFactory({
|
|
29
|
+
client,
|
|
30
|
+
internalAuthTokenProvider
|
|
31
|
+
}) {
|
|
35
32
|
/**
|
|
36
33
|
* GET /marketplace-modifiers - list marketplace modifiers (paginated).
|
|
37
34
|
* @param {Object} opts
|
|
@@ -41,15 +38,18 @@ function marketplaceModifierFactory(_ref) {
|
|
|
41
38
|
* @returns {Promise<import("axios").AxiosResponse<{ marketplaceModifiers: Object[], next?: string, previous?: string, count: number }>>}
|
|
42
39
|
* @throws 401; 500 MISSING_ACCOUNT.
|
|
43
40
|
*/
|
|
44
|
-
function all(
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
41
|
+
function all({
|
|
42
|
+
token,
|
|
43
|
+
query = {},
|
|
44
|
+
headers
|
|
45
|
+
}) {
|
|
50
46
|
return client.get("/marketplace-modifiers", {
|
|
51
47
|
params: query,
|
|
52
|
-
headers: authorizationHeaders({
|
|
48
|
+
headers: authorizationHeaders({
|
|
49
|
+
token,
|
|
50
|
+
internalAuthTokenProvider,
|
|
51
|
+
headers
|
|
52
|
+
})
|
|
53
53
|
});
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -62,13 +62,17 @@ function marketplaceModifierFactory(_ref) {
|
|
|
62
62
|
* @returns {Promise<import("axios").AxiosResponse<{ marketplaceModifier: Object }>>}
|
|
63
63
|
* @throws 400 WRONG_DATA, INVALID_MARKETPLACEMODIFIER_ID; 401; 404 MARKETPLACE_MODIFIER_NOT_FOUND; 500.
|
|
64
64
|
*/
|
|
65
|
-
function get(
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
return client.get(
|
|
71
|
-
headers: authorizationHeaders({
|
|
65
|
+
function get({
|
|
66
|
+
marketplaceModifierId,
|
|
67
|
+
token,
|
|
68
|
+
headers
|
|
69
|
+
}) {
|
|
70
|
+
return client.get(`/marketplace-modifiers/${marketplaceModifierId}`, {
|
|
71
|
+
headers: authorizationHeaders({
|
|
72
|
+
token,
|
|
73
|
+
internalAuthTokenProvider,
|
|
74
|
+
headers
|
|
75
|
+
})
|
|
72
76
|
});
|
|
73
77
|
}
|
|
74
78
|
|
|
@@ -82,18 +86,23 @@ function marketplaceModifierFactory(_ref) {
|
|
|
82
86
|
* @returns {Promise<import("axios").AxiosResponse<{ marketplaceModifier: Object }>>}
|
|
83
87
|
* @throws 400 WRONG_DATA, *_NOT_FOUND, INVALID_*, MODIFIER_*, OANDDS_STATION_NOT_FOUND; 401; 404; 500.
|
|
84
88
|
*/
|
|
85
|
-
function create(
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
89
|
+
function create({
|
|
90
|
+
jwtToken,
|
|
91
|
+
token,
|
|
92
|
+
marketplaceModifier,
|
|
93
|
+
headers
|
|
94
|
+
}) {
|
|
91
95
|
return client({
|
|
92
96
|
url: "/marketplace-modifiers",
|
|
93
97
|
method: "post",
|
|
94
|
-
headers: authorizationHeaders({
|
|
98
|
+
headers: authorizationHeaders({
|
|
99
|
+
token,
|
|
100
|
+
jwtToken,
|
|
101
|
+
internalAuthTokenProvider,
|
|
102
|
+
headers
|
|
103
|
+
}),
|
|
95
104
|
data: {
|
|
96
|
-
marketplaceModifier
|
|
105
|
+
marketplaceModifier
|
|
97
106
|
}
|
|
98
107
|
});
|
|
99
108
|
}
|
|
@@ -108,16 +117,21 @@ function marketplaceModifierFactory(_ref) {
|
|
|
108
117
|
* @returns {Promise<import("axios").AxiosResponse<{ marketplaceModifierId: string }>>}
|
|
109
118
|
* @throws 400 MARKETPLACE_MODIFIER_ID (invalid format); 401; 404 MARKETPLACE_MODIFIER_NOT_FOUND; 500.
|
|
110
119
|
*/
|
|
111
|
-
function remove(
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
120
|
+
function remove({
|
|
121
|
+
jwtToken,
|
|
122
|
+
marketplaceModifierId,
|
|
123
|
+
token,
|
|
124
|
+
headers
|
|
125
|
+
}) {
|
|
117
126
|
return client({
|
|
118
|
-
url:
|
|
127
|
+
url: `/marketplace-modifiers/${marketplaceModifierId}`,
|
|
119
128
|
method: "delete",
|
|
120
|
-
headers: authorizationHeaders({
|
|
129
|
+
headers: authorizationHeaders({
|
|
130
|
+
token,
|
|
131
|
+
jwtToken,
|
|
132
|
+
internalAuthTokenProvider,
|
|
133
|
+
headers
|
|
134
|
+
})
|
|
121
135
|
});
|
|
122
136
|
}
|
|
123
137
|
|
|
@@ -132,30 +146,33 @@ function marketplaceModifierFactory(_ref) {
|
|
|
132
146
|
* @returns {Promise<import("axios").AxiosResponse<{ marketplaceModifier: Object }>>}
|
|
133
147
|
* @throws 400 WRONG_DATA, INVALID_MARKETPLACEMODIFIER_ID, *_NOT_FOUND, INVALID_*, MODIFIER_*; 401; 404; 500.
|
|
134
148
|
*/
|
|
135
|
-
function update(
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
149
|
+
function update({
|
|
150
|
+
jwtToken,
|
|
151
|
+
token,
|
|
152
|
+
marketplaceModifierId,
|
|
153
|
+
marketplaceModifier,
|
|
154
|
+
headers
|
|
155
|
+
}) {
|
|
142
156
|
return client({
|
|
143
|
-
url:
|
|
157
|
+
url: `/marketplace-modifiers/${marketplaceModifierId}`,
|
|
144
158
|
method: "put",
|
|
145
|
-
headers: authorizationHeaders({
|
|
159
|
+
headers: authorizationHeaders({
|
|
160
|
+
token,
|
|
161
|
+
jwtToken,
|
|
162
|
+
internalAuthTokenProvider,
|
|
163
|
+
headers
|
|
164
|
+
}),
|
|
146
165
|
data: {
|
|
147
|
-
marketplaceModifier
|
|
166
|
+
marketplaceModifier
|
|
148
167
|
}
|
|
149
168
|
});
|
|
150
169
|
}
|
|
151
|
-
|
|
152
170
|
return {
|
|
153
|
-
all
|
|
154
|
-
get
|
|
155
|
-
create
|
|
156
|
-
update
|
|
157
|
-
remove
|
|
171
|
+
all,
|
|
172
|
+
get,
|
|
173
|
+
create,
|
|
174
|
+
update,
|
|
175
|
+
remove
|
|
158
176
|
};
|
|
159
177
|
}
|
|
160
|
-
|
|
161
178
|
module.exports = marketplaceModifierFactory;
|
|
@@ -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 mit-terminals-settings API (btrz-api-inventory).
|
|
@@ -10,12 +9,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ all: function, get: function, create: function, update: function, remove: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function mitTerminalFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET /mit-terminals-settings - list MIT terminal settings. API does not accept query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -25,16 +22,20 @@ function mitTerminalFactory(_ref) {
|
|
|
25
22
|
* @returns {Promise<import("axios").AxiosResponse<{ mitTerminalsSettings: Object[], next?: string, previous?: string, count: number }>>}
|
|
26
23
|
* @throws When the request fails (e.g. 401 Unauthorized, 500 Internal Server Error)
|
|
27
24
|
*/
|
|
28
|
-
function all(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
25
|
+
function all({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
query = {},
|
|
29
|
+
headers
|
|
30
|
+
}) {
|
|
35
31
|
return client.get("/mit-terminals-settings", {
|
|
36
32
|
params: query,
|
|
37
|
-
headers: authorizationHeaders({
|
|
33
|
+
headers: authorizationHeaders({
|
|
34
|
+
token,
|
|
35
|
+
jwtToken,
|
|
36
|
+
internalAuthTokenProvider,
|
|
37
|
+
headers
|
|
38
|
+
})
|
|
38
39
|
});
|
|
39
40
|
}
|
|
40
41
|
|
|
@@ -48,14 +49,19 @@ function mitTerminalFactory(_ref) {
|
|
|
48
49
|
* @returns {Promise<import("axios").AxiosResponse<{ mitTerminalSettings: Object }>>}
|
|
49
50
|
* @throws When the request fails (e.g. 400 INVALID_ID, 401 Unauthorized, 404 MITTERMINALSETTING_NOT_FOUND, 500 Internal Server Error)
|
|
50
51
|
*/
|
|
51
|
-
function get(
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
return client.get(
|
|
58
|
-
headers: authorizationHeaders({
|
|
52
|
+
function get({
|
|
53
|
+
id,
|
|
54
|
+
token,
|
|
55
|
+
jwtToken,
|
|
56
|
+
headers
|
|
57
|
+
}) {
|
|
58
|
+
return client.get(`/mit-terminals-settings/${id}`, {
|
|
59
|
+
headers: authorizationHeaders({
|
|
60
|
+
token,
|
|
61
|
+
jwtToken,
|
|
62
|
+
internalAuthTokenProvider,
|
|
63
|
+
headers
|
|
64
|
+
})
|
|
59
65
|
});
|
|
60
66
|
}
|
|
61
67
|
|
|
@@ -69,18 +75,23 @@ function mitTerminalFactory(_ref) {
|
|
|
69
75
|
* @returns {Promise<import("axios").AxiosResponse<{ mitTerminalSettings: Object }>>}
|
|
70
76
|
* @throws When the request fails (e.g. 400 WRONG_DATA, 401 Unauthorized, 500 Internal Server Error)
|
|
71
77
|
*/
|
|
72
|
-
function create(
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
+
function create({
|
|
79
|
+
jwtToken,
|
|
80
|
+
token,
|
|
81
|
+
mitTerminalSettings,
|
|
82
|
+
headers
|
|
83
|
+
}) {
|
|
78
84
|
return client({
|
|
79
85
|
url: "/mit-terminals-settings",
|
|
80
86
|
method: "post",
|
|
81
|
-
headers: authorizationHeaders({
|
|
87
|
+
headers: authorizationHeaders({
|
|
88
|
+
token,
|
|
89
|
+
jwtToken,
|
|
90
|
+
internalAuthTokenProvider,
|
|
91
|
+
headers
|
|
92
|
+
}),
|
|
82
93
|
data: {
|
|
83
|
-
mitTerminalSettings
|
|
94
|
+
mitTerminalSettings
|
|
84
95
|
}
|
|
85
96
|
});
|
|
86
97
|
}
|
|
@@ -95,16 +106,21 @@ function mitTerminalFactory(_ref) {
|
|
|
95
106
|
* @returns {Promise<import("axios").AxiosResponse<{ mitterminalsettingId: string }>>}
|
|
96
107
|
* @throws When the request fails (e.g. 400 INVALID_ID, 401 Unauthorized, 404 MITTERMINALSETTING_NOT_FOUND, 500 Internal Server Error)
|
|
97
108
|
*/
|
|
98
|
-
function remove(
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
109
|
+
function remove({
|
|
110
|
+
jwtToken,
|
|
111
|
+
id,
|
|
112
|
+
token,
|
|
113
|
+
headers
|
|
114
|
+
}) {
|
|
104
115
|
return client({
|
|
105
|
-
url:
|
|
116
|
+
url: `/mit-terminals-settings/${id}`,
|
|
106
117
|
method: "delete",
|
|
107
|
-
headers: authorizationHeaders({
|
|
118
|
+
headers: authorizationHeaders({
|
|
119
|
+
token,
|
|
120
|
+
jwtToken,
|
|
121
|
+
internalAuthTokenProvider,
|
|
122
|
+
headers
|
|
123
|
+
})
|
|
108
124
|
});
|
|
109
125
|
}
|
|
110
126
|
|
|
@@ -119,30 +135,33 @@ function mitTerminalFactory(_ref) {
|
|
|
119
135
|
* @returns {Promise<import("axios").AxiosResponse<{ mitTerminalSettings: Object }>>}
|
|
120
136
|
* @throws When the request fails (e.g. 400 WRONG_DATA/INVALID_ID, 401, 404 MITTERMINALSETTING_NOT_FOUND, 500)
|
|
121
137
|
*/
|
|
122
|
-
function update(
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
138
|
+
function update({
|
|
139
|
+
jwtToken,
|
|
140
|
+
token,
|
|
141
|
+
id,
|
|
142
|
+
mitTerminalSettings,
|
|
143
|
+
headers
|
|
144
|
+
}) {
|
|
129
145
|
return client({
|
|
130
|
-
url:
|
|
146
|
+
url: `/mit-terminals-settings/${id}`,
|
|
131
147
|
method: "put",
|
|
132
|
-
headers: authorizationHeaders({
|
|
148
|
+
headers: authorizationHeaders({
|
|
149
|
+
token,
|
|
150
|
+
jwtToken,
|
|
151
|
+
internalAuthTokenProvider,
|
|
152
|
+
headers
|
|
153
|
+
}),
|
|
133
154
|
data: {
|
|
134
|
-
mitTerminalSettings
|
|
155
|
+
mitTerminalSettings
|
|
135
156
|
}
|
|
136
157
|
});
|
|
137
158
|
}
|
|
138
|
-
|
|
139
159
|
return {
|
|
140
|
-
all
|
|
141
|
-
get
|
|
142
|
-
create
|
|
143
|
-
update
|
|
144
|
-
remove
|
|
160
|
+
all,
|
|
161
|
+
get,
|
|
162
|
+
create,
|
|
163
|
+
update,
|
|
164
|
+
remove
|
|
145
165
|
};
|
|
146
166
|
}
|
|
147
|
-
|
|
148
167
|
module.exports = mitTerminalFactory;
|