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
|
* Factory for manifest-leg-for-tickets API (btrz-api-operations).
|
|
@@ -10,12 +9,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {Object} manifest-leg-for-tickets API methods
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function manifestLegForTicketsFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET /manifest-leg-for-tickets/:ticketId - get manifest leg for ticket. API does not accept query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -25,23 +22,26 @@ function manifestLegForTicketsFactory(_ref) {
|
|
|
25
22
|
* @param {Object} [opts.headers] - Optional headers
|
|
26
23
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
27
24
|
*/
|
|
28
|
-
function get(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
25
|
+
function get({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
ticketId,
|
|
29
|
+
params,
|
|
30
|
+
headers
|
|
31
|
+
}) {
|
|
35
32
|
return client({
|
|
36
|
-
url:
|
|
37
|
-
headers: authorizationHeaders({
|
|
38
|
-
|
|
33
|
+
url: `/manifest-leg-for-tickets/${ticketId}`,
|
|
34
|
+
headers: authorizationHeaders({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
internalAuthTokenProvider,
|
|
38
|
+
headers
|
|
39
|
+
}),
|
|
40
|
+
params
|
|
39
41
|
});
|
|
40
42
|
}
|
|
41
|
-
|
|
42
43
|
return {
|
|
43
|
-
get
|
|
44
|
+
get
|
|
44
45
|
};
|
|
45
46
|
}
|
|
46
|
-
|
|
47
47
|
module.exports = manifestLegForTicketsFactory;
|
|
@@ -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
|
* Request body for POST /movements (btrz-api-operations). See MovementPostData in movements models.
|
|
@@ -25,12 +24,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
25
24
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
26
25
|
* @returns {Object} movements API methods
|
|
27
26
|
*/
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
33
|
-
|
|
27
|
+
function movementsFactory({
|
|
28
|
+
client,
|
|
29
|
+
internalAuthTokenProvider
|
|
30
|
+
}) {
|
|
34
31
|
/**
|
|
35
32
|
* POST /movements - create a movement (move tickets to another manifest). No query params.
|
|
36
33
|
* @param {Object} opts
|
|
@@ -41,26 +38,28 @@ function movementsFactory(_ref) {
|
|
|
41
38
|
* @param {Object} [opts.headers] - Optional request headers
|
|
42
39
|
* @returns {Promise<import("axios").AxiosResponse<{}>>}
|
|
43
40
|
*/
|
|
44
|
-
function create(
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
41
|
+
function create({
|
|
42
|
+
token,
|
|
43
|
+
jwtToken,
|
|
44
|
+
movement,
|
|
45
|
+
query = {},
|
|
46
|
+
headers
|
|
47
|
+
}) {
|
|
52
48
|
return client({
|
|
53
49
|
url: "/movements",
|
|
54
50
|
method: "post",
|
|
55
51
|
params: query,
|
|
56
|
-
headers: authorizationHeaders({
|
|
52
|
+
headers: authorizationHeaders({
|
|
53
|
+
token,
|
|
54
|
+
jwtToken,
|
|
55
|
+
internalAuthTokenProvider,
|
|
56
|
+
headers
|
|
57
|
+
}),
|
|
57
58
|
data: movement
|
|
58
59
|
});
|
|
59
60
|
}
|
|
60
|
-
|
|
61
61
|
return {
|
|
62
|
-
create
|
|
62
|
+
create
|
|
63
63
|
};
|
|
64
64
|
}
|
|
65
|
-
|
|
66
65
|
module.exports = movementsFactory;
|
|
@@ -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 /outlook-trips (btrz-api-operations). See get-outlook-trips getSpec().
|
|
@@ -25,12 +24,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
25
24
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
26
25
|
* @returns {Object} outlook-trips API methods
|
|
27
26
|
*/
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
33
|
-
|
|
27
|
+
function outlookTripsFactory({
|
|
28
|
+
client,
|
|
29
|
+
internalAuthTokenProvider
|
|
30
|
+
}) {
|
|
34
31
|
/**
|
|
35
32
|
* GET /outlook-trips - get outlook trips.
|
|
36
33
|
* @param {Object} opts
|
|
@@ -40,23 +37,25 @@ function outlookTripsFactory(_ref) {
|
|
|
40
37
|
* @param {Object} [opts.headers] - Optional headers
|
|
41
38
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
42
39
|
*/
|
|
43
|
-
function get(
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
40
|
+
function get({
|
|
41
|
+
token,
|
|
42
|
+
jwtToken,
|
|
43
|
+
query = {},
|
|
44
|
+
headers
|
|
45
|
+
}) {
|
|
50
46
|
return client({
|
|
51
47
|
url: "/outlook-trips",
|
|
52
|
-
headers: authorizationHeaders({
|
|
48
|
+
headers: authorizationHeaders({
|
|
49
|
+
token,
|
|
50
|
+
jwtToken,
|
|
51
|
+
internalAuthTokenProvider,
|
|
52
|
+
headers
|
|
53
|
+
}),
|
|
53
54
|
params: query
|
|
54
55
|
});
|
|
55
56
|
}
|
|
56
|
-
|
|
57
57
|
return {
|
|
58
|
-
get
|
|
58
|
+
get
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
|
-
|
|
62
61
|
module.exports = outlookTripsFactory;
|
|
@@ -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
|
* Pago Express (Datalogic) endpoints for the Operations API.
|
|
@@ -11,12 +10,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
11
10
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
12
11
|
* @returns {Object} pagoExpress API methods
|
|
13
12
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
19
|
-
|
|
13
|
+
function pagoExpressFactory({
|
|
14
|
+
client,
|
|
15
|
+
internalAuthTokenProvider
|
|
16
|
+
}) {
|
|
20
17
|
/**
|
|
21
18
|
* POST /pago-express/info - get transaction information for a Pago Express reference.
|
|
22
19
|
* @param {Object} opts
|
|
@@ -30,17 +27,24 @@ function pagoExpressFactory(_ref) {
|
|
|
30
27
|
* (code, message, result with folio, id_terminal, local_date, saldo,
|
|
31
28
|
* trx_no, responsecode, descriptioncode)
|
|
32
29
|
*/
|
|
33
|
-
function info(
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
30
|
+
function info({
|
|
31
|
+
token,
|
|
32
|
+
jwtToken,
|
|
33
|
+
payment,
|
|
34
|
+
headers
|
|
35
|
+
}) {
|
|
39
36
|
return client({
|
|
40
37
|
method: "post",
|
|
41
38
|
url: "/pago-express/info",
|
|
42
|
-
data: {
|
|
43
|
-
|
|
39
|
+
data: {
|
|
40
|
+
payment
|
|
41
|
+
},
|
|
42
|
+
headers: authorizationHeaders({
|
|
43
|
+
token,
|
|
44
|
+
jwtToken,
|
|
45
|
+
internalAuthTokenProvider,
|
|
46
|
+
headers
|
|
47
|
+
})
|
|
44
48
|
});
|
|
45
49
|
}
|
|
46
50
|
|
|
@@ -55,17 +59,24 @@ function pagoExpressFactory(_ref) {
|
|
|
55
59
|
* (code, message, result with folio, id_terminal, local_date, trx_no,
|
|
56
60
|
* noauto, amount, responsecode, descriptioncode)
|
|
57
61
|
*/
|
|
58
|
-
function pay(
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
function pay({
|
|
63
|
+
token,
|
|
64
|
+
jwtToken,
|
|
65
|
+
payment,
|
|
66
|
+
headers
|
|
67
|
+
}) {
|
|
64
68
|
return client({
|
|
65
69
|
method: "post",
|
|
66
70
|
url: "/pago-express/pay",
|
|
67
|
-
data: {
|
|
68
|
-
|
|
71
|
+
data: {
|
|
72
|
+
payment
|
|
73
|
+
},
|
|
74
|
+
headers: authorizationHeaders({
|
|
75
|
+
token,
|
|
76
|
+
jwtToken,
|
|
77
|
+
internalAuthTokenProvider,
|
|
78
|
+
headers
|
|
79
|
+
})
|
|
69
80
|
});
|
|
70
81
|
}
|
|
71
82
|
|
|
@@ -78,25 +89,30 @@ function pagoExpressFactory(_ref) {
|
|
|
78
89
|
* @param {Object} [opts.headers] - Optional headers
|
|
79
90
|
* @returns {Promise<import("axios").AxiosResponse>} 200 PostReverseResponse (code, message, result)
|
|
80
91
|
*/
|
|
81
|
-
function reverse(
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
92
|
+
function reverse({
|
|
93
|
+
token,
|
|
94
|
+
jwtToken,
|
|
95
|
+
reversePayment,
|
|
96
|
+
headers
|
|
97
|
+
}) {
|
|
87
98
|
return client({
|
|
88
99
|
method: "post",
|
|
89
100
|
url: "/pago-express/reverse",
|
|
90
|
-
data: {
|
|
91
|
-
|
|
101
|
+
data: {
|
|
102
|
+
reversePayment
|
|
103
|
+
},
|
|
104
|
+
headers: authorizationHeaders({
|
|
105
|
+
token,
|
|
106
|
+
jwtToken,
|
|
107
|
+
internalAuthTokenProvider,
|
|
108
|
+
headers
|
|
109
|
+
})
|
|
92
110
|
});
|
|
93
111
|
}
|
|
94
|
-
|
|
95
112
|
return {
|
|
96
|
-
info
|
|
97
|
-
pay
|
|
98
|
-
reverse
|
|
113
|
+
info,
|
|
114
|
+
pay,
|
|
115
|
+
reverse
|
|
99
116
|
};
|
|
100
117
|
}
|
|
101
|
-
|
|
102
118
|
module.exports = pagoExpressFactory;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
var
|
|
6
|
-
|
|
1
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
2
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
3
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
4
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
5
|
+
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
6
|
+
const {
|
|
7
|
+
authorizationHeaders
|
|
8
|
+
} = require("./../endpoints_helpers.js");
|
|
7
9
|
|
|
8
10
|
/**
|
|
9
11
|
* Query params for GET /parcels list (btrz-api-operations). See get-parcel-handler getSpec().
|
|
@@ -31,12 +33,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
31
33
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
32
34
|
* @returns {Object} parcels API methods
|
|
33
35
|
*/
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
39
|
-
|
|
36
|
+
function parcelFactory({
|
|
37
|
+
client,
|
|
38
|
+
internalAuthTokenProvider
|
|
39
|
+
}) {
|
|
40
40
|
/**
|
|
41
41
|
* GET /parcels/{parcelId} - get parcel by id. Requires JwtAuth. No query params.
|
|
42
42
|
* @param {Object} opts
|
|
@@ -46,15 +46,20 @@ function parcelFactory(_ref) {
|
|
|
46
46
|
* @param {Object} [opts.headers] - Optional headers
|
|
47
47
|
* @returns {Promise<import("axios").AxiosResponse>} 200 { parcel }; 400 INVALID_PARCEL_ID; 401 Unauthorized; 404 PARCEL_NOT_FOUND; 500
|
|
48
48
|
*/
|
|
49
|
-
function get(
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
49
|
+
function get({
|
|
50
|
+
token,
|
|
51
|
+
jwtToken,
|
|
52
|
+
id,
|
|
53
|
+
headers
|
|
54
|
+
}) {
|
|
55
55
|
return client({
|
|
56
|
-
url:
|
|
57
|
-
headers: authorizationHeaders({
|
|
56
|
+
url: `/parcels/${id}`,
|
|
57
|
+
headers: authorizationHeaders({
|
|
58
|
+
token,
|
|
59
|
+
jwtToken,
|
|
60
|
+
internalAuthTokenProvider,
|
|
61
|
+
headers
|
|
62
|
+
})
|
|
58
63
|
});
|
|
59
64
|
}
|
|
60
65
|
|
|
@@ -68,19 +73,25 @@ function parcelFactory(_ref) {
|
|
|
68
73
|
* @param {Object} [opts.headers] - Optional headers
|
|
69
74
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
70
75
|
*/
|
|
71
|
-
function all(
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
76
|
+
function all({
|
|
77
|
+
token,
|
|
78
|
+
jwtToken,
|
|
79
|
+
query = {},
|
|
80
|
+
headers,
|
|
81
|
+
providerId
|
|
82
|
+
}) {
|
|
83
|
+
const query_ = providerId ? _objectSpread(_objectSpread({}, query), {}, {
|
|
84
|
+
providerId
|
|
85
|
+
}) : query;
|
|
80
86
|
return client({
|
|
81
87
|
url: "/parcels",
|
|
82
88
|
params: query_,
|
|
83
|
-
headers: authorizationHeaders({
|
|
89
|
+
headers: authorizationHeaders({
|
|
90
|
+
token,
|
|
91
|
+
jwtToken,
|
|
92
|
+
internalAuthTokenProvider,
|
|
93
|
+
headers
|
|
94
|
+
})
|
|
84
95
|
});
|
|
85
96
|
}
|
|
86
97
|
|
|
@@ -95,19 +106,27 @@ function parcelFactory(_ref) {
|
|
|
95
106
|
* @param {Object} [opts.headers] - Optional headers
|
|
96
107
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
97
108
|
*/
|
|
98
|
-
function addScan(
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
109
|
+
function addScan({
|
|
110
|
+
token,
|
|
111
|
+
jwtToken,
|
|
112
|
+
id,
|
|
113
|
+
operationType,
|
|
114
|
+
locationData,
|
|
115
|
+
headers
|
|
116
|
+
}) {
|
|
106
117
|
return client({
|
|
107
|
-
url:
|
|
118
|
+
url: `/parcels/${id}/scans`,
|
|
108
119
|
method: "post",
|
|
109
|
-
headers: authorizationHeaders({
|
|
110
|
-
|
|
120
|
+
headers: authorizationHeaders({
|
|
121
|
+
token,
|
|
122
|
+
jwtToken,
|
|
123
|
+
internalAuthTokenProvider,
|
|
124
|
+
headers
|
|
125
|
+
}),
|
|
126
|
+
data: {
|
|
127
|
+
operationType,
|
|
128
|
+
locationData
|
|
129
|
+
}
|
|
111
130
|
});
|
|
112
131
|
}
|
|
113
132
|
|
|
@@ -121,18 +140,25 @@ function parcelFactory(_ref) {
|
|
|
121
140
|
* @param {Object} [opts.headers] - Optional headers
|
|
122
141
|
* @returns {Promise<import("axios").AxiosResponse>} 200 ParcelUserComment; 400 MISSING_*; 401; 403; 404 PARCEL_NOT_FOUND; 409
|
|
123
142
|
*/
|
|
124
|
-
function addComment(
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
143
|
+
function addComment({
|
|
144
|
+
token,
|
|
145
|
+
jwtToken,
|
|
146
|
+
headers,
|
|
147
|
+
id,
|
|
148
|
+
comment
|
|
149
|
+
}) {
|
|
131
150
|
return client({
|
|
132
|
-
url:
|
|
151
|
+
url: `/parcels/${id}/user-comments`,
|
|
133
152
|
method: "post",
|
|
134
|
-
headers: authorizationHeaders({
|
|
135
|
-
|
|
153
|
+
headers: authorizationHeaders({
|
|
154
|
+
token,
|
|
155
|
+
jwtToken,
|
|
156
|
+
internalAuthTokenProvider,
|
|
157
|
+
headers
|
|
158
|
+
}),
|
|
159
|
+
data: {
|
|
160
|
+
comment
|
|
161
|
+
}
|
|
136
162
|
});
|
|
137
163
|
}
|
|
138
164
|
|
|
@@ -148,27 +174,30 @@ function parcelFactory(_ref) {
|
|
|
148
174
|
* ParcelUserComment; 400 MISSING_*; 401; 403;
|
|
149
175
|
* 404 PARCEL_NOT_FOUND, COMMENT_NOT_FOUND; 409
|
|
150
176
|
*/
|
|
151
|
-
function deleteComment(
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
177
|
+
function deleteComment({
|
|
178
|
+
token,
|
|
179
|
+
jwtToken,
|
|
180
|
+
headers,
|
|
181
|
+
id,
|
|
182
|
+
commentId
|
|
183
|
+
}) {
|
|
158
184
|
return client({
|
|
159
|
-
url:
|
|
185
|
+
url: `/parcels/${id}/user-comments/${commentId}`,
|
|
160
186
|
method: "delete",
|
|
161
|
-
headers: authorizationHeaders({
|
|
187
|
+
headers: authorizationHeaders({
|
|
188
|
+
token,
|
|
189
|
+
jwtToken,
|
|
190
|
+
internalAuthTokenProvider,
|
|
191
|
+
headers
|
|
192
|
+
})
|
|
162
193
|
});
|
|
163
194
|
}
|
|
164
|
-
|
|
165
195
|
return {
|
|
166
|
-
get
|
|
167
|
-
all
|
|
168
|
-
addScan
|
|
169
|
-
addComment
|
|
170
|
-
deleteComment
|
|
196
|
+
get,
|
|
197
|
+
all,
|
|
198
|
+
addScan,
|
|
199
|
+
addComment,
|
|
200
|
+
deleteComment
|
|
171
201
|
};
|
|
172
202
|
}
|
|
173
|
-
|
|
174
203
|
module.exports = parcelFactory;
|