btrz-api-client 8.75.1 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +112 -85
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +218 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/operations/transactions.js +1 -1
- package/tools/build-standalone.mjs +15 -0
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
authorizationHeaders = _require.authorizationHeaders;
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("../endpoints_helpers.js");
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Factory for Cardpointe terminals API (btrz-api-payments).
|
|
@@ -10,12 +9,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ all: function, remove: function, readCard: Object, ping: Object }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function cardpointeTerminalsFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET /cardpointe-terminals - list Cardpointe terminals. API does not accept query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -24,15 +21,18 @@ function cardpointeTerminalsFactory(_ref) {
|
|
|
24
21
|
* @param {Object} [opts.headers] - Optional headers
|
|
25
22
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
26
23
|
*/
|
|
27
|
-
function all(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
function all({
|
|
25
|
+
token,
|
|
26
|
+
jwtToken,
|
|
27
|
+
headers
|
|
28
|
+
}) {
|
|
32
29
|
return client.get("/cardpointe-terminals", {
|
|
33
30
|
params: {},
|
|
34
31
|
headers: authorizationHeaders({
|
|
35
|
-
token
|
|
32
|
+
token,
|
|
33
|
+
jwtToken,
|
|
34
|
+
internalAuthTokenProvider,
|
|
35
|
+
headers
|
|
36
36
|
})
|
|
37
37
|
});
|
|
38
38
|
}
|
|
@@ -47,21 +47,25 @@ function cardpointeTerminalsFactory(_ref) {
|
|
|
47
47
|
* @param {Object} [opts.headers] - Optional headers
|
|
48
48
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
49
49
|
*/
|
|
50
|
-
function remove(
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
50
|
+
function remove({
|
|
51
|
+
token,
|
|
52
|
+
jwtToken,
|
|
53
|
+
merchantId,
|
|
54
|
+
terminalId,
|
|
55
|
+
headers
|
|
56
|
+
}) {
|
|
57
57
|
return client({
|
|
58
|
-
url:
|
|
58
|
+
url: `/cardpointe-terminals/${merchantId}/${terminalId}`,
|
|
59
59
|
method: "delete",
|
|
60
|
-
headers: authorizationHeaders({
|
|
60
|
+
headers: authorizationHeaders({
|
|
61
|
+
token,
|
|
62
|
+
jwtToken,
|
|
63
|
+
internalAuthTokenProvider,
|
|
64
|
+
headers
|
|
65
|
+
})
|
|
61
66
|
});
|
|
62
67
|
}
|
|
63
|
-
|
|
64
|
-
var readCard = {
|
|
68
|
+
const readCard = {
|
|
65
69
|
/**
|
|
66
70
|
* GET /cardpointe-terminals/read-card/:readCardResultId - get read card result. API does not accept query params.
|
|
67
71
|
* @param {Object} opts
|
|
@@ -71,18 +75,22 @@ function cardpointeTerminalsFactory(_ref) {
|
|
|
71
75
|
* @param {Object} [opts.headers] - Optional headers
|
|
72
76
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
73
77
|
*/
|
|
74
|
-
get
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
return client.get(
|
|
78
|
+
get({
|
|
79
|
+
token,
|
|
80
|
+
jwtToken,
|
|
81
|
+
readCardResultId,
|
|
82
|
+
headers
|
|
83
|
+
}) {
|
|
84
|
+
return client.get(`/cardpointe-terminals/read-card/${readCardResultId}`, {
|
|
81
85
|
params: {},
|
|
82
|
-
headers: authorizationHeaders({
|
|
86
|
+
headers: authorizationHeaders({
|
|
87
|
+
token,
|
|
88
|
+
jwtToken,
|
|
89
|
+
internalAuthTokenProvider,
|
|
90
|
+
headers
|
|
91
|
+
})
|
|
83
92
|
});
|
|
84
93
|
},
|
|
85
|
-
|
|
86
94
|
/**
|
|
87
95
|
* POST /cardpointe-terminals/read-card - start read card session. API accepts optional query providerId.
|
|
88
96
|
* @param {Object} opts
|
|
@@ -94,24 +102,32 @@ function cardpointeTerminalsFactory(_ref) {
|
|
|
94
102
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
95
103
|
*/
|
|
96
104
|
// eslint-disable-next-line no-shadow
|
|
97
|
-
create
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
105
|
+
create({
|
|
106
|
+
token,
|
|
107
|
+
jwtToken,
|
|
108
|
+
readCard,
|
|
109
|
+
providerId,
|
|
110
|
+
headers
|
|
111
|
+
}) {
|
|
104
112
|
return client({
|
|
105
113
|
url: "/cardpointe-terminals/read-card",
|
|
106
114
|
method: "post",
|
|
107
|
-
params: providerId != null ? {
|
|
108
|
-
|
|
109
|
-
|
|
115
|
+
params: providerId != null ? {
|
|
116
|
+
providerId
|
|
117
|
+
} : {},
|
|
118
|
+
headers: authorizationHeaders({
|
|
119
|
+
token,
|
|
120
|
+
jwtToken,
|
|
121
|
+
internalAuthTokenProvider,
|
|
122
|
+
headers
|
|
123
|
+
}),
|
|
124
|
+
data: {
|
|
125
|
+
readCard
|
|
126
|
+
}
|
|
110
127
|
});
|
|
111
128
|
}
|
|
112
129
|
};
|
|
113
|
-
|
|
114
|
-
var ping = {
|
|
130
|
+
const ping = {
|
|
115
131
|
/**
|
|
116
132
|
* POST /cardpointe-terminals/ping - create ping. API does not accept query params.
|
|
117
133
|
* @param {Object} opts
|
|
@@ -122,28 +138,34 @@ function cardpointeTerminalsFactory(_ref) {
|
|
|
122
138
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
123
139
|
*/
|
|
124
140
|
// eslint-disable-next-line no-shadow
|
|
125
|
-
create
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
141
|
+
create({
|
|
142
|
+
token,
|
|
143
|
+
jwtToken,
|
|
144
|
+
ping,
|
|
145
|
+
headers
|
|
146
|
+
}) {
|
|
131
147
|
return client({
|
|
132
148
|
url: "/cardpointe-terminals/ping",
|
|
133
149
|
method: "post",
|
|
134
|
-
headers: authorizationHeaders({
|
|
135
|
-
|
|
150
|
+
headers: authorizationHeaders({
|
|
151
|
+
token,
|
|
152
|
+
jwtToken,
|
|
153
|
+
internalAuthTokenProvider,
|
|
154
|
+
headers
|
|
155
|
+
}),
|
|
156
|
+
data: {
|
|
157
|
+
ping
|
|
158
|
+
}
|
|
136
159
|
});
|
|
137
160
|
}
|
|
138
161
|
};
|
|
139
|
-
|
|
140
162
|
return {
|
|
141
|
-
all
|
|
142
|
-
remove
|
|
143
|
-
readCard
|
|
144
|
-
ping
|
|
163
|
+
all,
|
|
164
|
+
remove,
|
|
165
|
+
readCard,
|
|
166
|
+
ping
|
|
145
167
|
};
|
|
146
168
|
}
|
|
147
169
|
module.exports = {
|
|
148
|
-
cardpointeTerminalsFactory
|
|
170
|
+
cardpointeTerminalsFactory
|
|
149
171
|
};
|
|
@@ -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 customer cards API (btrz-api-payments).
|
|
@@ -10,12 +9,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ get: function, all: function, create: function, remove: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function customerCardsFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET .../cards/:customerCardId - get one card by id. No query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -27,17 +24,22 @@ function customerCardsFactory(_ref) {
|
|
|
27
24
|
* @param {Object} [opts.headers] - Optional headers
|
|
28
25
|
* @returns {Promise<import("axios").AxiosResponse<{ customerCard: Object }>>}
|
|
29
26
|
*/
|
|
30
|
-
function get(
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
return client.get(
|
|
27
|
+
function get({
|
|
28
|
+
token,
|
|
29
|
+
jwtToken,
|
|
30
|
+
paymentMethodId,
|
|
31
|
+
customerId,
|
|
32
|
+
customerCardId,
|
|
33
|
+
headers
|
|
34
|
+
}) {
|
|
35
|
+
return client.get(`/payment-methods/${paymentMethodId}/customers/${customerId}/cards/${customerCardId}`, {
|
|
39
36
|
params: {},
|
|
40
|
-
headers: authorizationHeaders({
|
|
37
|
+
headers: authorizationHeaders({
|
|
38
|
+
token,
|
|
39
|
+
jwtToken,
|
|
40
|
+
internalAuthTokenProvider,
|
|
41
|
+
headers
|
|
42
|
+
})
|
|
41
43
|
});
|
|
42
44
|
}
|
|
43
45
|
|
|
@@ -51,16 +53,21 @@ function customerCardsFactory(_ref) {
|
|
|
51
53
|
* @param {Object} [opts.headers] - Optional headers
|
|
52
54
|
* @returns {Promise<import("axios").AxiosResponse<{ customerCards: Array<Object> }>>}
|
|
53
55
|
*/
|
|
54
|
-
function all(
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
return client.get(
|
|
56
|
+
function all({
|
|
57
|
+
token,
|
|
58
|
+
jwtToken,
|
|
59
|
+
paymentMethodId,
|
|
60
|
+
customerId,
|
|
61
|
+
headers
|
|
62
|
+
}) {
|
|
63
|
+
return client.get(`/payment-methods/${paymentMethodId}/customers/${customerId}/cards`, {
|
|
62
64
|
params: {},
|
|
63
|
-
headers: authorizationHeaders({
|
|
65
|
+
headers: authorizationHeaders({
|
|
66
|
+
token,
|
|
67
|
+
jwtToken,
|
|
68
|
+
internalAuthTokenProvider,
|
|
69
|
+
headers
|
|
70
|
+
})
|
|
64
71
|
});
|
|
65
72
|
}
|
|
66
73
|
|
|
@@ -75,19 +82,26 @@ function customerCardsFactory(_ref) {
|
|
|
75
82
|
* @param {Object} [opts.headers] - Optional headers
|
|
76
83
|
* @returns {Promise<import("axios").AxiosResponse<{ customerCard: Object }>>}
|
|
77
84
|
*/
|
|
78
|
-
function create(
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
85
|
+
function create({
|
|
86
|
+
token,
|
|
87
|
+
jwtToken,
|
|
88
|
+
paymentMethodId,
|
|
89
|
+
customerId,
|
|
90
|
+
customerCard,
|
|
91
|
+
headers
|
|
92
|
+
}) {
|
|
86
93
|
return client({
|
|
87
|
-
url:
|
|
94
|
+
url: `/payment-methods/${paymentMethodId}/customers/${customerId}/cards`,
|
|
88
95
|
method: "post",
|
|
89
|
-
headers: authorizationHeaders({
|
|
90
|
-
|
|
96
|
+
headers: authorizationHeaders({
|
|
97
|
+
token,
|
|
98
|
+
jwtToken,
|
|
99
|
+
internalAuthTokenProvider,
|
|
100
|
+
headers
|
|
101
|
+
}),
|
|
102
|
+
data: {
|
|
103
|
+
customerCard
|
|
104
|
+
}
|
|
91
105
|
});
|
|
92
106
|
}
|
|
93
107
|
|
|
@@ -102,27 +116,30 @@ function customerCardsFactory(_ref) {
|
|
|
102
116
|
* @param {Object} [opts.headers] - Optional headers
|
|
103
117
|
* @returns {Promise<import("axios").AxiosResponse<{ success: boolean }>>}
|
|
104
118
|
*/
|
|
105
|
-
function remove(
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
119
|
+
function remove({
|
|
120
|
+
token,
|
|
121
|
+
jwtToken,
|
|
122
|
+
paymentMethodId,
|
|
123
|
+
customerId,
|
|
124
|
+
customerCardId,
|
|
125
|
+
headers
|
|
126
|
+
}) {
|
|
113
127
|
return client({
|
|
114
|
-
url:
|
|
128
|
+
url: `/payment-methods/${paymentMethodId}/customers/${customerId}/cards/${customerCardId}`,
|
|
115
129
|
method: "delete",
|
|
116
|
-
headers: authorizationHeaders({
|
|
130
|
+
headers: authorizationHeaders({
|
|
131
|
+
token,
|
|
132
|
+
jwtToken,
|
|
133
|
+
internalAuthTokenProvider,
|
|
134
|
+
headers
|
|
135
|
+
})
|
|
117
136
|
});
|
|
118
137
|
}
|
|
119
|
-
|
|
120
138
|
return {
|
|
121
|
-
remove
|
|
122
|
-
create
|
|
123
|
-
get
|
|
124
|
-
all
|
|
139
|
+
remove,
|
|
140
|
+
create,
|
|
141
|
+
get,
|
|
142
|
+
all
|
|
125
143
|
};
|
|
126
144
|
}
|
|
127
|
-
|
|
128
145
|
module.exports = customerCardsFactory;
|
|
@@ -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 payment-method customers API (btrz-api-payments). Path: payment-methods/{id}/customers.
|
|
@@ -10,12 +9,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
10
9
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
11
10
|
* @returns {{ get: function, create: function, remove: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function customersFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* GET .../customers/:customerId - get customer. No query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -26,16 +23,21 @@ function customersFactory(_ref) {
|
|
|
26
23
|
* @param {Object} [opts.headers] - Optional headers
|
|
27
24
|
* @returns {Promise<import("axios").AxiosResponse<{ customer: Object }>>}
|
|
28
25
|
*/
|
|
29
|
-
function get(
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
return client.get(
|
|
26
|
+
function get({
|
|
27
|
+
token,
|
|
28
|
+
jwtToken,
|
|
29
|
+
paymentMethodId,
|
|
30
|
+
customerId,
|
|
31
|
+
headers
|
|
32
|
+
}) {
|
|
33
|
+
return client.get(`/payment-methods/${paymentMethodId}/customers/${customerId}`, {
|
|
37
34
|
params: {},
|
|
38
|
-
headers: authorizationHeaders({
|
|
35
|
+
headers: authorizationHeaders({
|
|
36
|
+
token,
|
|
37
|
+
jwtToken,
|
|
38
|
+
internalAuthTokenProvider,
|
|
39
|
+
headers
|
|
40
|
+
})
|
|
39
41
|
});
|
|
40
42
|
}
|
|
41
43
|
|
|
@@ -49,18 +51,25 @@ function customersFactory(_ref) {
|
|
|
49
51
|
* @param {Object} [opts.headers] - Optional headers
|
|
50
52
|
* @returns {Promise<import("axios").AxiosResponse<{ customer: Object }>>}
|
|
51
53
|
*/
|
|
52
|
-
function create(
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
54
|
+
function create({
|
|
55
|
+
token,
|
|
56
|
+
jwtToken,
|
|
57
|
+
paymentMethodId,
|
|
58
|
+
customer,
|
|
59
|
+
headers
|
|
60
|
+
}) {
|
|
59
61
|
return client({
|
|
60
|
-
url:
|
|
62
|
+
url: `/payment-methods/${paymentMethodId}/customers`,
|
|
61
63
|
method: "post",
|
|
62
|
-
headers: authorizationHeaders({
|
|
63
|
-
|
|
64
|
+
headers: authorizationHeaders({
|
|
65
|
+
token,
|
|
66
|
+
jwtToken,
|
|
67
|
+
internalAuthTokenProvider,
|
|
68
|
+
headers
|
|
69
|
+
}),
|
|
70
|
+
data: {
|
|
71
|
+
customer
|
|
72
|
+
}
|
|
64
73
|
});
|
|
65
74
|
}
|
|
66
75
|
|
|
@@ -74,25 +83,28 @@ function customersFactory(_ref) {
|
|
|
74
83
|
* @param {Object} [opts.headers] - Optional headers
|
|
75
84
|
* @returns {Promise<import("axios").AxiosResponse<{ success: boolean }>>}
|
|
76
85
|
*/
|
|
77
|
-
function remove(
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
86
|
+
function remove({
|
|
87
|
+
token,
|
|
88
|
+
jwtToken,
|
|
89
|
+
paymentMethodId,
|
|
90
|
+
customerId,
|
|
91
|
+
headers
|
|
92
|
+
}) {
|
|
84
93
|
return client({
|
|
85
|
-
url:
|
|
94
|
+
url: `/payment-methods/${paymentMethodId}/customers/${customerId}`,
|
|
86
95
|
method: "delete",
|
|
87
|
-
headers: authorizationHeaders({
|
|
96
|
+
headers: authorizationHeaders({
|
|
97
|
+
token,
|
|
98
|
+
jwtToken,
|
|
99
|
+
internalAuthTokenProvider,
|
|
100
|
+
headers
|
|
101
|
+
})
|
|
88
102
|
});
|
|
89
103
|
}
|
|
90
|
-
|
|
91
104
|
return {
|
|
92
|
-
remove
|
|
93
|
-
create
|
|
94
|
-
get
|
|
105
|
+
remove,
|
|
106
|
+
create,
|
|
107
|
+
get
|
|
95
108
|
};
|
|
96
109
|
}
|
|
97
|
-
|
|
98
110
|
module.exports = customersFactory;
|
|
@@ -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 /cbs-token (btrz-api-payments). See getSpec() in get-token-handler.
|
|
@@ -44,12 +43,10 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
44
43
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
45
44
|
* @returns {{ getToken: function, evaluateRisk: function, payerAuthenticationEnrollment: function, validatePayerAuthenticationEnrollment: function }}
|
|
46
45
|
*/
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
52
|
-
|
|
46
|
+
function cybersource3dsFactory({
|
|
47
|
+
client,
|
|
48
|
+
internalAuthTokenProvider
|
|
49
|
+
}) {
|
|
53
50
|
/**
|
|
54
51
|
* GET /cbs-token - returns JWT to use with Cardinal (3DS).
|
|
55
52
|
* @param {Object} opts
|
|
@@ -59,15 +56,20 @@ function cybersource3dsFactory(_ref) {
|
|
|
59
56
|
* @param {Object} [opts.headers] - Optional request headers
|
|
60
57
|
* @returns {Promise<import("axios").AxiosResponse<{ token: string }>>} ThreeDSTokenResponse. Rejects with 400 (WRONG_DATA, INVALID_TRANSACTION_ID, PROVIDER_NOT_FOUND, PAYMENT_METHOD_NOT_FOUND), 401, 500.
|
|
61
58
|
*/
|
|
62
|
-
function getToken(
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
59
|
+
function getToken({
|
|
60
|
+
token,
|
|
61
|
+
jwtToken,
|
|
62
|
+
query,
|
|
63
|
+
headers
|
|
64
|
+
}) {
|
|
68
65
|
return client.get("/cbs-token", {
|
|
69
66
|
params: query,
|
|
70
|
-
headers: authorizationHeaders({
|
|
67
|
+
headers: authorizationHeaders({
|
|
68
|
+
token,
|
|
69
|
+
jwtToken,
|
|
70
|
+
internalAuthTokenProvider,
|
|
71
|
+
headers
|
|
72
|
+
})
|
|
71
73
|
});
|
|
72
74
|
}
|
|
73
75
|
|
|
@@ -80,14 +82,19 @@ function cybersource3dsFactory(_ref) {
|
|
|
80
82
|
* @param {Object} [opts.headers] - Optional request headers
|
|
81
83
|
* @returns {Promise<import("axios").AxiosResponse<RiskEvaluationResponse>>} RiskEvaluationResponse. Rejects with 400 (EVAL_RISK_*), 401, 409 (CYBERSOURCE_AUTH_FAILED), 500.
|
|
82
84
|
*/
|
|
83
|
-
function evaluateRisk(
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
85
|
+
function evaluateRisk({
|
|
86
|
+
token,
|
|
87
|
+
jwtToken,
|
|
88
|
+
riskEvaluation,
|
|
89
|
+
headers
|
|
90
|
+
}) {
|
|
89
91
|
return client.post("/cbs-evaluate-risk", riskEvaluation, {
|
|
90
|
-
headers: authorizationHeaders({
|
|
92
|
+
headers: authorizationHeaders({
|
|
93
|
+
token,
|
|
94
|
+
jwtToken,
|
|
95
|
+
internalAuthTokenProvider,
|
|
96
|
+
headers
|
|
97
|
+
})
|
|
91
98
|
});
|
|
92
99
|
}
|
|
93
100
|
|
|
@@ -100,14 +107,19 @@ function cybersource3dsFactory(_ref) {
|
|
|
100
107
|
* @param {Object} [opts.headers] - Optional request headers
|
|
101
108
|
* @returns {Promise<import("axios").AxiosResponse<PAEnrollmentResponse>>} PAEnrollmentResponse. Rejects with 400 (PAENROLL_*, PROVIDER_NOT_FOUND, PAYMENT_METHOD_NOT_FOUND), 401, 500.
|
|
102
109
|
*/
|
|
103
|
-
function payerAuthenticationEnrollment(
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
110
|
+
function payerAuthenticationEnrollment({
|
|
111
|
+
token,
|
|
112
|
+
jwtToken,
|
|
113
|
+
body,
|
|
114
|
+
headers
|
|
115
|
+
}) {
|
|
109
116
|
return client.post("/cbs-pa-enrollment", body, {
|
|
110
|
-
headers: authorizationHeaders({
|
|
117
|
+
headers: authorizationHeaders({
|
|
118
|
+
token,
|
|
119
|
+
jwtToken,
|
|
120
|
+
internalAuthTokenProvider,
|
|
121
|
+
headers
|
|
122
|
+
})
|
|
111
123
|
});
|
|
112
124
|
}
|
|
113
125
|
|
|
@@ -120,23 +132,26 @@ function cybersource3dsFactory(_ref) {
|
|
|
120
132
|
* @param {Object} [opts.headers] - Optional request headers
|
|
121
133
|
* @returns {Promise<import("axios").AxiosResponse<ValidatePAEnrollmentResponse>>} ValidatePAEnrollmentResponse. Rejects with 400 (VALIDATE_PAENROLL_*), 401, 500.
|
|
122
134
|
*/
|
|
123
|
-
function validatePayerAuthenticationEnrollment(
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
135
|
+
function validatePayerAuthenticationEnrollment({
|
|
136
|
+
token,
|
|
137
|
+
jwtToken,
|
|
138
|
+
body,
|
|
139
|
+
headers
|
|
140
|
+
}) {
|
|
129
141
|
return client.post("/cbs-validate-pa-enrollment", body, {
|
|
130
|
-
headers: authorizationHeaders({
|
|
142
|
+
headers: authorizationHeaders({
|
|
143
|
+
token,
|
|
144
|
+
jwtToken,
|
|
145
|
+
internalAuthTokenProvider,
|
|
146
|
+
headers
|
|
147
|
+
})
|
|
131
148
|
});
|
|
132
149
|
}
|
|
133
|
-
|
|
134
150
|
return {
|
|
135
|
-
getToken
|
|
136
|
-
evaluateRisk
|
|
137
|
-
payerAuthenticationEnrollment
|
|
138
|
-
validatePayerAuthenticationEnrollment
|
|
151
|
+
getToken,
|
|
152
|
+
evaluateRisk,
|
|
153
|
+
payerAuthenticationEnrollment,
|
|
154
|
+
validatePayerAuthenticationEnrollment
|
|
139
155
|
};
|
|
140
156
|
}
|
|
141
|
-
|
|
142
157
|
module.exports = cybersource3dsFactory;
|