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 /change-requests (btrz-api-inventory). See get-change-requests 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, schedules: object }}
|
|
28
27
|
*/
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
34
|
-
|
|
28
|
+
function changeRequestsFactory({
|
|
29
|
+
client,
|
|
30
|
+
internalAuthTokenProvider
|
|
31
|
+
}) {
|
|
35
32
|
/**
|
|
36
33
|
* GET /change-requests — List change requests with optional filters and pagination.
|
|
37
34
|
* @param {Object} opts
|
|
@@ -44,16 +41,20 @@ function changeRequestsFactory(_ref) {
|
|
|
44
41
|
* @throws 401 Unauthorized
|
|
45
42
|
* @throws 500 Internal server error
|
|
46
43
|
*/
|
|
47
|
-
function all(
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
44
|
+
function all({
|
|
45
|
+
token,
|
|
46
|
+
jwtToken,
|
|
47
|
+
query = {},
|
|
48
|
+
headers
|
|
49
|
+
}) {
|
|
54
50
|
return client.get("/change-requests", {
|
|
55
51
|
params: query,
|
|
56
|
-
headers: authorizationHeaders({
|
|
52
|
+
headers: authorizationHeaders({
|
|
53
|
+
token,
|
|
54
|
+
jwtToken,
|
|
55
|
+
internalAuthTokenProvider,
|
|
56
|
+
headers
|
|
57
|
+
})
|
|
57
58
|
});
|
|
58
59
|
}
|
|
59
60
|
|
|
@@ -71,18 +72,22 @@ function changeRequestsFactory(_ref) {
|
|
|
71
72
|
* @throws 404 CHANGEREQUEST_NOT_FOUND
|
|
72
73
|
* @throws 500 Internal server error
|
|
73
74
|
*/
|
|
74
|
-
function get(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
75
|
+
function get({
|
|
76
|
+
changerequestId,
|
|
77
|
+
token,
|
|
78
|
+
jwtToken,
|
|
79
|
+
query = {},
|
|
80
|
+
headers
|
|
81
|
+
}) {
|
|
82
82
|
return client({
|
|
83
|
-
url:
|
|
83
|
+
url: `/change-requests/${changerequestId}/manifests`,
|
|
84
84
|
params: query,
|
|
85
|
-
headers: authorizationHeaders({
|
|
85
|
+
headers: authorizationHeaders({
|
|
86
|
+
token,
|
|
87
|
+
internalAuthTokenProvider,
|
|
88
|
+
jwtToken,
|
|
89
|
+
headers
|
|
90
|
+
})
|
|
86
91
|
});
|
|
87
92
|
}
|
|
88
93
|
|
|
@@ -99,17 +104,22 @@ function changeRequestsFactory(_ref) {
|
|
|
99
104
|
* @throws 403 MULTIPLE_MANIFEST_EDIT_NOT_ALLOWED
|
|
100
105
|
* @throws 500 Internal server error
|
|
101
106
|
*/
|
|
102
|
-
function create(
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
107
|
+
function create({
|
|
108
|
+
data,
|
|
109
|
+
token,
|
|
110
|
+
jwtToken,
|
|
111
|
+
headers
|
|
112
|
+
}) {
|
|
108
113
|
return client({
|
|
109
114
|
url: "/change-requests/manifests",
|
|
110
115
|
method: "post",
|
|
111
|
-
headers: authorizationHeaders({
|
|
112
|
-
|
|
116
|
+
headers: authorizationHeaders({
|
|
117
|
+
token,
|
|
118
|
+
jwtToken,
|
|
119
|
+
internalAuthTokenProvider,
|
|
120
|
+
headers
|
|
121
|
+
}),
|
|
122
|
+
data
|
|
113
123
|
});
|
|
114
124
|
}
|
|
115
125
|
|
|
@@ -128,23 +138,28 @@ function changeRequestsFactory(_ref) {
|
|
|
128
138
|
* @throws 404 CHANGEREQUEST_NOT_FOUND
|
|
129
139
|
* @throws 500 Internal server error
|
|
130
140
|
*/
|
|
131
|
-
function update(
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
141
|
+
function update({
|
|
142
|
+
changerequestId,
|
|
143
|
+
data,
|
|
144
|
+
token,
|
|
145
|
+
jwtToken,
|
|
146
|
+
headers
|
|
147
|
+
}) {
|
|
138
148
|
return client({
|
|
139
|
-
url:
|
|
149
|
+
url: `/change-requests/${changerequestId}/manifests`,
|
|
140
150
|
method: "put",
|
|
141
|
-
headers: authorizationHeaders({
|
|
142
|
-
|
|
151
|
+
headers: authorizationHeaders({
|
|
152
|
+
token,
|
|
153
|
+
jwtToken,
|
|
154
|
+
internalAuthTokenProvider,
|
|
155
|
+
headers
|
|
156
|
+
}),
|
|
157
|
+
data
|
|
143
158
|
});
|
|
144
159
|
}
|
|
145
160
|
|
|
146
161
|
/** @type {{ get: function, create: function, update: function }} */
|
|
147
|
-
|
|
162
|
+
const schedules = {
|
|
148
163
|
/**
|
|
149
164
|
* GET /change-requests/:changeRequestId/schedules — Get schedule change request by ID.
|
|
150
165
|
* @param {Object} opts
|
|
@@ -158,22 +173,24 @@ function changeRequestsFactory(_ref) {
|
|
|
158
173
|
* @throws 404 CHANGEREQUEST_NOT_FOUND
|
|
159
174
|
* @throws 500 Internal server error
|
|
160
175
|
*/
|
|
161
|
-
get
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
176
|
+
get({
|
|
177
|
+
changeRequestId,
|
|
178
|
+
token,
|
|
179
|
+
jwtToken,
|
|
180
|
+
query = {},
|
|
181
|
+
headers
|
|
182
|
+
}) {
|
|
169
183
|
return client({
|
|
170
|
-
url:
|
|
184
|
+
url: `/change-requests/${changeRequestId}/schedules`,
|
|
171
185
|
params: query,
|
|
172
|
-
headers: authorizationHeaders({
|
|
186
|
+
headers: authorizationHeaders({
|
|
187
|
+
token,
|
|
188
|
+
internalAuthTokenProvider,
|
|
189
|
+
jwtToken,
|
|
190
|
+
headers
|
|
191
|
+
})
|
|
173
192
|
});
|
|
174
193
|
},
|
|
175
|
-
|
|
176
|
-
|
|
177
194
|
/**
|
|
178
195
|
* POST /change-requests/schedules — Create a schedule change request. Emits webhook changeRequests.schedules.created.
|
|
179
196
|
* @param {Object} opts
|
|
@@ -186,21 +203,24 @@ function changeRequestsFactory(_ref) {
|
|
|
186
203
|
* @throws 401 Unauthorized
|
|
187
204
|
* @throws 500 Internal server error
|
|
188
205
|
*/
|
|
189
|
-
create
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
206
|
+
create({
|
|
207
|
+
data,
|
|
208
|
+
token,
|
|
209
|
+
jwtToken,
|
|
210
|
+
headers
|
|
211
|
+
}) {
|
|
195
212
|
return client({
|
|
196
213
|
url: "/change-requests/schedules",
|
|
197
214
|
method: "post",
|
|
198
|
-
headers: authorizationHeaders({
|
|
199
|
-
|
|
215
|
+
headers: authorizationHeaders({
|
|
216
|
+
token,
|
|
217
|
+
jwtToken,
|
|
218
|
+
internalAuthTokenProvider,
|
|
219
|
+
headers
|
|
220
|
+
}),
|
|
221
|
+
data
|
|
200
222
|
});
|
|
201
223
|
},
|
|
202
|
-
|
|
203
|
-
|
|
204
224
|
/**
|
|
205
225
|
* PUT .../schedules — Update schedule change request (approve/reject). Emits changeRequests.schedules.updated.
|
|
206
226
|
* @param {Object} opts
|
|
@@ -215,29 +235,32 @@ function changeRequestsFactory(_ref) {
|
|
|
215
235
|
* @throws 404 CHANGEREQUEST_NOT_FOUND
|
|
216
236
|
* @throws 500 Internal server error
|
|
217
237
|
*/
|
|
218
|
-
update
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
238
|
+
update({
|
|
239
|
+
changeRequestId,
|
|
240
|
+
data,
|
|
241
|
+
token,
|
|
242
|
+
jwtToken,
|
|
243
|
+
headers
|
|
244
|
+
}) {
|
|
225
245
|
return client({
|
|
226
|
-
url:
|
|
246
|
+
url: `/change-requests/${changeRequestId}/schedules`,
|
|
227
247
|
method: "put",
|
|
228
|
-
headers: authorizationHeaders({
|
|
229
|
-
|
|
248
|
+
headers: authorizationHeaders({
|
|
249
|
+
token,
|
|
250
|
+
jwtToken,
|
|
251
|
+
internalAuthTokenProvider,
|
|
252
|
+
headers
|
|
253
|
+
}),
|
|
254
|
+
data
|
|
230
255
|
});
|
|
231
256
|
}
|
|
232
257
|
};
|
|
233
|
-
|
|
234
258
|
return {
|
|
235
|
-
all
|
|
236
|
-
get
|
|
237
|
-
create
|
|
238
|
-
update
|
|
239
|
-
schedules
|
|
259
|
+
all,
|
|
260
|
+
get,
|
|
261
|
+
create,
|
|
262
|
+
update,
|
|
263
|
+
schedules
|
|
240
264
|
};
|
|
241
265
|
}
|
|
242
|
-
|
|
243
266
|
module.exports = changeRequestsFactory;
|
|
@@ -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 /companies (btrz-api-inventory). See get-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 }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function companiesFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* GET /companies - list companies.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -33,23 +30,25 @@ function companiesFactory(_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: "/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
50
|
return {
|
|
51
|
-
all
|
|
51
|
+
all
|
|
52
52
|
};
|
|
53
53
|
}
|
|
54
|
-
|
|
55
54
|
module.exports = companiesFactory;
|
|
@@ -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 /control-classes (btrz-api-inventory). See get-control-classes getSpec().
|
|
@@ -40,12 +39,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
40
39
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
41
40
|
* @returns {{ all: function, get: function, create: function, update: function, remove: function }}
|
|
42
41
|
*/
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
48
|
-
|
|
42
|
+
function controlClassesFactory({
|
|
43
|
+
client,
|
|
44
|
+
internalAuthTokenProvider
|
|
45
|
+
}) {
|
|
49
46
|
/**
|
|
50
47
|
* GET /control-classes — List control class roots (paginated). Emits no webhooks.
|
|
51
48
|
* @param {Object} opts
|
|
@@ -59,16 +56,20 @@ function controlClassesFactory(_ref) {
|
|
|
59
56
|
* @throws 404 SCHEDULE_NOT_FOUND
|
|
60
57
|
* @throws 500 Internal server error
|
|
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.get("/control-classes", {
|
|
70
66
|
params: query,
|
|
71
|
-
headers: authorizationHeaders({
|
|
67
|
+
headers: authorizationHeaders({
|
|
68
|
+
token,
|
|
69
|
+
jwtToken,
|
|
70
|
+
internalAuthTokenProvider,
|
|
71
|
+
headers
|
|
72
|
+
})
|
|
72
73
|
});
|
|
73
74
|
}
|
|
74
75
|
|
|
@@ -86,17 +87,21 @@ function controlClassesFactory(_ref) {
|
|
|
86
87
|
* @throws 404 CONTROLCLASS_NOT_FOUND
|
|
87
88
|
* @throws 500 Internal server error
|
|
88
89
|
*/
|
|
89
|
-
function get(
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
return client.get("/control-classes/" + controlClassId, {
|
|
90
|
+
function get({
|
|
91
|
+
controlClassId,
|
|
92
|
+
token,
|
|
93
|
+
headers,
|
|
94
|
+
jwtToken,
|
|
95
|
+
query = {}
|
|
96
|
+
}) {
|
|
97
|
+
return client.get(`/control-classes/${controlClassId}`, {
|
|
98
98
|
params: query,
|
|
99
|
-
headers: authorizationHeaders({
|
|
99
|
+
headers: authorizationHeaders({
|
|
100
|
+
token,
|
|
101
|
+
jwtToken,
|
|
102
|
+
internalAuthTokenProvider,
|
|
103
|
+
headers
|
|
104
|
+
})
|
|
100
105
|
});
|
|
101
106
|
}
|
|
102
107
|
|
|
@@ -112,18 +117,23 @@ function controlClassesFactory(_ref) {
|
|
|
112
117
|
* @throws 401 Unauthorized
|
|
113
118
|
* @throws 500 Internal server error
|
|
114
119
|
*/
|
|
115
|
-
function create(
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
120
|
+
function create({
|
|
121
|
+
jwtToken,
|
|
122
|
+
token,
|
|
123
|
+
controlClass,
|
|
124
|
+
headers
|
|
125
|
+
}) {
|
|
121
126
|
return client({
|
|
122
127
|
url: "/control-classes",
|
|
123
128
|
method: "post",
|
|
124
|
-
headers: authorizationHeaders({
|
|
129
|
+
headers: authorizationHeaders({
|
|
130
|
+
token,
|
|
131
|
+
jwtToken,
|
|
132
|
+
internalAuthTokenProvider,
|
|
133
|
+
headers
|
|
134
|
+
}),
|
|
125
135
|
data: {
|
|
126
|
-
controlClass
|
|
136
|
+
controlClass
|
|
127
137
|
}
|
|
128
138
|
});
|
|
129
139
|
}
|
|
@@ -141,16 +151,21 @@ function controlClassesFactory(_ref) {
|
|
|
141
151
|
* @throws 404 CONTROLCLASS_NOT_FOUND
|
|
142
152
|
* @throws 500 Internal server error
|
|
143
153
|
*/
|
|
144
|
-
function remove(
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
154
|
+
function remove({
|
|
155
|
+
jwtToken,
|
|
156
|
+
controlClassId,
|
|
157
|
+
token,
|
|
158
|
+
headers
|
|
159
|
+
}) {
|
|
150
160
|
return client({
|
|
151
|
-
url:
|
|
161
|
+
url: `/control-classes/${controlClassId}`,
|
|
152
162
|
method: "delete",
|
|
153
|
-
headers: authorizationHeaders({
|
|
163
|
+
headers: authorizationHeaders({
|
|
164
|
+
token,
|
|
165
|
+
jwtToken,
|
|
166
|
+
internalAuthTokenProvider,
|
|
167
|
+
headers
|
|
168
|
+
})
|
|
154
169
|
});
|
|
155
170
|
}
|
|
156
171
|
|
|
@@ -168,36 +183,45 @@ function controlClassesFactory(_ref) {
|
|
|
168
183
|
* @throws 404 CONTROLCLASS_NOT_FOUND
|
|
169
184
|
* @throws 500 Internal server error
|
|
170
185
|
*/
|
|
171
|
-
function update(
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
186
|
+
function update({
|
|
187
|
+
jwtToken,
|
|
188
|
+
token,
|
|
189
|
+
controlClassId,
|
|
190
|
+
controlClass,
|
|
191
|
+
headers
|
|
192
|
+
}) {
|
|
178
193
|
return client({
|
|
179
|
-
url:
|
|
194
|
+
url: `/control-classes/${controlClassId}`,
|
|
180
195
|
method: "put",
|
|
181
|
-
headers: authorizationHeaders({
|
|
196
|
+
headers: authorizationHeaders({
|
|
197
|
+
token,
|
|
198
|
+
jwtToken,
|
|
199
|
+
internalAuthTokenProvider,
|
|
200
|
+
headers
|
|
201
|
+
}),
|
|
182
202
|
data: {
|
|
183
|
-
controlClass
|
|
203
|
+
controlClass
|
|
184
204
|
}
|
|
185
205
|
});
|
|
186
206
|
}
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
207
|
+
const schedules = {
|
|
208
|
+
post: ({
|
|
209
|
+
token,
|
|
210
|
+
jwtToken,
|
|
211
|
+
controlClassId,
|
|
212
|
+
data,
|
|
213
|
+
headers
|
|
214
|
+
}) => {
|
|
196
215
|
return client({
|
|
197
|
-
url:
|
|
216
|
+
url: `/control-classes/${controlClassId}/schedules`,
|
|
198
217
|
method: "post",
|
|
199
|
-
headers: authorizationHeaders({
|
|
200
|
-
|
|
218
|
+
headers: authorizationHeaders({
|
|
219
|
+
token,
|
|
220
|
+
jwtToken,
|
|
221
|
+
internalAuthTokenProvider,
|
|
222
|
+
headers
|
|
223
|
+
}),
|
|
224
|
+
data
|
|
201
225
|
});
|
|
202
226
|
}
|
|
203
227
|
};
|
|
@@ -217,32 +241,35 @@ function controlClassesFactory(_ref) {
|
|
|
217
241
|
* @throws 404 CONTROLCLASS_NOT_FOUND
|
|
218
242
|
* @throws 500 Internal server error
|
|
219
243
|
*/
|
|
220
|
-
function clone(
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
244
|
+
function clone({
|
|
245
|
+
jwtToken,
|
|
246
|
+
token,
|
|
247
|
+
rootClassId,
|
|
248
|
+
controlClassCloneOptions,
|
|
249
|
+
headers
|
|
250
|
+
}) {
|
|
227
251
|
return client({
|
|
228
|
-
url:
|
|
252
|
+
url: `/control-classes/${rootClassId}/clones`,
|
|
229
253
|
method: "post",
|
|
230
|
-
headers: authorizationHeaders({
|
|
254
|
+
headers: authorizationHeaders({
|
|
255
|
+
token,
|
|
256
|
+
jwtToken,
|
|
257
|
+
internalAuthTokenProvider,
|
|
258
|
+
headers
|
|
259
|
+
}),
|
|
231
260
|
data: {
|
|
232
|
-
controlClassCloneOptions
|
|
261
|
+
controlClassCloneOptions
|
|
233
262
|
}
|
|
234
263
|
});
|
|
235
264
|
}
|
|
236
|
-
|
|
237
265
|
return {
|
|
238
|
-
all
|
|
239
|
-
get
|
|
240
|
-
create
|
|
241
|
-
update
|
|
242
|
-
remove
|
|
243
|
-
clone
|
|
244
|
-
schedules
|
|
266
|
+
all,
|
|
267
|
+
get,
|
|
268
|
+
create,
|
|
269
|
+
update,
|
|
270
|
+
remove,
|
|
271
|
+
clone,
|
|
272
|
+
schedules
|
|
245
273
|
};
|
|
246
274
|
}
|
|
247
|
-
|
|
248
275
|
module.exports = controlClassesFactory;
|