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