btrz-api-client 8.75.0 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +133 -73
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +218 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/inventory/control-classes.js +27 -0
- package/src/endpoints/operations/transactions.js +1 -1
- package/test/endpoints/inventory/control-classes.js +14 -0
- package/tools/build-standalone.mjs +15 -0
- package/types/endpoints/inventory/control-classes.d.ts +4 -0
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,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 /schedule-groups (btrz-api-inventory). See get-handler getSpec().
|
|
@@ -16,12 +15,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
16
15
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
17
16
|
* @returns {{ all: function, get: function, create: function, update: function }}
|
|
18
17
|
*/
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
24
|
-
|
|
18
|
+
function scheduleGroupsFactory({
|
|
19
|
+
client,
|
|
20
|
+
internalAuthTokenProvider
|
|
21
|
+
}) {
|
|
25
22
|
/**
|
|
26
23
|
* GET /schedule-groups - list schedule groups.
|
|
27
24
|
* @param {Object} opts
|
|
@@ -31,16 +28,20 @@ function scheduleGroupsFactory(_ref) {
|
|
|
31
28
|
* @param {Object} [opts.headers] - Optional headers
|
|
32
29
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
33
30
|
*/
|
|
34
|
-
function all(
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
31
|
+
function all({
|
|
32
|
+
token,
|
|
33
|
+
jwtToken,
|
|
34
|
+
query = {},
|
|
35
|
+
headers
|
|
36
|
+
}) {
|
|
41
37
|
return client.get("/schedule-groups", {
|
|
42
38
|
params: query,
|
|
43
|
-
headers: authorizationHeaders({
|
|
39
|
+
headers: authorizationHeaders({
|
|
40
|
+
token,
|
|
41
|
+
jwtToken,
|
|
42
|
+
internalAuthTokenProvider,
|
|
43
|
+
headers
|
|
44
|
+
})
|
|
44
45
|
});
|
|
45
46
|
}
|
|
46
47
|
|
|
@@ -53,17 +54,21 @@ function scheduleGroupsFactory(_ref) {
|
|
|
53
54
|
* @param {Object} [opts.headers] - Optional headers
|
|
54
55
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
55
56
|
*/
|
|
56
|
-
function get(
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
return client.get("/schedule-groups/" + scheduleGroupId, {
|
|
57
|
+
function get({
|
|
58
|
+
token,
|
|
59
|
+
jwtToken,
|
|
60
|
+
scheduleGroupId,
|
|
61
|
+
query = {},
|
|
62
|
+
headers
|
|
63
|
+
}) {
|
|
64
|
+
return client.get(`/schedule-groups/${scheduleGroupId}`, {
|
|
65
65
|
params: query,
|
|
66
|
-
headers: authorizationHeaders({
|
|
66
|
+
headers: authorizationHeaders({
|
|
67
|
+
token,
|
|
68
|
+
jwtToken,
|
|
69
|
+
internalAuthTokenProvider,
|
|
70
|
+
headers
|
|
71
|
+
})
|
|
67
72
|
});
|
|
68
73
|
}
|
|
69
74
|
|
|
@@ -76,17 +81,24 @@ function scheduleGroupsFactory(_ref) {
|
|
|
76
81
|
* @param {Object} [opts.headers] - Optional headers
|
|
77
82
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
78
83
|
*/
|
|
79
|
-
function create(
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
84
|
+
function create({
|
|
85
|
+
token,
|
|
86
|
+
jwtToken,
|
|
87
|
+
scheduleGroup,
|
|
88
|
+
headers
|
|
89
|
+
}) {
|
|
85
90
|
return client({
|
|
86
91
|
url: "/schedule-groups",
|
|
87
92
|
method: "post",
|
|
88
|
-
headers: authorizationHeaders({
|
|
89
|
-
|
|
93
|
+
headers: authorizationHeaders({
|
|
94
|
+
token,
|
|
95
|
+
jwtToken,
|
|
96
|
+
internalAuthTokenProvider,
|
|
97
|
+
headers
|
|
98
|
+
}),
|
|
99
|
+
data: {
|
|
100
|
+
scheduleGroup
|
|
101
|
+
}
|
|
90
102
|
});
|
|
91
103
|
}
|
|
92
104
|
|
|
@@ -100,27 +112,32 @@ function scheduleGroupsFactory(_ref) {
|
|
|
100
112
|
* @param {Object} [opts.headers] - Optional headers
|
|
101
113
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
102
114
|
*/
|
|
103
|
-
function update(
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
115
|
+
function update({
|
|
116
|
+
token,
|
|
117
|
+
jwtToken,
|
|
118
|
+
scheduleGroupId,
|
|
119
|
+
scheduleGroup,
|
|
120
|
+
headers
|
|
121
|
+
}) {
|
|
110
122
|
return client({
|
|
111
|
-
url:
|
|
123
|
+
url: `/schedule-groups/${scheduleGroupId}`,
|
|
112
124
|
method: "put",
|
|
113
|
-
headers: authorizationHeaders({
|
|
114
|
-
|
|
125
|
+
headers: authorizationHeaders({
|
|
126
|
+
token,
|
|
127
|
+
jwtToken,
|
|
128
|
+
internalAuthTokenProvider,
|
|
129
|
+
headers
|
|
130
|
+
}),
|
|
131
|
+
data: {
|
|
132
|
+
scheduleGroup
|
|
133
|
+
}
|
|
115
134
|
});
|
|
116
135
|
}
|
|
117
|
-
|
|
118
136
|
return {
|
|
119
|
-
all
|
|
120
|
-
get
|
|
121
|
-
create
|
|
122
|
-
update
|
|
137
|
+
all,
|
|
138
|
+
get,
|
|
139
|
+
create,
|
|
140
|
+
update
|
|
123
141
|
};
|
|
124
142
|
}
|
|
125
|
-
|
|
126
143
|
module.exports = scheduleGroupsFactory;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/* eslint-disable max-len */
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
const {
|
|
3
|
+
authorizationHeaders
|
|
4
|
+
} = require("./../endpoints_helpers.js");
|
|
6
5
|
|
|
7
6
|
/**
|
|
8
7
|
* Query params for GET /routes/schedules (btrz-api-inventory). See get-schedules getSpec().
|
|
@@ -25,12 +24,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
25
24
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
26
25
|
* @returns {{ all: function, get: function, create: function, update: function, delete: function, autoBouncing: object, exceptions: object }}
|
|
27
26
|
*/
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
33
|
-
|
|
27
|
+
function schedulesFactory({
|
|
28
|
+
client,
|
|
29
|
+
internalAuthTokenProvider
|
|
30
|
+
}) {
|
|
34
31
|
/**
|
|
35
32
|
* GET /routes/schedules - list schedules.
|
|
36
33
|
* @param {Object} opts
|
|
@@ -40,15 +37,18 @@ function schedulesFactory(_ref) {
|
|
|
40
37
|
* @param {Object} [opts.headers] - Optional headers
|
|
41
38
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
42
39
|
*/
|
|
43
|
-
function all(
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
40
|
+
function all({
|
|
41
|
+
token,
|
|
42
|
+
query = {},
|
|
43
|
+
headers
|
|
44
|
+
}) {
|
|
49
45
|
return client.get("/routes/schedules", {
|
|
50
46
|
params: query,
|
|
51
|
-
headers: authorizationHeaders({
|
|
47
|
+
headers: authorizationHeaders({
|
|
48
|
+
token,
|
|
49
|
+
internalAuthTokenProvider,
|
|
50
|
+
headers
|
|
51
|
+
})
|
|
52
52
|
});
|
|
53
53
|
}
|
|
54
54
|
|
|
@@ -62,17 +62,20 @@ function schedulesFactory(_ref) {
|
|
|
62
62
|
* @param {Object} [opts.headers] - Optional headers
|
|
63
63
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
64
64
|
*/
|
|
65
|
-
function get(
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
return client.get("/routes/" + routeId + "/schedules/" + scheduleId, {
|
|
65
|
+
function get({
|
|
66
|
+
token,
|
|
67
|
+
routeId,
|
|
68
|
+
scheduleId,
|
|
69
|
+
headers,
|
|
70
|
+
query = {}
|
|
71
|
+
}) {
|
|
72
|
+
return client.get(`/routes/${routeId}/schedules/${scheduleId}`, {
|
|
74
73
|
params: query,
|
|
75
|
-
headers: authorizationHeaders({
|
|
74
|
+
headers: authorizationHeaders({
|
|
75
|
+
token,
|
|
76
|
+
internalAuthTokenProvider,
|
|
77
|
+
headers
|
|
78
|
+
})
|
|
76
79
|
});
|
|
77
80
|
}
|
|
78
81
|
|
|
@@ -86,20 +89,23 @@ function schedulesFactory(_ref) {
|
|
|
86
89
|
* @param {Object} [opts.headers] - Optional headers
|
|
87
90
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
88
91
|
*/
|
|
89
|
-
function create(
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
92
|
+
function create({
|
|
93
|
+
token,
|
|
94
|
+
jwtToken,
|
|
95
|
+
data,
|
|
96
|
+
routeId,
|
|
97
|
+
headers
|
|
98
|
+
}) {
|
|
96
99
|
return client({
|
|
97
|
-
url:
|
|
100
|
+
url: `/routes/${routeId}/schedules`,
|
|
98
101
|
method: "post",
|
|
99
102
|
headers: authorizationHeaders({
|
|
100
|
-
token
|
|
103
|
+
token,
|
|
104
|
+
jwtToken,
|
|
105
|
+
internalAuthTokenProvider,
|
|
106
|
+
headers
|
|
101
107
|
}),
|
|
102
|
-
data
|
|
108
|
+
data
|
|
103
109
|
});
|
|
104
110
|
}
|
|
105
111
|
|
|
@@ -113,20 +119,23 @@ function schedulesFactory(_ref) {
|
|
|
113
119
|
* @param {Object} [opts.headers] - Optional headers
|
|
114
120
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
115
121
|
*/
|
|
116
|
-
function validations(
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
122
|
+
function validations({
|
|
123
|
+
token,
|
|
124
|
+
jwtToken,
|
|
125
|
+
data,
|
|
126
|
+
routeId,
|
|
127
|
+
headers
|
|
128
|
+
}) {
|
|
123
129
|
return client({
|
|
124
|
-
url:
|
|
130
|
+
url: `/routes/${routeId}/schedules/validations`,
|
|
125
131
|
method: "post",
|
|
126
132
|
headers: authorizationHeaders({
|
|
127
|
-
token
|
|
133
|
+
token,
|
|
134
|
+
jwtToken,
|
|
135
|
+
internalAuthTokenProvider,
|
|
136
|
+
headers
|
|
128
137
|
}),
|
|
129
|
-
data
|
|
138
|
+
data
|
|
130
139
|
});
|
|
131
140
|
}
|
|
132
141
|
|
|
@@ -141,21 +150,24 @@ function schedulesFactory(_ref) {
|
|
|
141
150
|
* @param {Object} [opts.headers] - Optional headers
|
|
142
151
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
143
152
|
*/
|
|
144
|
-
function runUpdateValidations(
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
153
|
+
function runUpdateValidations({
|
|
154
|
+
token,
|
|
155
|
+
jwtToken,
|
|
156
|
+
data,
|
|
157
|
+
routeId,
|
|
158
|
+
scheduleId,
|
|
159
|
+
headers
|
|
160
|
+
}) {
|
|
152
161
|
return client({
|
|
153
|
-
url:
|
|
162
|
+
url: `/routes/${routeId}/schedules/${scheduleId}/validations`,
|
|
154
163
|
method: "put",
|
|
155
164
|
headers: authorizationHeaders({
|
|
156
|
-
token
|
|
165
|
+
token,
|
|
166
|
+
jwtToken,
|
|
167
|
+
internalAuthTokenProvider,
|
|
168
|
+
headers
|
|
157
169
|
}),
|
|
158
|
-
data
|
|
170
|
+
data
|
|
159
171
|
});
|
|
160
172
|
}
|
|
161
173
|
|
|
@@ -170,21 +182,24 @@ function schedulesFactory(_ref) {
|
|
|
170
182
|
* @param {Object} [opts.headers] - Optional headers
|
|
171
183
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
172
184
|
*/
|
|
173
|
-
function update(
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
185
|
+
function update({
|
|
186
|
+
token,
|
|
187
|
+
jwtToken,
|
|
188
|
+
data,
|
|
189
|
+
routeId,
|
|
190
|
+
scheduleId,
|
|
191
|
+
headers
|
|
192
|
+
}) {
|
|
181
193
|
return client({
|
|
182
|
-
url:
|
|
194
|
+
url: `/routes/${routeId}/schedules/${scheduleId}`,
|
|
183
195
|
method: "put",
|
|
184
196
|
headers: authorizationHeaders({
|
|
185
|
-
token
|
|
197
|
+
token,
|
|
198
|
+
jwtToken,
|
|
199
|
+
internalAuthTokenProvider,
|
|
200
|
+
headers
|
|
186
201
|
}),
|
|
187
|
-
data
|
|
202
|
+
data
|
|
188
203
|
});
|
|
189
204
|
}
|
|
190
205
|
|
|
@@ -198,24 +213,27 @@ function schedulesFactory(_ref) {
|
|
|
198
213
|
* @param {Object} [opts.headers] - Optional headers
|
|
199
214
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
200
215
|
*/
|
|
201
|
-
function deleteSchedule(
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
216
|
+
function deleteSchedule({
|
|
217
|
+
token,
|
|
218
|
+
jwtToken,
|
|
219
|
+
routeId,
|
|
220
|
+
scheduleId,
|
|
221
|
+
headers
|
|
222
|
+
}) {
|
|
208
223
|
return client({
|
|
209
|
-
url:
|
|
224
|
+
url: `/routes/${routeId}/schedules/${scheduleId}`,
|
|
210
225
|
method: "delete",
|
|
211
226
|
headers: authorizationHeaders({
|
|
212
|
-
token
|
|
227
|
+
token,
|
|
228
|
+
jwtToken,
|
|
229
|
+
internalAuthTokenProvider,
|
|
230
|
+
headers
|
|
213
231
|
})
|
|
214
232
|
});
|
|
215
233
|
}
|
|
216
234
|
|
|
217
235
|
/** @type {{ create: function, delete: function }} */
|
|
218
|
-
|
|
236
|
+
const autoBouncing = {
|
|
219
237
|
/**
|
|
220
238
|
* POST /routes/schedules/auto-bouncing - create auto bouncing. API does not accept query params.
|
|
221
239
|
* @param {Object} opts
|
|
@@ -225,19 +243,22 @@ function schedulesFactory(_ref) {
|
|
|
225
243
|
* @param {Object} [opts.headers] - Optional headers
|
|
226
244
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
227
245
|
*/
|
|
228
|
-
create:
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
246
|
+
create: ({
|
|
247
|
+
token,
|
|
248
|
+
jwtToken,
|
|
249
|
+
data,
|
|
250
|
+
headers
|
|
251
|
+
}) => {
|
|
234
252
|
return client({
|
|
235
253
|
url: "/routes/schedules/auto-bouncing",
|
|
236
254
|
method: "post",
|
|
237
255
|
headers: authorizationHeaders({
|
|
238
|
-
token
|
|
256
|
+
token,
|
|
257
|
+
jwtToken,
|
|
258
|
+
internalAuthTokenProvider,
|
|
259
|
+
headers
|
|
239
260
|
}),
|
|
240
|
-
data
|
|
261
|
+
data
|
|
241
262
|
});
|
|
242
263
|
},
|
|
243
264
|
/**
|
|
@@ -250,25 +271,28 @@ function schedulesFactory(_ref) {
|
|
|
250
271
|
* @param {Object} [opts.headers] - Optional headers
|
|
251
272
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
252
273
|
*/
|
|
253
|
-
delete:
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
274
|
+
delete: ({
|
|
275
|
+
token,
|
|
276
|
+
jwtToken,
|
|
277
|
+
routeId,
|
|
278
|
+
parentScheduleId,
|
|
279
|
+
headers
|
|
280
|
+
}) => {
|
|
260
281
|
return client({
|
|
261
|
-
url:
|
|
282
|
+
url: `/routes/${routeId}/schedules/${parentScheduleId}/auto-bouncing`,
|
|
262
283
|
method: "delete",
|
|
263
284
|
headers: authorizationHeaders({
|
|
264
|
-
token
|
|
285
|
+
token,
|
|
286
|
+
jwtToken,
|
|
287
|
+
internalAuthTokenProvider,
|
|
288
|
+
headers
|
|
265
289
|
})
|
|
266
290
|
});
|
|
267
291
|
}
|
|
268
292
|
};
|
|
269
293
|
|
|
270
294
|
/** @type {{ create: function, delete: function, update: function }} */
|
|
271
|
-
|
|
295
|
+
const exceptions = {
|
|
272
296
|
/**
|
|
273
297
|
* POST /schedules/:scheduleId/schedule-exceptions - create schedule exception. API does not accept query params.
|
|
274
298
|
* @param {Object} opts
|
|
@@ -279,22 +303,24 @@ function schedulesFactory(_ref) {
|
|
|
279
303
|
* @param {Object} [opts.headers] - Optional headers
|
|
280
304
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
281
305
|
*/
|
|
282
|
-
create:
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
306
|
+
create: ({
|
|
307
|
+
token,
|
|
308
|
+
jwtToken,
|
|
309
|
+
data,
|
|
310
|
+
scheduleId,
|
|
311
|
+
headers,
|
|
312
|
+
query = {}
|
|
313
|
+
}) => {
|
|
291
314
|
return client({
|
|
292
|
-
url:
|
|
315
|
+
url: `/schedules/${scheduleId}/schedule-exceptions`,
|
|
293
316
|
method: "post",
|
|
294
317
|
headers: authorizationHeaders({
|
|
295
|
-
token
|
|
318
|
+
token,
|
|
319
|
+
jwtToken,
|
|
320
|
+
internalAuthTokenProvider,
|
|
321
|
+
headers
|
|
296
322
|
}),
|
|
297
|
-
data
|
|
323
|
+
data,
|
|
298
324
|
params: query
|
|
299
325
|
});
|
|
300
326
|
},
|
|
@@ -308,20 +334,22 @@ function schedulesFactory(_ref) {
|
|
|
308
334
|
* @param {Object} [opts.headers] - Optional headers
|
|
309
335
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
310
336
|
*/
|
|
311
|
-
delete:
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
337
|
+
delete: ({
|
|
338
|
+
token,
|
|
339
|
+
jwtToken,
|
|
340
|
+
scheduleId,
|
|
341
|
+
exceptionId,
|
|
342
|
+
headers,
|
|
343
|
+
query = {}
|
|
344
|
+
}) => {
|
|
320
345
|
return client({
|
|
321
|
-
url:
|
|
346
|
+
url: `/schedules/${scheduleId}/schedule-exceptions/${exceptionId}`,
|
|
322
347
|
method: "delete",
|
|
323
348
|
headers: authorizationHeaders({
|
|
324
|
-
token
|
|
349
|
+
token,
|
|
350
|
+
jwtToken,
|
|
351
|
+
internalAuthTokenProvider,
|
|
352
|
+
headers
|
|
325
353
|
}),
|
|
326
354
|
params: query
|
|
327
355
|
});
|
|
@@ -337,39 +365,39 @@ function schedulesFactory(_ref) {
|
|
|
337
365
|
* @param {Object} [opts.headers] - Optional headers
|
|
338
366
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
339
367
|
*/
|
|
340
|
-
update:
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
368
|
+
update: ({
|
|
369
|
+
token,
|
|
370
|
+
jwtToken,
|
|
371
|
+
data,
|
|
372
|
+
scheduleId,
|
|
373
|
+
exceptionId,
|
|
374
|
+
headers,
|
|
375
|
+
query = {}
|
|
376
|
+
}) => {
|
|
350
377
|
return client({
|
|
351
|
-
url:
|
|
378
|
+
url: `/schedules/${scheduleId}/schedule-exceptions/${exceptionId}`,
|
|
352
379
|
method: "put",
|
|
353
380
|
headers: authorizationHeaders({
|
|
354
|
-
token
|
|
381
|
+
token,
|
|
382
|
+
jwtToken,
|
|
383
|
+
internalAuthTokenProvider,
|
|
384
|
+
headers
|
|
355
385
|
}),
|
|
356
|
-
data
|
|
386
|
+
data,
|
|
357
387
|
params: query
|
|
358
388
|
});
|
|
359
389
|
}
|
|
360
390
|
};
|
|
361
|
-
|
|
362
391
|
return {
|
|
363
|
-
all
|
|
364
|
-
get
|
|
365
|
-
create
|
|
366
|
-
update
|
|
392
|
+
all,
|
|
393
|
+
get,
|
|
394
|
+
create,
|
|
395
|
+
update,
|
|
367
396
|
delete: deleteSchedule,
|
|
368
|
-
validations
|
|
369
|
-
runUpdateValidations
|
|
370
|
-
autoBouncing
|
|
371
|
-
exceptions
|
|
397
|
+
validations,
|
|
398
|
+
runUpdateValidations,
|
|
399
|
+
autoBouncing,
|
|
400
|
+
exceptions
|
|
372
401
|
};
|
|
373
402
|
}
|
|
374
|
-
|
|
375
403
|
module.exports = schedulesFactory;
|