btrz-api-client 8.75.0 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +2 -1
- package/eslint.config.mjs +48 -0
- package/lib/client-standalone-min.js +19 -5
- package/lib/client.js +1363 -473
- package/lib/constants.js +1 -4
- package/lib/endpoints/accounts/accounts.js +36 -33
- package/lib/endpoints/accounts/agencies.js +53 -43
- package/lib/endpoints/accounts/agency-types.js +78 -59
- package/lib/endpoints/accounts/application-settings.js +84 -61
- package/lib/endpoints/accounts/application.js +19 -19
- package/lib/endpoints/accounts/applications.js +35 -30
- package/lib/endpoints/accounts/control-classes-settings.js +30 -27
- package/lib/endpoints/accounts/current-shifts.js +20 -22
- package/lib/endpoints/accounts/customers.js +119 -90
- package/lib/endpoints/accounts/docs.js +4 -8
- package/lib/endpoints/accounts/domains.js +46 -38
- package/lib/endpoints/accounts/dynamic-forms.js +176 -130
- package/lib/endpoints/accounts/email-settings.js +79 -61
- package/lib/endpoints/accounts/email-templates.js +126 -92
- package/lib/endpoints/accounts/exchange-rates.js +36 -32
- package/lib/endpoints/accounts/exchange-receipts.js +33 -28
- package/lib/endpoints/accounts/external-customers.js +61 -47
- package/lib/endpoints/accounts/goal-settings.js +32 -29
- package/lib/endpoints/accounts/images.js +59 -50
- package/lib/endpoints/accounts/interline.js +131 -102
- package/lib/endpoints/accounts/journey-prices-settings.js +30 -27
- package/lib/endpoints/accounts/lexicons.js +160 -124
- package/lib/endpoints/accounts/market-pricing-settings.js +30 -27
- package/lib/endpoints/accounts/multiproduct-sales-settings.js +33 -28
- package/lib/endpoints/accounts/network.js +97 -80
- package/lib/endpoints/accounts/operation-settings.js +32 -29
- package/lib/endpoints/accounts/people-lookups.js +94 -72
- package/lib/endpoints/accounts/point-to-point-settings.js +30 -27
- package/lib/endpoints/accounts/print-settings.js +32 -29
- package/lib/endpoints/accounts/print-templates.js +89 -75
- package/lib/endpoints/accounts/printers.js +20 -20
- package/lib/endpoints/accounts/rms-settings.js +30 -27
- package/lib/endpoints/accounts/s3buckets.js +49 -39
- package/lib/endpoints/accounts/salesforce-settings.js +32 -29
- package/lib/endpoints/accounts/shift-settings.js +32 -29
- package/lib/endpoints/accounts/shifts.js +431 -317
- package/lib/endpoints/accounts/sms-templates.js +126 -92
- package/lib/endpoints/accounts/sub-print-templates.js +19 -20
- package/lib/endpoints/accounts/system-model-settings.js +51 -45
- package/lib/endpoints/accounts/ticket-movement-settings.js +30 -27
- package/lib/endpoints/accounts/tokens.js +34 -29
- package/lib/endpoints/accounts/transport-regulation-settings.js +30 -27
- package/lib/endpoints/accounts/travellers.js +82 -66
- package/lib/endpoints/accounts/trusted-machines.js +48 -39
- package/lib/endpoints/accounts/twilio-settings.js +32 -29
- package/lib/endpoints/accounts/users.js +262 -184
- package/lib/endpoints/accounts/verified-emails.js +64 -50
- package/lib/endpoints/accounts/websales-config.js +35 -31
- package/lib/endpoints/bpes/configuration.js +51 -37
- package/lib/endpoints/btrzpay/adyen.js +34 -31
- package/lib/endpoints/btrzpay/cardpointe.js +84 -62
- package/lib/endpoints/btrzpay/customerCards.js +73 -56
- package/lib/endpoints/btrzpay/customers.js +55 -43
- package/lib/endpoints/btrzpay/cybersource3ds.js +59 -44
- package/lib/endpoints/btrzpay/datalogic.js +84 -69
- package/lib/endpoints/btrzpay/docs.js +4 -8
- package/lib/endpoints/btrzpay/oxxo.js +66 -59
- package/lib/endpoints/btrzpay/payment-methods.js +141 -96
- package/lib/endpoints/btrzpay/payments.js +37 -30
- package/lib/endpoints/btrzpay/prismaTerminals.js +203 -160
- package/lib/endpoints/btrzpay/reference-numbers.js +23 -21
- package/lib/endpoints/btrzpay/referenced-payments.js +41 -36
- package/lib/endpoints/btrzpay/square.js +39 -36
- package/lib/endpoints/btrzpay/stripe-terminals.js +36 -31
- package/lib/endpoints/btrzpay/stripe3ds.js +25 -22
- package/lib/endpoints/btrzpay/terminalPayments.js +58 -52
- package/lib/endpoints/coltrane/docs.js +4 -8
- package/lib/endpoints/coltrane/healthcheck.js +7 -12
- package/lib/endpoints/coltrane/info.js +7 -12
- package/lib/endpoints/coltrane/merged-fare-tables.js +22 -22
- package/lib/endpoints/coltrane/paths.js +18 -20
- package/lib/endpoints/endpoints_helpers.js +14 -30
- package/lib/endpoints/gps/scanner-app-location.js +16 -19
- package/lib/endpoints/inventory/amenities.js +65 -50
- package/lib/endpoints/inventory/amenity-groups.js +65 -50
- package/lib/endpoints/inventory/banks.js +78 -59
- package/lib/endpoints/inventory/bare-routes.js +31 -30
- package/lib/endpoints/inventory/brands.js +68 -50
- package/lib/endpoints/inventory/bundle-fares.js +21 -23
- package/lib/endpoints/inventory/bundles.js +34 -30
- package/lib/endpoints/inventory/change-requests.js +109 -86
- package/lib/endpoints/inventory/companies.js +20 -21
- package/lib/endpoints/inventory/control-classes.js +133 -73
- package/lib/endpoints/inventory/countries.js +35 -32
- package/lib/endpoints/inventory/custom-content.js +76 -58
- package/lib/endpoints/inventory/custom-fields.js +82 -60
- package/lib/endpoints/inventory/docs.js +4 -8
- package/lib/endpoints/inventory/document-types.js +96 -69
- package/lib/endpoints/inventory/external-passes.js +34 -30
- package/lib/endpoints/inventory/external-wallets.js +133 -90
- package/lib/endpoints/inventory/fallback-codes.js +66 -49
- package/lib/endpoints/inventory/fare-classes.js +54 -41
- package/lib/endpoints/inventory/fare-type-modifiers.js +78 -59
- package/lib/endpoints/inventory/fares.js +95 -72
- package/lib/endpoints/inventory/fees.js +68 -50
- package/lib/endpoints/inventory/filtered-trips-v2.js +23 -21
- package/lib/endpoints/inventory/filtered-trips.js +50 -39
- package/lib/endpoints/inventory/financing-costs.js +78 -61
- package/lib/endpoints/inventory/garages.js +72 -59
- package/lib/endpoints/inventory/getnet-terminals.js +78 -60
- package/lib/endpoints/inventory/gift-certificate-definitions.js +84 -66
- package/lib/endpoints/inventory/healthcheck.js +4 -8
- package/lib/endpoints/inventory/holidays.js +83 -61
- package/lib/endpoints/inventory/insurances.js +68 -57
- package/lib/endpoints/inventory/insurancesCost.js +24 -24
- package/lib/endpoints/inventory/items.js +86 -64
- package/lib/endpoints/inventory/journey-prices.js +83 -61
- package/lib/endpoints/inventory/labels.js +83 -61
- package/lib/endpoints/inventory/marital-status.js +82 -67
- package/lib/endpoints/inventory/marketplace-modifiers.js +74 -57
- package/lib/endpoints/inventory/mit-terminal-settings.js +78 -59
- package/lib/endpoints/inventory/mit-terminals.js +74 -57
- package/lib/endpoints/inventory/operating-companies.js +126 -91
- package/lib/endpoints/inventory/operation-messages.js +85 -63
- package/lib/endpoints/inventory/operation-reasons.js +86 -67
- package/lib/endpoints/inventory/parcel-zones.js +52 -40
- package/lib/endpoints/inventory/pay-on-accounts.js +22 -24
- package/lib/endpoints/inventory/payment-terminals.js +74 -57
- package/lib/endpoints/inventory/prisma-terminals.js +78 -59
- package/lib/endpoints/inventory/products.js +90 -70
- package/lib/endpoints/inventory/promos.js +138 -95
- package/lib/endpoints/inventory/regions.js +78 -59
- package/lib/endpoints/inventory/routes.js +323 -262
- package/lib/endpoints/inventory/schedule-groups.js +69 -52
- package/lib/endpoints/inventory/schedules.js +171 -143
- package/lib/endpoints/inventory/seatclasses.js +82 -67
- package/lib/endpoints/inventory/seatfees.js +60 -48
- package/lib/endpoints/inventory/seatmaps.js +108 -84
- package/lib/endpoints/inventory/segments-information-tables.js +22 -23
- package/lib/endpoints/inventory/segments-information.js +78 -59
- package/lib/endpoints/inventory/service-numbers.js +64 -50
- package/lib/endpoints/inventory/service-types.js +74 -57
- package/lib/endpoints/inventory/ssrs.js +18 -20
- package/lib/endpoints/inventory/station-classes.js +79 -61
- package/lib/endpoints/inventory/station-groups.js +18 -20
- package/lib/endpoints/inventory/stations-provinces.js +18 -20
- package/lib/endpoints/inventory/stations-zones.js +18 -20
- package/lib/endpoints/inventory/stations.js +61 -47
- package/lib/endpoints/inventory/taxes.js +137 -98
- package/lib/endpoints/inventory/travel-routes.js +64 -50
- package/lib/endpoints/inventory/traveller-card-providers-types.js +19 -19
- package/lib/endpoints/inventory/traveller-card-providers.js +68 -50
- package/lib/endpoints/inventory/traveller-card-types.js +82 -59
- package/lib/endpoints/inventory/trip-ids.js +21 -21
- package/lib/endpoints/inventory/trips.js +48 -41
- package/lib/endpoints/inventory/vehicle-types.js +19 -19
- package/lib/endpoints/inventory/vehicles.js +111 -83
- package/lib/endpoints/inventory/zone-price-overages.js +74 -57
- package/lib/endpoints/inventory/zone-prices.js +74 -57
- package/lib/endpoints/invoices/dlink.js +37 -34
- package/lib/endpoints/invoices/docs.js +4 -8
- package/lib/endpoints/invoices/emails.js +22 -23
- package/lib/endpoints/invoices/gti.js +37 -34
- package/lib/endpoints/invoices/infile.js +37 -34
- package/lib/endpoints/invoices/infileJson.js +37 -34
- package/lib/endpoints/invoices/invoices.js +78 -63
- package/lib/endpoints/invoices/pdfs.js +22 -24
- package/lib/endpoints/invoices/providers.js +82 -67
- package/lib/endpoints/invoices/providersSequences.js +89 -74
- package/lib/endpoints/invoices/system.js +37 -34
- package/lib/endpoints/invoices/tax-ids.js +20 -21
- package/lib/endpoints/loyalty/movements.js +55 -49
- package/lib/endpoints/loyalty/programs.js +50 -41
- package/lib/endpoints/notifications/customers.js +33 -31
- package/lib/endpoints/notifications/email.js +20 -21
- package/lib/endpoints/notifications/external-customers.js +35 -30
- package/lib/endpoints/notifications/manifest-notifications.js +31 -33
- package/lib/endpoints/notifications/notify.js +112 -81
- package/lib/endpoints/notifications/orders-rules-validations.js +22 -22
- package/lib/endpoints/notifications/pdf-data.js +56 -64
- package/lib/endpoints/notifications/pdfs.js +48 -55
- package/lib/endpoints/notifications/printed-tickets.js +31 -27
- package/lib/endpoints/notifications/salesforce.js +19 -19
- package/lib/endpoints/notifications/short-urls.js +38 -33
- package/lib/endpoints/notifications/twilio.js +57 -46
- package/lib/endpoints/operations/accounting_items.js +30 -36
- package/lib/endpoints/operations/applied_insurance.js +25 -20
- package/lib/endpoints/operations/calendar_entries.js +18 -20
- package/lib/endpoints/operations/cancellation_settings.js +33 -28
- package/lib/endpoints/operations/docs.js +5 -9
- package/lib/endpoints/operations/external-bookings.js +35 -31
- package/lib/endpoints/operations/flexpasses.js +22 -22
- package/lib/endpoints/operations/gift-certificates.js +25 -23
- package/lib/endpoints/operations/loans.js +30 -36
- package/lib/endpoints/operations/manifest.js +469 -372
- package/lib/endpoints/operations/manifest_leg_for_tickets.js +23 -23
- package/lib/endpoints/operations/movements.js +21 -22
- package/lib/endpoints/operations/outlook-trips.js +20 -21
- package/lib/endpoints/operations/pago-express.js +55 -39
- package/lib/endpoints/operations/parcels.js +96 -67
- package/lib/endpoints/operations/parcels_manifests.js +102 -81
- package/lib/endpoints/operations/passenger_check_in_info.js +66 -52
- package/lib/endpoints/operations/redemption.js +52 -40
- package/lib/endpoints/operations/rms.js +35 -33
- package/lib/endpoints/operations/scheduled_notifications.js +80 -61
- package/lib/endpoints/operations/segments.js +24 -24
- package/lib/endpoints/operations/sold-items-fulfillment.js +20 -21
- package/lib/endpoints/operations/sold-items.js +35 -30
- package/lib/endpoints/operations/tickets.js +109 -78
- package/lib/endpoints/operations/transaction.js +22 -22
- package/lib/endpoints/operations/transactions.js +178 -135
- package/lib/endpoints/operations/transport_regulations.js +22 -22
- package/lib/endpoints/operations/trip_change_info.js +23 -23
- package/lib/endpoints/operations/vehicle_assignments.js +60 -48
- package/lib/endpoints/operations/vouchers.js +32 -35
- package/lib/endpoints/operations/waitlists.js +62 -47
- package/lib/endpoints/ratality/auth.js +10 -14
- package/lib/endpoints/ratality/clients.js +30 -28
- package/lib/endpoints/ratality/integrations.js +43 -36
- package/lib/endpoints/reports/custom-reports.js +50 -39
- package/lib/endpoints/reports/email.js +20 -19
- package/lib/endpoints/reports/report-types.js +35 -30
- package/lib/endpoints/reports/trip-manifests.js +20 -21
- package/lib/endpoints/sales/bundles.js +18 -20
- package/lib/endpoints/sales/cancellations.js +48 -34
- package/lib/endpoints/sales/cart-promo.js +37 -34
- package/lib/endpoints/sales/cart.js +218 -166
- package/lib/endpoints/sales/check-in-info.js +22 -23
- package/lib/endpoints/sales/custom-fields.js +18 -20
- package/lib/endpoints/sales/docs.js +4 -8
- package/lib/endpoints/sales/flexpasses.js +21 -21
- package/lib/endpoints/sales/gift-certificates.js +20 -22
- package/lib/endpoints/sales/order.js +66 -53
- package/lib/endpoints/sales/parcel-quotes.js +20 -20
- package/lib/endpoints/sales/payment-providers.js +20 -21
- package/lib/endpoints/sales/redeemable-items.js +32 -31
- package/lib/endpoints/sales/sync-entry.js +21 -21
- package/lib/endpoints/sales/voucher.js +19 -20
- package/lib/endpoints/seatmaps/access-ticket.js +19 -19
- package/lib/endpoints/seatmaps/seat.js +21 -21
- package/lib/endpoints/uploads/files.js +26 -24
- package/lib/endpoints/uploads/images.js +26 -24
- package/lib/endpoints/webhooks/events.js +24 -24
- package/lib/endpoints/webhooks/subscriptions.js +80 -60
- package/lib/endpoints/webhooks/undelivered.js +103 -73
- package/lib/endpoints/webhooks/webhooks.js +20 -20
- package/lib/initializedClient.js +3 -5
- package/lib/productionDefaults.js +6 -8
- package/package.json +18 -18
- package/src/client.js +1 -1
- package/src/endpoints/inventory/control-classes.js +27 -0
- package/src/endpoints/operations/transactions.js +1 -1
- package/test/endpoints/inventory/control-classes.js +14 -0
- package/tools/build-standalone.mjs +15 -0
- package/types/endpoints/inventory/control-classes.d.ts +4 -0
- package/.eslintignore +0 -2
- package/.eslintrc.js +0 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
authorizationHeaders = _require.authorizationHeaders;
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("./../endpoints_helpers.js");
|
|
5
4
|
|
|
6
5
|
/**
|
|
7
6
|
* Query params for GET /datalogic/payments (btrz-api-payments). See get-payments-handler getSpec().
|
|
@@ -35,17 +34,14 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
35
34
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
36
35
|
* @returns {{ payments: Object, referenceNumber: Object, authCode: Object }}
|
|
37
36
|
*/
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
43
|
-
|
|
37
|
+
function datalogicFactory({
|
|
38
|
+
client,
|
|
39
|
+
internalAuthTokenProvider
|
|
40
|
+
}) {
|
|
44
41
|
function authProvider(opts) {
|
|
45
42
|
return opts !== undefined && opts !== null ? opts : internalAuthTokenProvider;
|
|
46
43
|
}
|
|
47
|
-
|
|
48
|
-
var payments = {
|
|
44
|
+
const payments = {
|
|
49
45
|
/**
|
|
50
46
|
* GET /datalogic/payments - list Datalogic payments by reference number.
|
|
51
47
|
* @param {Object} opts
|
|
@@ -57,20 +53,24 @@ function datalogicFactory(_ref) {
|
|
|
57
53
|
* @returns {Promise<import("axios").AxiosResponse<{ payments: Array }>>}
|
|
58
54
|
* GetDatalogicPaymentsResponse. Rejects 400, 401, 500.
|
|
59
55
|
*/
|
|
60
|
-
all
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
56
|
+
all({
|
|
57
|
+
token,
|
|
58
|
+
jwtToken,
|
|
59
|
+
headers,
|
|
60
|
+
query,
|
|
61
|
+
internalAuthTokenProvider: optsAuth
|
|
62
|
+
}) {
|
|
67
63
|
return client({
|
|
68
64
|
url: "/datalogic/payments",
|
|
69
65
|
params: query,
|
|
70
|
-
headers: authorizationHeaders({
|
|
66
|
+
headers: authorizationHeaders({
|
|
67
|
+
token,
|
|
68
|
+
jwtToken,
|
|
69
|
+
internalAuthTokenProvider: authProvider(optsAuth),
|
|
70
|
+
headers
|
|
71
|
+
})
|
|
71
72
|
});
|
|
72
73
|
},
|
|
73
|
-
|
|
74
74
|
/**
|
|
75
75
|
* POST /datalogic/payments/:referenceNumber - pay by reference (20 digits).
|
|
76
76
|
* Body: datalogicInfo or flat PostDatalogicPaymentsPayload.
|
|
@@ -84,24 +84,28 @@ function datalogicFactory(_ref) {
|
|
|
84
84
|
* @returns {Promise<import("axios").AxiosResponse<{ payment: Object }>>}
|
|
85
85
|
* PostDatalogicPaymentsResponse. Rejects 400, 401, 500.
|
|
86
86
|
*/
|
|
87
|
-
update
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
87
|
+
update({
|
|
88
|
+
token,
|
|
89
|
+
jwtToken,
|
|
90
|
+
headers,
|
|
91
|
+
query,
|
|
92
|
+
referenceNumber,
|
|
93
|
+
data,
|
|
94
|
+
internalAuthTokenProvider: optsAuth
|
|
95
|
+
}) {
|
|
96
96
|
return client({
|
|
97
|
-
url:
|
|
97
|
+
url: `/datalogic/payments/${referenceNumber}`,
|
|
98
98
|
method: "post",
|
|
99
99
|
params: query,
|
|
100
|
-
data
|
|
101
|
-
headers: authorizationHeaders({
|
|
100
|
+
data,
|
|
101
|
+
headers: authorizationHeaders({
|
|
102
|
+
token,
|
|
103
|
+
jwtToken,
|
|
104
|
+
internalAuthTokenProvider: authProvider(optsAuth),
|
|
105
|
+
headers
|
|
106
|
+
})
|
|
102
107
|
});
|
|
103
108
|
},
|
|
104
|
-
|
|
105
109
|
/**
|
|
106
110
|
* POST /datalogic/reverse/:referenceNumber - reverse by reference (20 digits).
|
|
107
111
|
* Body: datalogicReverseInfo or flat PostDatalogicReversePayload.
|
|
@@ -115,26 +119,30 @@ function datalogicFactory(_ref) {
|
|
|
115
119
|
* @returns {Promise<import("axios").AxiosResponse<{ payment: Object }>>}
|
|
116
120
|
* PostDatalogicPaymentsResponse. Rejects 400, 401, 500.
|
|
117
121
|
*/
|
|
118
|
-
reverse
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
122
|
+
reverse({
|
|
123
|
+
token,
|
|
124
|
+
jwtToken,
|
|
125
|
+
headers,
|
|
126
|
+
query,
|
|
127
|
+
referenceNumber,
|
|
128
|
+
data,
|
|
129
|
+
internalAuthTokenProvider: optsAuth
|
|
130
|
+
}) {
|
|
127
131
|
return client({
|
|
128
|
-
url:
|
|
132
|
+
url: `/datalogic/reverse/${referenceNumber}`,
|
|
129
133
|
method: "post",
|
|
130
134
|
params: query,
|
|
131
|
-
data
|
|
132
|
-
headers: authorizationHeaders({
|
|
135
|
+
data,
|
|
136
|
+
headers: authorizationHeaders({
|
|
137
|
+
token,
|
|
138
|
+
jwtToken,
|
|
139
|
+
internalAuthTokenProvider: authProvider(optsAuth),
|
|
140
|
+
headers
|
|
141
|
+
})
|
|
133
142
|
});
|
|
134
143
|
}
|
|
135
144
|
};
|
|
136
|
-
|
|
137
|
-
var referenceNumber = {
|
|
145
|
+
const referenceNumber = {
|
|
138
146
|
/**
|
|
139
147
|
* GET /datalogic/reference-number - get new Datalogic reference number.
|
|
140
148
|
* @param {Object} opts
|
|
@@ -145,20 +153,24 @@ function datalogicFactory(_ref) {
|
|
|
145
153
|
* @returns {Promise<import("axios").AxiosResponse<{ referenceNumber: string }>>}
|
|
146
154
|
* GetDatalogicReferenceNumberResponse. Rejects 401, 404, 500.
|
|
147
155
|
*/
|
|
148
|
-
get
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
156
|
+
get({
|
|
157
|
+
token,
|
|
158
|
+
jwtToken,
|
|
159
|
+
headers,
|
|
160
|
+
internalAuthTokenProvider: optsAuth
|
|
161
|
+
}) {
|
|
154
162
|
return client({
|
|
155
163
|
url: "/datalogic/reference-number",
|
|
156
|
-
headers: authorizationHeaders({
|
|
164
|
+
headers: authorizationHeaders({
|
|
165
|
+
token,
|
|
166
|
+
jwtToken,
|
|
167
|
+
internalAuthTokenProvider: authProvider(optsAuth),
|
|
168
|
+
headers
|
|
169
|
+
})
|
|
157
170
|
});
|
|
158
171
|
}
|
|
159
172
|
};
|
|
160
|
-
|
|
161
|
-
var authCode = {
|
|
173
|
+
const authCode = {
|
|
162
174
|
/**
|
|
163
175
|
* GET /datalogic/auth-code - get new Datalogic authorization code.
|
|
164
176
|
* @param {Object} opts
|
|
@@ -169,24 +181,27 @@ function datalogicFactory(_ref) {
|
|
|
169
181
|
* @returns {Promise<import("axios").AxiosResponse<{ authCode: string }>>}
|
|
170
182
|
* GetDatalogicAuthCodeResponse. Rejects 401, 404, 500.
|
|
171
183
|
*/
|
|
172
|
-
get
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
184
|
+
get({
|
|
185
|
+
token,
|
|
186
|
+
jwtToken,
|
|
187
|
+
headers,
|
|
188
|
+
internalAuthTokenProvider: optsAuth
|
|
189
|
+
}) {
|
|
178
190
|
return client({
|
|
179
191
|
url: "/datalogic/auth-code",
|
|
180
|
-
headers: authorizationHeaders({
|
|
192
|
+
headers: authorizationHeaders({
|
|
193
|
+
token,
|
|
194
|
+
jwtToken,
|
|
195
|
+
internalAuthTokenProvider: authProvider(optsAuth),
|
|
196
|
+
headers
|
|
197
|
+
})
|
|
181
198
|
});
|
|
182
199
|
}
|
|
183
200
|
};
|
|
184
|
-
|
|
185
201
|
return {
|
|
186
|
-
payments
|
|
187
|
-
referenceNumber
|
|
188
|
-
authCode
|
|
202
|
+
payments,
|
|
203
|
+
referenceNumber,
|
|
204
|
+
authCode
|
|
189
205
|
};
|
|
190
206
|
}
|
|
191
|
-
|
|
192
207
|
module.exports = datalogicFactory;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
1
|
/**
|
|
4
2
|
* Factory for API docs (btrz-api-payments).
|
|
5
3
|
* @param {Object} deps
|
|
@@ -7,9 +5,9 @@
|
|
|
7
5
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
8
6
|
* @returns {{ get: function }}
|
|
9
7
|
*/
|
|
10
|
-
function docsFactory(
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
function docsFactory({
|
|
9
|
+
client
|
|
10
|
+
}) {
|
|
13
11
|
/**
|
|
14
12
|
* GET /api-docs-v2 - get API docs.
|
|
15
13
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
@@ -17,10 +15,8 @@ function docsFactory(_ref) {
|
|
|
17
15
|
function get() {
|
|
18
16
|
return client.get("/api-docs-v2", {});
|
|
19
17
|
}
|
|
20
|
-
|
|
21
18
|
return {
|
|
22
|
-
get
|
|
19
|
+
get
|
|
23
20
|
};
|
|
24
21
|
}
|
|
25
|
-
|
|
26
22
|
module.exports = docsFactory;
|
|
@@ -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 /oxxo/:token/payments (btrz-api-payments). See get-payments-handler getSpec().
|
|
@@ -36,17 +35,14 @@ var _require = require("./../endpoints_helpers.js"),
|
|
|
36
35
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
37
36
|
* @returns {{ token: Object, payments: Object }}
|
|
38
37
|
*/
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
44
|
-
|
|
38
|
+
function oxxoFactory({
|
|
39
|
+
client,
|
|
40
|
+
internalAuthTokenProvider
|
|
41
|
+
}) {
|
|
45
42
|
function authProvider(opts) {
|
|
46
43
|
return opts !== undefined && opts !== null ? opts : internalAuthTokenProvider;
|
|
47
44
|
}
|
|
48
|
-
|
|
49
|
-
var token = {
|
|
45
|
+
const token = {
|
|
50
46
|
/**
|
|
51
47
|
* GET /oxxo/token - get new Oxxo token. No query params.
|
|
52
48
|
* @param {Object} opts
|
|
@@ -56,19 +52,22 @@ function oxxoFactory(_ref) {
|
|
|
56
52
|
* @returns {Promise<import("axios").AxiosResponse<{ token: string }>>}
|
|
57
53
|
* GetOxxoTokenResponse. Rejects with 401, 500.
|
|
58
54
|
*/
|
|
59
|
-
get
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
55
|
+
get({
|
|
56
|
+
jwtToken,
|
|
57
|
+
headers,
|
|
58
|
+
internalAuthTokenProvider: optsAuth
|
|
59
|
+
}) {
|
|
64
60
|
return client({
|
|
65
61
|
url: "/oxxo/token",
|
|
66
|
-
headers: authorizationHeaders({
|
|
62
|
+
headers: authorizationHeaders({
|
|
63
|
+
jwtToken,
|
|
64
|
+
internalAuthTokenProvider: authProvider(optsAuth),
|
|
65
|
+
headers
|
|
66
|
+
})
|
|
67
67
|
});
|
|
68
68
|
}
|
|
69
69
|
};
|
|
70
|
-
|
|
71
|
-
var payments = {
|
|
70
|
+
const payments = {
|
|
72
71
|
/**
|
|
73
72
|
* GET /oxxo/:token/payments - list Oxxo payments by token and reference number.
|
|
74
73
|
* @param {Object} opts
|
|
@@ -80,20 +79,23 @@ function oxxoFactory(_ref) {
|
|
|
80
79
|
* @returns {Promise<import("axios").AxiosResponse<{ payments: Array }>>}
|
|
81
80
|
* GetOxxoPaymentsResponse. Rejects with 400 (ERROR_GETTING_PAYMENT_METHODS, OXXO_PAY_NOT_ENABLED), 401, 500.
|
|
82
81
|
*/
|
|
83
|
-
all
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
82
|
+
all({
|
|
83
|
+
jwtToken,
|
|
84
|
+
headers,
|
|
85
|
+
oxxoToken,
|
|
86
|
+
query,
|
|
87
|
+
internalAuthTokenProvider: optsAuth
|
|
88
|
+
}) {
|
|
90
89
|
return client({
|
|
91
|
-
url:
|
|
90
|
+
url: `/oxxo/${oxxoToken}/payments`,
|
|
92
91
|
params: query,
|
|
93
|
-
headers: authorizationHeaders({
|
|
92
|
+
headers: authorizationHeaders({
|
|
93
|
+
jwtToken,
|
|
94
|
+
internalAuthTokenProvider: authProvider(optsAuth),
|
|
95
|
+
headers
|
|
96
|
+
})
|
|
94
97
|
});
|
|
95
98
|
},
|
|
96
|
-
|
|
97
99
|
/**
|
|
98
100
|
* POST /oxxo/:token/payments/:referenceNumber - pay Oxxo payment (referenceNumber: UUID v4 or 20 digits).
|
|
99
101
|
* @param {Object} opts
|
|
@@ -106,24 +108,27 @@ function oxxoFactory(_ref) {
|
|
|
106
108
|
* @returns {Promise<import("axios").AxiosResponse<{ payment: Object }>>}
|
|
107
109
|
* Rejects with 400 (INVALID_REFERENCE_NUMBER_FORMAT, INVALID_ACCOUNT, OXXO_PAY_NOT_ENABLED), 401, 500.
|
|
108
110
|
*/
|
|
109
|
-
update
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
111
|
+
update({
|
|
112
|
+
jwtToken,
|
|
113
|
+
headers,
|
|
114
|
+
oxxoToken,
|
|
115
|
+
query,
|
|
116
|
+
referenceNumber,
|
|
117
|
+
data,
|
|
118
|
+
internalAuthTokenProvider: optsAuth
|
|
119
|
+
}) {
|
|
118
120
|
return client({
|
|
119
|
-
url:
|
|
121
|
+
url: `/oxxo/${oxxoToken}/payments/${referenceNumber}`,
|
|
120
122
|
method: "post",
|
|
121
123
|
params: query,
|
|
122
|
-
data
|
|
123
|
-
headers: authorizationHeaders({
|
|
124
|
+
data,
|
|
125
|
+
headers: authorizationHeaders({
|
|
126
|
+
jwtToken,
|
|
127
|
+
internalAuthTokenProvider: authProvider(optsAuth),
|
|
128
|
+
headers
|
|
129
|
+
})
|
|
124
130
|
});
|
|
125
131
|
},
|
|
126
|
-
|
|
127
132
|
/**
|
|
128
133
|
* POST /oxxo/:token/reverse/:referenceNumber - reverse Oxxo payment (referenceNumber: UUID v4 or 20 digits).
|
|
129
134
|
* @param {Object} opts
|
|
@@ -136,29 +141,31 @@ function oxxoFactory(_ref) {
|
|
|
136
141
|
* @returns {Promise<import("axios").AxiosResponse<{ payment: Object }>>}
|
|
137
142
|
* Rejects with 400 (INVALID_REFERENCE_NUMBER_FORMAT, INVALID_ACCOUNT, OXXO_PAY_NOT_ENABLED), 401, 500.
|
|
138
143
|
*/
|
|
139
|
-
reverse
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
144
|
+
reverse({
|
|
145
|
+
jwtToken,
|
|
146
|
+
headers,
|
|
147
|
+
query,
|
|
148
|
+
referenceNumber,
|
|
149
|
+
data,
|
|
150
|
+
internalAuthTokenProvider: optsAuth,
|
|
151
|
+
oxxoToken
|
|
152
|
+
}) {
|
|
148
153
|
return client({
|
|
149
|
-
url:
|
|
154
|
+
url: `/oxxo/${oxxoToken}/reverse/${referenceNumber}`,
|
|
150
155
|
method: "post",
|
|
151
156
|
params: query,
|
|
152
|
-
data
|
|
153
|
-
headers: authorizationHeaders({
|
|
157
|
+
data,
|
|
158
|
+
headers: authorizationHeaders({
|
|
159
|
+
jwtToken,
|
|
160
|
+
internalAuthTokenProvider: authProvider(optsAuth),
|
|
161
|
+
headers
|
|
162
|
+
})
|
|
154
163
|
});
|
|
155
164
|
}
|
|
156
165
|
};
|
|
157
|
-
|
|
158
166
|
return {
|
|
159
|
-
token
|
|
160
|
-
payments
|
|
167
|
+
token,
|
|
168
|
+
payments
|
|
161
169
|
};
|
|
162
170
|
}
|
|
163
|
-
|
|
164
171
|
module.exports = oxxoFactory;
|