btrz-api-client 8.75.1 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +112 -85
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +218 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/operations/transactions.js +1 -1
- package/tools/build-standalone.mjs +15 -0
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
authorizationHeaders = _require.authorizationHeaders;
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("./../endpoints_helpers.js");
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Query params for GET /insurances/:productId/cost (btrz-api-inventory). See GetInsuranceCostsHandler getSpec().
|
|
@@ -18,12 +17,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ get: function }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function insurancesCostFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET /insurances/:productId/cost - get insurance cost for product. Client merges opts.declaredValue into query.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -34,23 +31,26 @@ function insurancesCostFactory(_ref) {
|
|
|
34
31
|
* @param {Object} [opts.headers] - Optional headers
|
|
35
32
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
36
33
|
*/
|
|
37
|
-
function get(
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
34
|
+
function get({
|
|
35
|
+
token,
|
|
36
|
+
productId,
|
|
37
|
+
declaredValue,
|
|
38
|
+
query = {},
|
|
39
|
+
headers
|
|
40
|
+
}) {
|
|
41
|
+
return client.get(`/insurances/${productId}/cost`, {
|
|
42
|
+
params: Object.assign(query, {
|
|
43
|
+
declaredValue
|
|
44
|
+
}),
|
|
45
|
+
headers: authorizationHeaders({
|
|
46
|
+
token,
|
|
47
|
+
internalAuthTokenProvider,
|
|
48
|
+
headers
|
|
49
|
+
})
|
|
48
50
|
});
|
|
49
51
|
}
|
|
50
|
-
|
|
51
52
|
return {
|
|
52
|
-
get
|
|
53
|
+
get
|
|
53
54
|
};
|
|
54
55
|
}
|
|
55
|
-
|
|
56
56
|
module.exports = insurancesCostFactory;
|
|
@@ -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 /items (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -29,12 +28,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
29
28
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
30
29
|
* @returns {{ all: function, get: function, create: function, update: function, tickets: object }}
|
|
31
30
|
*/
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
37
|
-
|
|
31
|
+
function itemsFactory({
|
|
32
|
+
client,
|
|
33
|
+
internalAuthTokenProvider
|
|
34
|
+
}) {
|
|
38
35
|
/**
|
|
39
36
|
* GET /items - list items (paginated).
|
|
40
37
|
* @param {Object} opts
|
|
@@ -45,17 +42,21 @@ function itemsFactory(_ref) {
|
|
|
45
42
|
* @returns {Promise<import("axios").AxiosResponse<{ items: Object[], next?: string, previous?: string, count: number }>>}
|
|
46
43
|
* @throws 401; 500.
|
|
47
44
|
*/
|
|
48
|
-
function all(
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
45
|
+
function all({
|
|
46
|
+
token,
|
|
47
|
+
query = {},
|
|
48
|
+
jwtToken,
|
|
49
|
+
headers
|
|
50
|
+
}) {
|
|
55
51
|
return client({
|
|
56
52
|
url: "/items",
|
|
57
53
|
params: query,
|
|
58
|
-
headers: authorizationHeaders({
|
|
54
|
+
headers: authorizationHeaders({
|
|
55
|
+
token,
|
|
56
|
+
jwtToken,
|
|
57
|
+
internalAuthTokenProvider,
|
|
58
|
+
headers
|
|
59
|
+
})
|
|
59
60
|
});
|
|
60
61
|
}
|
|
61
62
|
|
|
@@ -70,17 +71,21 @@ function itemsFactory(_ref) {
|
|
|
70
71
|
* @returns {Promise<import("axios").AxiosResponse<{ item: Object }>>}
|
|
71
72
|
* @throws 400 INVALID_ITEM_ID; 401; 404 ITEM_NOT_FOUND; 500.
|
|
72
73
|
*/
|
|
73
|
-
function get(
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
return client.get("/items/" + itemId, {
|
|
74
|
+
function get({
|
|
75
|
+
itemId,
|
|
76
|
+
token,
|
|
77
|
+
jwtToken,
|
|
78
|
+
query = {},
|
|
79
|
+
headers
|
|
80
|
+
}) {
|
|
81
|
+
return client.get(`/items/${itemId}`, {
|
|
82
82
|
params: query,
|
|
83
|
-
headers: authorizationHeaders({
|
|
83
|
+
headers: authorizationHeaders({
|
|
84
|
+
token,
|
|
85
|
+
jwtToken,
|
|
86
|
+
internalAuthTokenProvider,
|
|
87
|
+
headers
|
|
88
|
+
})
|
|
84
89
|
});
|
|
85
90
|
}
|
|
86
91
|
|
|
@@ -94,17 +99,24 @@ function itemsFactory(_ref) {
|
|
|
94
99
|
* @returns {Promise<import("axios").AxiosResponse<{ item: Object }>>}
|
|
95
100
|
* @throws 400 WRONG_DATA, PRODUCT_ID_INVALID, etc.; 401; 404 PRODUCT_NOT_FOUND, etc.; 500.
|
|
96
101
|
*/
|
|
97
|
-
function create(
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
102
|
+
function create({
|
|
103
|
+
jwtToken,
|
|
104
|
+
item,
|
|
105
|
+
token,
|
|
106
|
+
headers
|
|
107
|
+
}) {
|
|
103
108
|
return client({
|
|
104
109
|
url: "/items",
|
|
105
110
|
method: "post",
|
|
106
|
-
headers: authorizationHeaders({
|
|
107
|
-
|
|
111
|
+
headers: authorizationHeaders({
|
|
112
|
+
token,
|
|
113
|
+
jwtToken,
|
|
114
|
+
internalAuthTokenProvider,
|
|
115
|
+
headers
|
|
116
|
+
}),
|
|
117
|
+
data: {
|
|
118
|
+
item
|
|
119
|
+
}
|
|
108
120
|
});
|
|
109
121
|
}
|
|
110
122
|
|
|
@@ -119,23 +131,30 @@ function itemsFactory(_ref) {
|
|
|
119
131
|
* @returns {Promise<import("axios").AxiosResponse<{ item: Object }>>}
|
|
120
132
|
* @throws 400 WRONG_DATA, INVALID ids; 401; 404 ITEM_NOT_FOUND, PRODUCT_NOT_FOUND, etc.; 500.
|
|
121
133
|
*/
|
|
122
|
-
function update(
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
134
|
+
function update({
|
|
135
|
+
jwtToken,
|
|
136
|
+
token,
|
|
137
|
+
itemId,
|
|
138
|
+
item,
|
|
139
|
+
headers
|
|
140
|
+
}) {
|
|
129
141
|
return client({
|
|
130
|
-
url:
|
|
142
|
+
url: `/items/${itemId}`,
|
|
131
143
|
method: "put",
|
|
132
|
-
headers: authorizationHeaders({
|
|
133
|
-
|
|
144
|
+
headers: authorizationHeaders({
|
|
145
|
+
token,
|
|
146
|
+
jwtToken,
|
|
147
|
+
internalAuthTokenProvider,
|
|
148
|
+
headers
|
|
149
|
+
}),
|
|
150
|
+
data: {
|
|
151
|
+
item
|
|
152
|
+
}
|
|
134
153
|
});
|
|
135
154
|
}
|
|
136
155
|
|
|
137
156
|
/** @type {{ update: function }} */
|
|
138
|
-
|
|
157
|
+
const tickets = {
|
|
139
158
|
/**
|
|
140
159
|
* PUT /items/:soldItemId/tickets/:ticketId - update ticket.
|
|
141
160
|
* @param {Object} opts
|
|
@@ -146,30 +165,33 @@ function itemsFactory(_ref) {
|
|
|
146
165
|
* @param {Object} [opts.headers] - Optional headers
|
|
147
166
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
148
167
|
*/
|
|
149
|
-
update
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
168
|
+
update({
|
|
169
|
+
jwtToken,
|
|
170
|
+
token,
|
|
171
|
+
soldItemId,
|
|
172
|
+
ticketId,
|
|
173
|
+
headers,
|
|
174
|
+
query
|
|
175
|
+
}) {
|
|
157
176
|
return client({
|
|
158
|
-
url:
|
|
177
|
+
url: `/items/${soldItemId}/tickets/${ticketId}`,
|
|
159
178
|
method: "put",
|
|
160
|
-
headers: authorizationHeaders({
|
|
179
|
+
headers: authorizationHeaders({
|
|
180
|
+
token,
|
|
181
|
+
jwtToken,
|
|
182
|
+
internalAuthTokenProvider,
|
|
183
|
+
headers
|
|
184
|
+
}),
|
|
161
185
|
params: query
|
|
162
186
|
});
|
|
163
187
|
}
|
|
164
188
|
};
|
|
165
|
-
|
|
166
189
|
return {
|
|
167
|
-
all
|
|
168
|
-
get
|
|
169
|
-
create
|
|
170
|
-
update
|
|
171
|
-
tickets
|
|
190
|
+
all,
|
|
191
|
+
get,
|
|
192
|
+
create,
|
|
193
|
+
update,
|
|
194
|
+
tickets
|
|
172
195
|
};
|
|
173
196
|
}
|
|
174
|
-
|
|
175
197
|
module.exports = itemsFactory;
|
|
@@ -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 /journey-prices (btrz-api-inventory). See get-journey-prices getSpec().
|
|
@@ -44,12 +43,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
44
43
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
45
44
|
* @returns {{ all: function, deleteById: function, get: function, create: function, update: function }}
|
|
46
45
|
*/
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
52
|
-
|
|
46
|
+
function journeyPricesFactory({
|
|
47
|
+
client,
|
|
48
|
+
internalAuthTokenProvider
|
|
49
|
+
}) {
|
|
53
50
|
/**
|
|
54
51
|
* GET /journey-prices - list journey prices.
|
|
55
52
|
* @param {Object} opts
|
|
@@ -59,17 +56,21 @@ function journeyPricesFactory(_ref) {
|
|
|
59
56
|
* @param {Object} [opts.headers] - Optional headers
|
|
60
57
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
61
58
|
*/
|
|
62
|
-
function all(
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
59
|
+
function all({
|
|
60
|
+
token,
|
|
61
|
+
jwtToken,
|
|
62
|
+
query = {},
|
|
63
|
+
headers
|
|
64
|
+
}) {
|
|
69
65
|
return client({
|
|
70
66
|
url: "/journey-prices",
|
|
71
67
|
params: query,
|
|
72
|
-
headers: authorizationHeaders({
|
|
68
|
+
headers: authorizationHeaders({
|
|
69
|
+
token,
|
|
70
|
+
jwtToken,
|
|
71
|
+
internalAuthTokenProvider,
|
|
72
|
+
headers
|
|
73
|
+
})
|
|
73
74
|
});
|
|
74
75
|
}
|
|
75
76
|
|
|
@@ -83,18 +84,22 @@ function journeyPricesFactory(_ref) {
|
|
|
83
84
|
* @param {Object} [opts.headers] - Optional headers
|
|
84
85
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
85
86
|
*/
|
|
86
|
-
function get(
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
87
|
+
function get({
|
|
88
|
+
id,
|
|
89
|
+
token,
|
|
90
|
+
jwtToken,
|
|
91
|
+
query = {},
|
|
92
|
+
headers
|
|
93
|
+
}) {
|
|
94
94
|
return client({
|
|
95
|
-
url:
|
|
95
|
+
url: `/journey-prices/${id}`,
|
|
96
96
|
params: query,
|
|
97
|
-
headers: authorizationHeaders({
|
|
97
|
+
headers: authorizationHeaders({
|
|
98
|
+
token,
|
|
99
|
+
jwtToken,
|
|
100
|
+
internalAuthTokenProvider,
|
|
101
|
+
headers
|
|
102
|
+
})
|
|
98
103
|
});
|
|
99
104
|
}
|
|
100
105
|
|
|
@@ -107,16 +112,21 @@ function journeyPricesFactory(_ref) {
|
|
|
107
112
|
* @param {Object} [opts.headers] - Optional headers
|
|
108
113
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
109
114
|
*/
|
|
110
|
-
function deleteById(
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
115
|
+
function deleteById({
|
|
116
|
+
token,
|
|
117
|
+
jwtToken,
|
|
118
|
+
id,
|
|
119
|
+
headers
|
|
120
|
+
}) {
|
|
116
121
|
return client({
|
|
117
|
-
url:
|
|
122
|
+
url: `/journey-prices/${id}`,
|
|
118
123
|
method: "delete",
|
|
119
|
-
headers: authorizationHeaders({
|
|
124
|
+
headers: authorizationHeaders({
|
|
125
|
+
token,
|
|
126
|
+
jwtToken,
|
|
127
|
+
internalAuthTokenProvider,
|
|
128
|
+
headers
|
|
129
|
+
})
|
|
120
130
|
});
|
|
121
131
|
}
|
|
122
132
|
|
|
@@ -129,17 +139,24 @@ function journeyPricesFactory(_ref) {
|
|
|
129
139
|
* @param {Object} [opts.headers] - Optional headers
|
|
130
140
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
131
141
|
*/
|
|
132
|
-
function create(
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
142
|
+
function create({
|
|
143
|
+
token,
|
|
144
|
+
jwtToken,
|
|
145
|
+
journeyPrice,
|
|
146
|
+
headers
|
|
147
|
+
}) {
|
|
138
148
|
return client({
|
|
139
149
|
url: "/journey-prices",
|
|
140
150
|
method: "post",
|
|
141
|
-
headers: authorizationHeaders({
|
|
142
|
-
|
|
151
|
+
headers: authorizationHeaders({
|
|
152
|
+
token,
|
|
153
|
+
jwtToken,
|
|
154
|
+
internalAuthTokenProvider,
|
|
155
|
+
headers
|
|
156
|
+
}),
|
|
157
|
+
data: {
|
|
158
|
+
journeyPrice
|
|
159
|
+
}
|
|
143
160
|
});
|
|
144
161
|
}
|
|
145
162
|
|
|
@@ -153,28 +170,33 @@ function journeyPricesFactory(_ref) {
|
|
|
153
170
|
* @param {Object} [opts.headers] - Optional headers
|
|
154
171
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
155
172
|
*/
|
|
156
|
-
function update(
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
173
|
+
function update({
|
|
174
|
+
token,
|
|
175
|
+
jwtToken,
|
|
176
|
+
journeyPriceId,
|
|
177
|
+
journeyPrice,
|
|
178
|
+
headers
|
|
179
|
+
}) {
|
|
163
180
|
return client({
|
|
164
|
-
url:
|
|
181
|
+
url: `/journey-prices/${journeyPriceId}`,
|
|
165
182
|
method: "patch",
|
|
166
|
-
headers: authorizationHeaders({
|
|
167
|
-
|
|
183
|
+
headers: authorizationHeaders({
|
|
184
|
+
token,
|
|
185
|
+
jwtToken,
|
|
186
|
+
internalAuthTokenProvider,
|
|
187
|
+
headers
|
|
188
|
+
}),
|
|
189
|
+
data: {
|
|
190
|
+
update: journeyPrice
|
|
191
|
+
}
|
|
168
192
|
});
|
|
169
193
|
}
|
|
170
|
-
|
|
171
194
|
return {
|
|
172
|
-
all
|
|
173
|
-
deleteById
|
|
174
|
-
get
|
|
175
|
-
create
|
|
176
|
-
update
|
|
195
|
+
all,
|
|
196
|
+
deleteById,
|
|
197
|
+
get,
|
|
198
|
+
create,
|
|
199
|
+
update
|
|
177
200
|
};
|
|
178
201
|
}
|
|
179
|
-
|
|
180
202
|
module.exports = journeyPricesFactory;
|
|
@@ -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 /labels (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -17,12 +16,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
17
16
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
18
17
|
* @returns {{ all: function, get: function, create: function, update: function, remove: function }}
|
|
19
18
|
*/
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
25
|
-
|
|
19
|
+
function labelsFactory({
|
|
20
|
+
client,
|
|
21
|
+
internalAuthTokenProvider
|
|
22
|
+
}) {
|
|
26
23
|
/**
|
|
27
24
|
* GET /labels - list labels (paginated).
|
|
28
25
|
* @param {Object} opts
|
|
@@ -33,16 +30,20 @@ function labelsFactory(_ref) {
|
|
|
33
30
|
* @returns {Promise<import("axios").AxiosResponse<{ labels: Object[], count: number, next?: string, previous?: string }>>}
|
|
34
31
|
* @throws 401; 500.
|
|
35
32
|
*/
|
|
36
|
-
function all(
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
33
|
+
function all({
|
|
34
|
+
token,
|
|
35
|
+
jwtToken,
|
|
36
|
+
query = {},
|
|
37
|
+
headers
|
|
38
|
+
}) {
|
|
43
39
|
return client.get("/labels", {
|
|
44
40
|
params: query,
|
|
45
|
-
headers: authorizationHeaders({
|
|
41
|
+
headers: authorizationHeaders({
|
|
42
|
+
token,
|
|
43
|
+
jwtToken,
|
|
44
|
+
internalAuthTokenProvider,
|
|
45
|
+
headers
|
|
46
|
+
})
|
|
46
47
|
});
|
|
47
48
|
}
|
|
48
49
|
|
|
@@ -56,17 +57,21 @@ function labelsFactory(_ref) {
|
|
|
56
57
|
* @returns {Promise<import("axios").AxiosResponse<{ label: Object }>>}
|
|
57
58
|
* @throws 400 WRONG_DATA, INVALID_LABEL_ID; 401; 404 LABEL_NOT_FOUND; 500.
|
|
58
59
|
*/
|
|
59
|
-
function get(
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
return client.get("/labels/" + labelId, {
|
|
60
|
+
function get({
|
|
61
|
+
labelId,
|
|
62
|
+
token,
|
|
63
|
+
jwtToken,
|
|
64
|
+
query = {},
|
|
65
|
+
headers
|
|
66
|
+
}) {
|
|
67
|
+
return client.get(`/labels/${labelId}`, {
|
|
68
68
|
params: query,
|
|
69
|
-
headers: authorizationHeaders({
|
|
69
|
+
headers: authorizationHeaders({
|
|
70
|
+
token,
|
|
71
|
+
jwtToken,
|
|
72
|
+
internalAuthTokenProvider,
|
|
73
|
+
headers
|
|
74
|
+
})
|
|
70
75
|
});
|
|
71
76
|
}
|
|
72
77
|
|
|
@@ -80,17 +85,24 @@ function labelsFactory(_ref) {
|
|
|
80
85
|
* @returns {Promise<import("axios").AxiosResponse<{ label: Object }>>}
|
|
81
86
|
* @throws 400 WRONG_DATA (name/description/color required), INVALID_TYPE; 401; 500.
|
|
82
87
|
*/
|
|
83
|
-
function create(
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
88
|
+
function create({
|
|
89
|
+
jwtToken,
|
|
90
|
+
label,
|
|
91
|
+
token,
|
|
92
|
+
headers
|
|
93
|
+
}) {
|
|
89
94
|
return client({
|
|
90
95
|
url: "/labels",
|
|
91
96
|
method: "post",
|
|
92
|
-
headers: authorizationHeaders({
|
|
93
|
-
|
|
97
|
+
headers: authorizationHeaders({
|
|
98
|
+
token,
|
|
99
|
+
jwtToken,
|
|
100
|
+
internalAuthTokenProvider,
|
|
101
|
+
headers
|
|
102
|
+
}),
|
|
103
|
+
data: {
|
|
104
|
+
label
|
|
105
|
+
}
|
|
94
106
|
});
|
|
95
107
|
}
|
|
96
108
|
|
|
@@ -105,18 +117,25 @@ function labelsFactory(_ref) {
|
|
|
105
117
|
* @returns {Promise<import("axios").AxiosResponse<{ label: Object }>>}
|
|
106
118
|
* @throws 400 WRONG_DATA, INVALID_TYPE, LABEL_ALREADY_USED; 401; 404 LABEL_NOT_FOUND; 500.
|
|
107
119
|
*/
|
|
108
|
-
function update(
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
120
|
+
function update({
|
|
121
|
+
jwtToken,
|
|
122
|
+
token,
|
|
123
|
+
labelId,
|
|
124
|
+
label,
|
|
125
|
+
headers
|
|
126
|
+
}) {
|
|
115
127
|
return client({
|
|
116
|
-
url:
|
|
128
|
+
url: `/labels/${labelId}`,
|
|
117
129
|
method: "put",
|
|
118
|
-
headers: authorizationHeaders({
|
|
119
|
-
|
|
130
|
+
headers: authorizationHeaders({
|
|
131
|
+
token,
|
|
132
|
+
jwtToken,
|
|
133
|
+
internalAuthTokenProvider,
|
|
134
|
+
headers
|
|
135
|
+
}),
|
|
136
|
+
data: {
|
|
137
|
+
label
|
|
138
|
+
}
|
|
120
139
|
});
|
|
121
140
|
}
|
|
122
141
|
|
|
@@ -130,26 +149,29 @@ function labelsFactory(_ref) {
|
|
|
130
149
|
* @returns {Promise<import("axios").AxiosResponse<{ labelId: string }>>}
|
|
131
150
|
* @throws 400 LABEL_ID (invalid format), LABEL_ALREADY_USED; 401; 404 LABEL_NOT_FOUND; 500.
|
|
132
151
|
*/
|
|
133
|
-
function remove(
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
152
|
+
function remove({
|
|
153
|
+
jwtToken,
|
|
154
|
+
token,
|
|
155
|
+
labelId,
|
|
156
|
+
headers
|
|
157
|
+
}) {
|
|
139
158
|
return client({
|
|
140
|
-
url:
|
|
159
|
+
url: `/labels/${labelId}`,
|
|
141
160
|
method: "delete",
|
|
142
|
-
headers: authorizationHeaders({
|
|
161
|
+
headers: authorizationHeaders({
|
|
162
|
+
token,
|
|
163
|
+
jwtToken,
|
|
164
|
+
internalAuthTokenProvider,
|
|
165
|
+
headers
|
|
166
|
+
})
|
|
143
167
|
});
|
|
144
168
|
}
|
|
145
|
-
|
|
146
169
|
return {
|
|
147
|
-
all
|
|
148
|
-
get
|
|
149
|
-
create
|
|
150
|
-
update
|
|
151
|
-
remove
|
|
170
|
+
all,
|
|
171
|
+
get,
|
|
172
|
+
create,
|
|
173
|
+
update,
|
|
174
|
+
remove
|
|
152
175
|
};
|
|
153
176
|
}
|
|
154
|
-
|
|
155
177
|
module.exports = labelsFactory;
|