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 for POST .../referenced-payments/:type/:referenceNumber/results (btrz-api-payments). See post-referenced-payments getSpec().
|
|
@@ -16,12 +15,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
16
15
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
17
16
|
* @returns {{ getStatus: function, update: function }}
|
|
18
17
|
*/
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
24
|
-
|
|
18
|
+
function referencedPaymentsFactory({
|
|
19
|
+
client,
|
|
20
|
+
internalAuthTokenProvider
|
|
21
|
+
}) {
|
|
25
22
|
/**
|
|
26
23
|
* GET /referenced-payments/:transactionId/:referenceNumber/status - get
|
|
27
24
|
* referenced payment status. Requires backoffice auth. Response body:
|
|
@@ -36,16 +33,21 @@ function referencedPaymentsFactory(_ref) {
|
|
|
36
33
|
* paymentResult: { status: "error"|"pending"|"success"|"review", result: object } | null
|
|
37
34
|
* }>>}
|
|
38
35
|
*/
|
|
39
|
-
function getStatus(
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
return client.get(
|
|
36
|
+
function getStatus({
|
|
37
|
+
token,
|
|
38
|
+
jwtToken,
|
|
39
|
+
transactionId,
|
|
40
|
+
referenceNumber,
|
|
41
|
+
headers
|
|
42
|
+
}) {
|
|
43
|
+
return client.get(`/referenced-payments/${transactionId}/${referenceNumber}/status`, {
|
|
47
44
|
params: {},
|
|
48
|
-
headers: authorizationHeaders({
|
|
45
|
+
headers: authorizationHeaders({
|
|
46
|
+
token,
|
|
47
|
+
jwtToken,
|
|
48
|
+
internalAuthTokenProvider,
|
|
49
|
+
headers
|
|
50
|
+
})
|
|
49
51
|
});
|
|
50
52
|
}
|
|
51
53
|
|
|
@@ -61,29 +63,32 @@ function referencedPaymentsFactory(_ref) {
|
|
|
61
63
|
* @param {Object} [opts.headers] - Optional headers
|
|
62
64
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
63
65
|
*/
|
|
64
|
-
function update(
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
66
|
+
function update({
|
|
67
|
+
token,
|
|
68
|
+
jwtToken,
|
|
69
|
+
externalType,
|
|
70
|
+
referenceNumber,
|
|
71
|
+
paymentResult,
|
|
72
|
+
query = {},
|
|
73
|
+
headers
|
|
74
|
+
}) {
|
|
74
75
|
return client({
|
|
75
|
-
url:
|
|
76
|
+
url: `/referenced-payments/${externalType}/${referenceNumber}/results`,
|
|
76
77
|
method: "post",
|
|
77
78
|
params: query,
|
|
78
|
-
headers: authorizationHeaders({
|
|
79
|
-
|
|
79
|
+
headers: authorizationHeaders({
|
|
80
|
+
token,
|
|
81
|
+
jwtToken,
|
|
82
|
+
headers
|
|
83
|
+
}),
|
|
84
|
+
data: {
|
|
85
|
+
paymentResult
|
|
86
|
+
}
|
|
80
87
|
});
|
|
81
88
|
}
|
|
82
|
-
|
|
83
89
|
return {
|
|
84
|
-
getStatus
|
|
85
|
-
update
|
|
90
|
+
getStatus,
|
|
91
|
+
update
|
|
86
92
|
};
|
|
87
93
|
}
|
|
88
|
-
|
|
89
94
|
module.exports = referencedPaymentsFactory;
|
|
@@ -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 Square webhooks API (btrz-api-payments). Used to forward or simulate Square webhook requests to the Payments API.
|
|
@@ -10,12 +9,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ create: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function squareWebhooksFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* POST /square-webhooks/:providerId - send Square webhook payload to the
|
|
21
18
|
* Payments API. API verifies x-square-signature when present. Body must
|
|
@@ -28,23 +25,27 @@ function squareWebhooksFactory(_ref) {
|
|
|
28
25
|
* @param {Object} [opts.headers] - Optional headers (e.g. x-square-signature for verification)
|
|
29
26
|
* @returns {Promise<import("axios").AxiosResponse<{ status: "OK" }>>}
|
|
30
27
|
*/
|
|
31
|
-
function create(
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
28
|
+
function create({
|
|
29
|
+
token,
|
|
30
|
+
jwtToken,
|
|
31
|
+
data,
|
|
32
|
+
providerId,
|
|
33
|
+
headers
|
|
34
|
+
}) {
|
|
38
35
|
return client({
|
|
39
|
-
url:
|
|
36
|
+
url: `/square-webhooks/${providerId}`,
|
|
40
37
|
method: "post",
|
|
41
|
-
headers: authorizationHeaders({
|
|
42
|
-
|
|
38
|
+
headers: authorizationHeaders({
|
|
39
|
+
token,
|
|
40
|
+
jwtToken,
|
|
41
|
+
internalAuthTokenProvider,
|
|
42
|
+
headers
|
|
43
|
+
}),
|
|
44
|
+
data
|
|
43
45
|
});
|
|
44
46
|
}
|
|
45
|
-
|
|
46
47
|
return {
|
|
47
|
-
create
|
|
48
|
+
create
|
|
48
49
|
};
|
|
49
50
|
}
|
|
50
51
|
|
|
@@ -55,10 +56,10 @@ function squareWebhooksFactory(_ref) {
|
|
|
55
56
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
56
57
|
* @returns {{ get: function }}
|
|
57
58
|
*/
|
|
58
|
-
function squareTerminalsFactory(
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
function squareTerminalsFactory({
|
|
60
|
+
client,
|
|
61
|
+
internalAuthTokenProvider
|
|
62
|
+
}) {
|
|
62
63
|
/**
|
|
63
64
|
* GET /square-terminals - list Square terminals for the account. Requires
|
|
64
65
|
* JWT (BETTEREZ_APP or MOBILE_SCANNER). Response body: { terminals } with
|
|
@@ -74,24 +75,26 @@ function squareTerminalsFactory(_ref3) {
|
|
|
74
75
|
* createdAt?: string, statusChangedAt?: string
|
|
75
76
|
* }> }>>}
|
|
76
77
|
*/
|
|
77
|
-
function get(
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
78
|
+
function get({
|
|
79
|
+
token,
|
|
80
|
+
jwtToken,
|
|
81
|
+
headers
|
|
82
|
+
}) {
|
|
82
83
|
return client.get("/square-terminals", {
|
|
83
84
|
params: {},
|
|
84
85
|
headers: authorizationHeaders({
|
|
85
|
-
token
|
|
86
|
+
token,
|
|
87
|
+
jwtToken,
|
|
88
|
+
internalAuthTokenProvider,
|
|
89
|
+
headers
|
|
86
90
|
})
|
|
87
91
|
});
|
|
88
92
|
}
|
|
89
|
-
|
|
90
93
|
return {
|
|
91
|
-
get
|
|
94
|
+
get
|
|
92
95
|
};
|
|
93
96
|
}
|
|
94
97
|
module.exports = {
|
|
95
|
-
squareWebhooksFactory
|
|
96
|
-
squareTerminalsFactory
|
|
98
|
+
squareWebhooksFactory,
|
|
99
|
+
squareTerminalsFactory
|
|
97
100
|
};
|
|
@@ -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 /stripe-terminals (btrz-api-payments). See get-handler getSpec().
|
|
@@ -25,12 +24,10 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
25
24
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
26
25
|
* @returns {{ all: function, simulate: function }}
|
|
27
26
|
*/
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
33
|
-
|
|
27
|
+
function stripeTerminalsFactory({
|
|
28
|
+
client,
|
|
29
|
+
internalAuthTokenProvider
|
|
30
|
+
}) {
|
|
34
31
|
/**
|
|
35
32
|
* GET /stripe-terminals - list Stripe Terminal readers for the account (paginated).
|
|
36
33
|
* @param {Object} opts
|
|
@@ -42,17 +39,19 @@ function stripeTerminalsFactory(_ref) {
|
|
|
42
39
|
* Rejects with 400 (STRIPE_SECRET_KEY_INVALID), 401,
|
|
43
40
|
* 404 (PAYMENT_METHOD_NOT_FOUND), 500.
|
|
44
41
|
*/
|
|
45
|
-
function all(
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
42
|
+
function all({
|
|
43
|
+
token,
|
|
44
|
+
jwtToken,
|
|
45
|
+
headers,
|
|
46
|
+
query = {}
|
|
47
|
+
}) {
|
|
52
48
|
return client.get("/stripe-terminals", {
|
|
53
49
|
params: query,
|
|
54
50
|
headers: authorizationHeaders({
|
|
55
|
-
token
|
|
51
|
+
token,
|
|
52
|
+
jwtToken,
|
|
53
|
+
internalAuthTokenProvider,
|
|
54
|
+
headers
|
|
56
55
|
})
|
|
57
56
|
});
|
|
58
57
|
}
|
|
@@ -70,24 +69,30 @@ function stripeTerminalsFactory(_ref) {
|
|
|
70
69
|
* 404 (PAYMENT_METHOD_NOT_FOUND, TRANSACTION_NOT_FOUND),
|
|
71
70
|
* 409 (errorCode/errorMessage), 500.
|
|
72
71
|
*/
|
|
73
|
-
function simulate(
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
72
|
+
function simulate({
|
|
73
|
+
token,
|
|
74
|
+
jwtToken,
|
|
75
|
+
id,
|
|
76
|
+
stripePayment,
|
|
77
|
+
headers
|
|
78
|
+
}) {
|
|
80
79
|
return client({
|
|
81
|
-
url:
|
|
80
|
+
url: `/stripe-terminals/${id}/simulate`,
|
|
82
81
|
method: "post",
|
|
83
|
-
headers: authorizationHeaders({
|
|
84
|
-
|
|
82
|
+
headers: authorizationHeaders({
|
|
83
|
+
token,
|
|
84
|
+
jwtToken,
|
|
85
|
+
internalAuthTokenProvider,
|
|
86
|
+
headers
|
|
87
|
+
}),
|
|
88
|
+
data: {
|
|
89
|
+
stripePayment
|
|
90
|
+
}
|
|
85
91
|
});
|
|
86
92
|
}
|
|
87
|
-
|
|
88
93
|
return {
|
|
89
|
-
all
|
|
90
|
-
simulate
|
|
94
|
+
all,
|
|
95
|
+
simulate
|
|
91
96
|
};
|
|
92
97
|
}
|
|
93
98
|
module.exports = stripeTerminalsFactory;
|
|
@@ -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
|
* Request body for POST /stripe-payment-intent (btrz-api-payments). PaymentIntentPostData.
|
|
@@ -18,12 +17,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ createPaymentIntent: function }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
26
|
-
|
|
20
|
+
function stripe3dsFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
27
24
|
/**
|
|
28
25
|
* POST /stripe-payment-intent - creates a Stripe Payment Intent for 3DS; returns requires_action and payment_intent_client_secret.
|
|
29
26
|
* @param {Object} opts
|
|
@@ -34,21 +31,27 @@ function stripe3dsFactory(_ref) {
|
|
|
34
31
|
* @param {Object} [opts.headers] - Optional request headers
|
|
35
32
|
* @returns {Promise<import("axios").AxiosResponse<{ requires_action: boolean, payment_intent_client_secret: string }>>} PaymentIntentResponse. Rejects with 400 (WRONG_DATA, PAYMENT_INTENT_MISSING_PAYMENT_DATA, PAYMENT_INTENT_MISSING_PROVIDER, PROVIDER_NOT_FOUND, MISSING_PAYMENT_METHOD_PARAMS, PAYMENT_METHOD_NOT_FOUND, STRIPE_MISSING_PRIVATE_KEY, MISSING_PAYMENT_DATA), 401, 500.
|
|
36
33
|
*/
|
|
37
|
-
function createPaymentIntent(
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
return client.post("/stripe-payment-intent", {
|
|
45
|
-
|
|
34
|
+
function createPaymentIntent({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
providerName,
|
|
38
|
+
data,
|
|
39
|
+
headers
|
|
40
|
+
}) {
|
|
41
|
+
return client.post("/stripe-payment-intent", {
|
|
42
|
+
providerName,
|
|
43
|
+
data
|
|
44
|
+
}, {
|
|
45
|
+
headers: authorizationHeaders({
|
|
46
|
+
token,
|
|
47
|
+
jwtToken,
|
|
48
|
+
internalAuthTokenProvider,
|
|
49
|
+
headers
|
|
50
|
+
})
|
|
46
51
|
});
|
|
47
52
|
}
|
|
48
|
-
|
|
49
53
|
return {
|
|
50
|
-
createPaymentIntent
|
|
54
|
+
createPaymentIntent
|
|
51
55
|
};
|
|
52
56
|
}
|
|
53
|
-
|
|
54
57
|
module.exports = stripe3dsFactory;
|
|
@@ -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 /terminal-payments/mit/:id (btrz-api-payments). See get-mit-by-id-handler getSpec().
|
|
@@ -25,13 +24,11 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
25
24
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
26
25
|
* @returns {{ mit: Object, webhooks: Object }}
|
|
27
26
|
*/
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
var mit = {
|
|
27
|
+
function terminalPaymentsFactory({
|
|
28
|
+
client,
|
|
29
|
+
internalAuthTokenProvider
|
|
30
|
+
}) {
|
|
31
|
+
const mit = {
|
|
35
32
|
/**
|
|
36
33
|
* PUT /terminal-payments/mit/:terminalPaymentId - complete MIT terminal payment with result from terminal.
|
|
37
34
|
* @param {Object} opts
|
|
@@ -47,24 +44,29 @@ function terminalPaymentsFactory(_ref) {
|
|
|
47
44
|
* INVALID_RESULT_OBJECT, MIT_*), 401, 404 (TERMINALPAYMENT_NOT_FOUND,
|
|
48
45
|
* MIT_PAYMENT_NOT_FOUND), 409 (CANT_UPDATE_ORDER), 500.
|
|
49
46
|
*/
|
|
50
|
-
update
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
47
|
+
update({
|
|
48
|
+
token,
|
|
49
|
+
jwtToken,
|
|
50
|
+
id,
|
|
51
|
+
terminalPayment,
|
|
52
|
+
query = {},
|
|
53
|
+
headers
|
|
54
|
+
}) {
|
|
59
55
|
return client({
|
|
60
|
-
url:
|
|
56
|
+
url: `/terminal-payments/mit/${id}`,
|
|
61
57
|
method: "put",
|
|
62
|
-
headers: authorizationHeaders({
|
|
58
|
+
headers: authorizationHeaders({
|
|
59
|
+
token,
|
|
60
|
+
jwtToken,
|
|
61
|
+
internalAuthTokenProvider,
|
|
62
|
+
headers
|
|
63
|
+
}),
|
|
63
64
|
params: query,
|
|
64
|
-
data: {
|
|
65
|
+
data: {
|
|
66
|
+
terminalPayment
|
|
67
|
+
}
|
|
65
68
|
});
|
|
66
69
|
},
|
|
67
|
-
|
|
68
70
|
/**
|
|
69
71
|
* GET /terminal-payments/mit/:terminalPaymentId - get MIT terminal payment result from MIT servers.
|
|
70
72
|
* @param {Object} opts
|
|
@@ -78,22 +80,25 @@ function terminalPaymentsFactory(_ref) {
|
|
|
78
80
|
* INVALID_DATE, MIT_*), 401, 404 (TERMINALPAYMENT_NOT_FOUND,
|
|
79
81
|
* MIT_PAYMENT_NOT_FOUND), 500.
|
|
80
82
|
*/
|
|
81
|
-
get
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
return client.get("/terminal-payments/mit/" + id, {
|
|
83
|
+
get({
|
|
84
|
+
token,
|
|
85
|
+
jwtToken,
|
|
86
|
+
id,
|
|
87
|
+
query = {},
|
|
88
|
+
headers
|
|
89
|
+
}) {
|
|
90
|
+
return client.get(`/terminal-payments/mit/${id}`, {
|
|
90
91
|
params: query,
|
|
91
|
-
headers: authorizationHeaders({
|
|
92
|
+
headers: authorizationHeaders({
|
|
93
|
+
token,
|
|
94
|
+
jwtToken,
|
|
95
|
+
internalAuthTokenProvider,
|
|
96
|
+
headers
|
|
97
|
+
})
|
|
92
98
|
});
|
|
93
99
|
}
|
|
94
100
|
};
|
|
95
|
-
|
|
96
|
-
var webhooks = {
|
|
101
|
+
const webhooks = {
|
|
97
102
|
/**
|
|
98
103
|
* POST /terminal-payments/webhooks/getnet/:providerId - Getnet Terminal webhook (inbound). API does not accept query params.
|
|
99
104
|
* @param {Object} opts
|
|
@@ -107,29 +112,30 @@ function terminalPaymentsFactory(_ref) {
|
|
|
107
112
|
* not authenticated), 404 (PAYMENT_NOT_FOUND_FOR_WEBHOOK_EVENT,
|
|
108
113
|
* PAYMENT_METHOD_NOT_FOUND, USER_NOT_FOUND), 409 (CANT_UPDATE_ORDER), 500.
|
|
109
114
|
*/
|
|
110
|
-
getnet
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
115
|
+
getnet({
|
|
116
|
+
data,
|
|
117
|
+
providerId,
|
|
118
|
+
headers = {},
|
|
119
|
+
token,
|
|
120
|
+
jwtToken
|
|
121
|
+
}) {
|
|
122
|
+
const _headers = token && jwtToken ? authorizationHeaders({
|
|
123
|
+
token,
|
|
124
|
+
jwtToken,
|
|
125
|
+
internalAuthTokenProvider,
|
|
126
|
+
headers
|
|
127
|
+
}) : headers;
|
|
120
128
|
return client({
|
|
121
|
-
url:
|
|
129
|
+
url: `/terminal-payments/webhooks/getnet/${providerId}`,
|
|
122
130
|
method: "post",
|
|
123
131
|
headers: _headers,
|
|
124
|
-
data
|
|
132
|
+
data
|
|
125
133
|
});
|
|
126
134
|
}
|
|
127
135
|
};
|
|
128
|
-
|
|
129
136
|
return {
|
|
130
|
-
mit
|
|
131
|
-
webhooks
|
|
137
|
+
mit,
|
|
138
|
+
webhooks
|
|
132
139
|
};
|
|
133
140
|
}
|
|
134
|
-
|
|
135
141
|
module.exports = terminalPaymentsFactory;
|
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
* Factory for Coltrane API docs (btrz-api-coltrane).
|
|
5
3
|
* @param {Object} deps
|
|
6
4
|
* @param {import("axios").AxiosInstance} deps.client
|
|
7
5
|
* @returns {{ get: function }}
|
|
8
6
|
*/
|
|
9
|
-
function docsFactory(
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
function docsFactory({
|
|
8
|
+
client
|
|
9
|
+
}) {
|
|
12
10
|
/**
|
|
13
11
|
* GET /api-docs-v2 - get API documentation.
|
|
14
12
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
@@ -16,10 +14,8 @@ function docsFactory(_ref) {
|
|
|
16
14
|
function get() {
|
|
17
15
|
return client.get("/api-docs-v2", {});
|
|
18
16
|
}
|
|
19
|
-
|
|
20
17
|
return {
|
|
21
|
-
get
|
|
18
|
+
get
|
|
22
19
|
};
|
|
23
20
|
}
|
|
24
|
-
|
|
25
21
|
module.exports = docsFactory;
|
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
* Factory for Coltrane healthcheck API (btrz-api-coltrane) — liveness probe.
|
|
5
3
|
* @param {Object} deps
|
|
6
4
|
* @param {import("axios").AxiosInstance} deps.client
|
|
7
5
|
* @returns {{ get: function }}
|
|
8
6
|
*/
|
|
9
|
-
function healthcheckFactory(
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
function healthcheckFactory({
|
|
8
|
+
client
|
|
9
|
+
}) {
|
|
12
10
|
/**
|
|
13
11
|
* GET /healthcheck — liveness probe. Returns 200 with empty body when the service is running. No authentication required.
|
|
14
12
|
* @param {Object} [opts]
|
|
@@ -16,20 +14,17 @@ function healthcheckFactory(_ref) {
|
|
|
16
14
|
* @returns {Promise<import("axios").AxiosResponse<{ data: {} }>>}
|
|
17
15
|
* @throws {import("axios").AxiosError} 500 Service unhealthy or shutting down
|
|
18
16
|
*/
|
|
19
|
-
function get(
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
function get({
|
|
18
|
+
headers
|
|
19
|
+
} = {}) {
|
|
23
20
|
return client({
|
|
24
21
|
url: "/healthcheck",
|
|
25
22
|
method: "get",
|
|
26
23
|
headers: headers || {}
|
|
27
24
|
});
|
|
28
25
|
}
|
|
29
|
-
|
|
30
26
|
return {
|
|
31
|
-
get
|
|
27
|
+
get
|
|
32
28
|
};
|
|
33
29
|
}
|
|
34
|
-
|
|
35
30
|
module.exports = healthcheckFactory;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/* eslint-disable max-len */
|
|
4
2
|
/**
|
|
5
3
|
* Factory for Coltrane info API (btrz-api-coltrane) — service and dependency status.
|
|
@@ -7,9 +5,9 @@
|
|
|
7
5
|
* @param {import("axios").AxiosInstance} deps.client
|
|
8
6
|
* @returns {{ get: function }}
|
|
9
7
|
*/
|
|
10
|
-
function infoFactory(
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
function infoFactory({
|
|
9
|
+
client
|
|
10
|
+
}) {
|
|
13
11
|
/**
|
|
14
12
|
* GET /info — get Coltrane API service status and dependency health. No authentication required.
|
|
15
13
|
* @param {Object} [opts]
|
|
@@ -17,19 +15,16 @@ function infoFactory(_ref) {
|
|
|
17
15
|
* @returns {Promise<import("axios").AxiosResponse<{ data: { status: number, services: Array<{ name: string, status: number }>, build?: string, instanceId?: string, commit?: string } }>>}
|
|
18
16
|
* @throws {import("axios").AxiosError} 500 Internal server error or dependency check failure
|
|
19
17
|
*/
|
|
20
|
-
function get(
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
18
|
+
function get({
|
|
19
|
+
headers
|
|
20
|
+
} = {}) {
|
|
24
21
|
return client({
|
|
25
22
|
url: "/info",
|
|
26
23
|
headers: headers || {}
|
|
27
24
|
});
|
|
28
25
|
}
|
|
29
|
-
|
|
30
26
|
return {
|
|
31
|
-
get
|
|
27
|
+
get
|
|
32
28
|
};
|
|
33
29
|
}
|
|
34
|
-
|
|
35
30
|
module.exports = infoFactory;
|