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 params for Prisma terminals endpoints (btrz-api-payments).
|
|
@@ -18,13 +17,11 @@ var _require = require("../endpoints_helpers.js"),
|
|
|
18
17
|
* @param {{ getToken: function(): string }} [deps.internalAuthTokenProvider]
|
|
19
18
|
* @returns {{ payments: Object, settlements: Object }}
|
|
20
19
|
*/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
var reversals = {
|
|
20
|
+
function prismaTerminalsFactory({
|
|
21
|
+
client,
|
|
22
|
+
internalAuthTokenProvider
|
|
23
|
+
}) {
|
|
24
|
+
const reversals = {
|
|
28
25
|
/**
|
|
29
26
|
* GET /prisma-terminals/reversals/:id - get reversal by id.
|
|
30
27
|
* @param {Object} opts
|
|
@@ -35,20 +32,23 @@ function prismaTerminalsFactory(_ref) {
|
|
|
35
32
|
* @param {Object} [opts.headers] - Optional headers
|
|
36
33
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
37
34
|
*/
|
|
38
|
-
get
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
return client.get("/prisma-terminals/reversals/" + id, {
|
|
35
|
+
get({
|
|
36
|
+
token,
|
|
37
|
+
jwtToken,
|
|
38
|
+
id,
|
|
39
|
+
query = {},
|
|
40
|
+
headers
|
|
41
|
+
}) {
|
|
42
|
+
return client.get(`/prisma-terminals/reversals/${id}`, {
|
|
47
43
|
params: query,
|
|
48
|
-
headers: authorizationHeaders({
|
|
44
|
+
headers: authorizationHeaders({
|
|
45
|
+
token,
|
|
46
|
+
jwtToken,
|
|
47
|
+
internalAuthTokenProvider,
|
|
48
|
+
headers
|
|
49
|
+
})
|
|
49
50
|
});
|
|
50
51
|
},
|
|
51
|
-
|
|
52
52
|
/**
|
|
53
53
|
* POST /prisma-terminals/payments/:id/reversals - create reversal.
|
|
54
54
|
* @param {Object} opts
|
|
@@ -60,24 +60,29 @@ function prismaTerminalsFactory(_ref) {
|
|
|
60
60
|
* @param {Object} [opts.headers] - Optional headers
|
|
61
61
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
62
62
|
*/
|
|
63
|
-
create
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
63
|
+
create({
|
|
64
|
+
token,
|
|
65
|
+
jwtToken,
|
|
66
|
+
id,
|
|
67
|
+
prismaReversal,
|
|
68
|
+
query = {},
|
|
69
|
+
headers
|
|
70
|
+
}) {
|
|
72
71
|
return client({
|
|
73
|
-
url:
|
|
72
|
+
url: `/prisma-terminals/payments/${id}/reversals`,
|
|
74
73
|
method: "post",
|
|
75
|
-
headers: authorizationHeaders({
|
|
74
|
+
headers: authorizationHeaders({
|
|
75
|
+
token,
|
|
76
|
+
jwtToken,
|
|
77
|
+
internalAuthTokenProvider,
|
|
78
|
+
headers
|
|
79
|
+
}),
|
|
76
80
|
params: query,
|
|
77
|
-
data: {
|
|
81
|
+
data: {
|
|
82
|
+
prismaReversal
|
|
83
|
+
}
|
|
78
84
|
});
|
|
79
85
|
},
|
|
80
|
-
|
|
81
86
|
/**
|
|
82
87
|
* DELETE /prisma-terminals/reversals/:id - delete reversal.
|
|
83
88
|
* @param {Object} opts
|
|
@@ -88,24 +93,27 @@ function prismaTerminalsFactory(_ref) {
|
|
|
88
93
|
* @param {Object} [opts.headers] - Optional headers
|
|
89
94
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
90
95
|
*/
|
|
91
|
-
delete
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
96
|
+
delete({
|
|
97
|
+
token,
|
|
98
|
+
jwtToken,
|
|
99
|
+
id,
|
|
100
|
+
query = {},
|
|
101
|
+
headers
|
|
102
|
+
}) {
|
|
99
103
|
return client({
|
|
100
|
-
url:
|
|
104
|
+
url: `/prisma-terminals/reversals/${id}`,
|
|
101
105
|
method: "delete",
|
|
102
|
-
headers: authorizationHeaders({
|
|
106
|
+
headers: authorizationHeaders({
|
|
107
|
+
token,
|
|
108
|
+
jwtToken,
|
|
109
|
+
internalAuthTokenProvider,
|
|
110
|
+
headers
|
|
111
|
+
}),
|
|
103
112
|
params: query
|
|
104
113
|
});
|
|
105
114
|
}
|
|
106
115
|
};
|
|
107
|
-
|
|
108
|
-
var refunds = {
|
|
116
|
+
const refunds = {
|
|
109
117
|
/**
|
|
110
118
|
* GET /prisma-terminals/refunds/:id - get refund by id.
|
|
111
119
|
* @param {Object} opts
|
|
@@ -116,20 +124,23 @@ function prismaTerminalsFactory(_ref) {
|
|
|
116
124
|
* @param {Object} [opts.headers] - Optional headers
|
|
117
125
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
118
126
|
*/
|
|
119
|
-
get
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
return client.get("/prisma-terminals/refunds/" + id, {
|
|
127
|
+
get({
|
|
128
|
+
token,
|
|
129
|
+
jwtToken,
|
|
130
|
+
id,
|
|
131
|
+
query = {},
|
|
132
|
+
headers
|
|
133
|
+
}) {
|
|
134
|
+
return client.get(`/prisma-terminals/refunds/${id}`, {
|
|
128
135
|
params: query,
|
|
129
|
-
headers: authorizationHeaders({
|
|
136
|
+
headers: authorizationHeaders({
|
|
137
|
+
token,
|
|
138
|
+
jwtToken,
|
|
139
|
+
internalAuthTokenProvider,
|
|
140
|
+
headers
|
|
141
|
+
})
|
|
130
142
|
});
|
|
131
143
|
},
|
|
132
|
-
|
|
133
144
|
/**
|
|
134
145
|
* POST /prisma-terminals/payments/:id/refunds - create refund.
|
|
135
146
|
* @param {Object} opts
|
|
@@ -141,24 +152,29 @@ function prismaTerminalsFactory(_ref) {
|
|
|
141
152
|
* @param {Object} [opts.headers] - Optional headers
|
|
142
153
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
143
154
|
*/
|
|
144
|
-
create
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
155
|
+
create({
|
|
156
|
+
token,
|
|
157
|
+
jwtToken,
|
|
158
|
+
id,
|
|
159
|
+
prismaRefund,
|
|
160
|
+
query = {},
|
|
161
|
+
headers
|
|
162
|
+
}) {
|
|
153
163
|
return client({
|
|
154
|
-
url:
|
|
164
|
+
url: `/prisma-terminals/payments/${id}/refunds`,
|
|
155
165
|
method: "post",
|
|
156
|
-
headers: authorizationHeaders({
|
|
166
|
+
headers: authorizationHeaders({
|
|
167
|
+
token,
|
|
168
|
+
jwtToken,
|
|
169
|
+
internalAuthTokenProvider,
|
|
170
|
+
headers
|
|
171
|
+
}),
|
|
157
172
|
params: query,
|
|
158
|
-
data: {
|
|
173
|
+
data: {
|
|
174
|
+
prismaRefund
|
|
175
|
+
}
|
|
159
176
|
});
|
|
160
177
|
},
|
|
161
|
-
|
|
162
178
|
/**
|
|
163
179
|
* DELETE /prisma-terminals/refunds/:id - delete refund.
|
|
164
180
|
* @param {Object} opts
|
|
@@ -169,22 +185,25 @@ function prismaTerminalsFactory(_ref) {
|
|
|
169
185
|
* @param {Object} [opts.headers] - Optional headers
|
|
170
186
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
171
187
|
*/
|
|
172
|
-
delete
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
188
|
+
delete({
|
|
189
|
+
token,
|
|
190
|
+
jwtToken,
|
|
191
|
+
id,
|
|
192
|
+
query = {},
|
|
193
|
+
headers
|
|
194
|
+
}) {
|
|
180
195
|
return client({
|
|
181
|
-
url:
|
|
196
|
+
url: `/prisma-terminals/refunds/${id}`,
|
|
182
197
|
method: "delete",
|
|
183
|
-
headers: authorizationHeaders({
|
|
198
|
+
headers: authorizationHeaders({
|
|
199
|
+
token,
|
|
200
|
+
jwtToken,
|
|
201
|
+
internalAuthTokenProvider,
|
|
202
|
+
headers
|
|
203
|
+
}),
|
|
184
204
|
params: query
|
|
185
205
|
});
|
|
186
206
|
},
|
|
187
|
-
|
|
188
207
|
/**
|
|
189
208
|
* PUT /prisma-terminals/refunds/:id - update refund.
|
|
190
209
|
* @param {Object} opts
|
|
@@ -196,26 +215,31 @@ function prismaTerminalsFactory(_ref) {
|
|
|
196
215
|
* @param {Object} [opts.headers] - Optional headers
|
|
197
216
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
198
217
|
*/
|
|
199
|
-
update
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
218
|
+
update({
|
|
219
|
+
token,
|
|
220
|
+
jwtToken,
|
|
221
|
+
id,
|
|
222
|
+
prismaRefund,
|
|
223
|
+
query = {},
|
|
224
|
+
headers
|
|
225
|
+
}) {
|
|
208
226
|
return client({
|
|
209
|
-
url:
|
|
227
|
+
url: `/prisma-terminals/refunds/${id}`,
|
|
210
228
|
method: "put",
|
|
211
|
-
headers: authorizationHeaders({
|
|
229
|
+
headers: authorizationHeaders({
|
|
230
|
+
token,
|
|
231
|
+
jwtToken,
|
|
232
|
+
internalAuthTokenProvider,
|
|
233
|
+
headers
|
|
234
|
+
}),
|
|
212
235
|
params: query,
|
|
213
|
-
data: {
|
|
236
|
+
data: {
|
|
237
|
+
prismaRefund
|
|
238
|
+
}
|
|
214
239
|
});
|
|
215
240
|
}
|
|
216
241
|
};
|
|
217
|
-
|
|
218
|
-
var payments = {
|
|
242
|
+
const payments = {
|
|
219
243
|
/**
|
|
220
244
|
* GET /prisma-terminals/payments/:id - get payment by id.
|
|
221
245
|
* @param {Object} opts
|
|
@@ -226,20 +250,23 @@ function prismaTerminalsFactory(_ref) {
|
|
|
226
250
|
* @param {Object} [opts.headers] - Optional headers
|
|
227
251
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
228
252
|
*/
|
|
229
|
-
get
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
return client.get("/prisma-terminals/payments/" + id, {
|
|
253
|
+
get({
|
|
254
|
+
token,
|
|
255
|
+
jwtToken,
|
|
256
|
+
id,
|
|
257
|
+
query = {},
|
|
258
|
+
headers
|
|
259
|
+
}) {
|
|
260
|
+
return client.get(`/prisma-terminals/payments/${id}`, {
|
|
238
261
|
params: query,
|
|
239
|
-
headers: authorizationHeaders({
|
|
262
|
+
headers: authorizationHeaders({
|
|
263
|
+
token,
|
|
264
|
+
jwtToken,
|
|
265
|
+
internalAuthTokenProvider,
|
|
266
|
+
headers
|
|
267
|
+
})
|
|
240
268
|
});
|
|
241
269
|
},
|
|
242
|
-
|
|
243
270
|
/**
|
|
244
271
|
* POST /prisma-terminals/payments - create payment.
|
|
245
272
|
* @param {Object} opts
|
|
@@ -250,23 +277,28 @@ function prismaTerminalsFactory(_ref) {
|
|
|
250
277
|
* @param {Object} [opts.headers] - Optional headers
|
|
251
278
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
252
279
|
*/
|
|
253
|
-
create
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
280
|
+
create({
|
|
281
|
+
token,
|
|
282
|
+
jwtToken,
|
|
283
|
+
prismaPayment,
|
|
284
|
+
query = {},
|
|
285
|
+
headers
|
|
286
|
+
}) {
|
|
261
287
|
return client({
|
|
262
288
|
url: "/prisma-terminals/payments",
|
|
263
289
|
method: "post",
|
|
264
|
-
headers: authorizationHeaders({
|
|
290
|
+
headers: authorizationHeaders({
|
|
291
|
+
token,
|
|
292
|
+
jwtToken,
|
|
293
|
+
internalAuthTokenProvider,
|
|
294
|
+
headers
|
|
295
|
+
}),
|
|
265
296
|
params: query,
|
|
266
|
-
data: {
|
|
297
|
+
data: {
|
|
298
|
+
prismaPayment
|
|
299
|
+
}
|
|
267
300
|
});
|
|
268
301
|
},
|
|
269
|
-
|
|
270
302
|
/**
|
|
271
303
|
* DELETE /prisma-terminals/payments/:id - delete payment.
|
|
272
304
|
* @param {Object} opts
|
|
@@ -277,22 +309,25 @@ function prismaTerminalsFactory(_ref) {
|
|
|
277
309
|
* @param {Object} [opts.headers] - Optional headers
|
|
278
310
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
279
311
|
*/
|
|
280
|
-
delete
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
312
|
+
delete({
|
|
313
|
+
token,
|
|
314
|
+
jwtToken,
|
|
315
|
+
id,
|
|
316
|
+
query = {},
|
|
317
|
+
headers
|
|
318
|
+
}) {
|
|
288
319
|
return client({
|
|
289
|
-
url:
|
|
320
|
+
url: `/prisma-terminals/payments/${id}`,
|
|
290
321
|
method: "delete",
|
|
291
|
-
headers: authorizationHeaders({
|
|
322
|
+
headers: authorizationHeaders({
|
|
323
|
+
token,
|
|
324
|
+
jwtToken,
|
|
325
|
+
internalAuthTokenProvider,
|
|
326
|
+
headers
|
|
327
|
+
}),
|
|
292
328
|
params: query
|
|
293
329
|
});
|
|
294
330
|
},
|
|
295
|
-
|
|
296
331
|
/**
|
|
297
332
|
* PUT /prisma-terminals/payments/:id - update payment (hidden in API docs).
|
|
298
333
|
* @param {Object} opts
|
|
@@ -304,29 +339,33 @@ function prismaTerminalsFactory(_ref) {
|
|
|
304
339
|
* @param {Object} [opts.headers] - Optional headers
|
|
305
340
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
306
341
|
*/
|
|
307
|
-
update
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
342
|
+
update({
|
|
343
|
+
token,
|
|
344
|
+
jwtToken,
|
|
345
|
+
id,
|
|
346
|
+
prismaPayment,
|
|
347
|
+
query = {},
|
|
348
|
+
headers
|
|
349
|
+
}) {
|
|
316
350
|
return client({
|
|
317
|
-
url:
|
|
351
|
+
url: `/prisma-terminals/payments/${id}`,
|
|
318
352
|
method: "put",
|
|
319
|
-
headers: authorizationHeaders({
|
|
353
|
+
headers: authorizationHeaders({
|
|
354
|
+
token,
|
|
355
|
+
jwtToken,
|
|
356
|
+
internalAuthTokenProvider,
|
|
357
|
+
headers
|
|
358
|
+
}),
|
|
320
359
|
params: query,
|
|
321
|
-
data: {
|
|
360
|
+
data: {
|
|
361
|
+
prismaPayment
|
|
362
|
+
}
|
|
322
363
|
});
|
|
323
364
|
},
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
refunds: refunds
|
|
365
|
+
reversals,
|
|
366
|
+
refunds
|
|
327
367
|
};
|
|
328
|
-
|
|
329
|
-
var settlements = {
|
|
368
|
+
const settlements = {
|
|
330
369
|
/**
|
|
331
370
|
* POST /prisma-terminals/settlements - create settlement.
|
|
332
371
|
* @param {Object} opts
|
|
@@ -337,28 +376,32 @@ function prismaTerminalsFactory(_ref) {
|
|
|
337
376
|
* @param {Object} [opts.headers] - Optional headers
|
|
338
377
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
339
378
|
*/
|
|
340
|
-
create
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
379
|
+
create({
|
|
380
|
+
token,
|
|
381
|
+
jwtToken,
|
|
382
|
+
settlement,
|
|
383
|
+
query = {},
|
|
384
|
+
headers
|
|
385
|
+
}) {
|
|
348
386
|
return client({
|
|
349
387
|
url: "/prisma-terminals/settlements",
|
|
350
388
|
method: "post",
|
|
351
|
-
headers: authorizationHeaders({
|
|
389
|
+
headers: authorizationHeaders({
|
|
390
|
+
token,
|
|
391
|
+
jwtToken,
|
|
392
|
+
internalAuthTokenProvider,
|
|
393
|
+
headers
|
|
394
|
+
}),
|
|
352
395
|
params: query,
|
|
353
|
-
data: {
|
|
396
|
+
data: {
|
|
397
|
+
settlement
|
|
398
|
+
}
|
|
354
399
|
});
|
|
355
400
|
}
|
|
356
401
|
};
|
|
357
|
-
|
|
358
402
|
return {
|
|
359
|
-
payments
|
|
360
|
-
settlements
|
|
403
|
+
payments,
|
|
404
|
+
settlements
|
|
361
405
|
};
|
|
362
406
|
}
|
|
363
|
-
|
|
364
407
|
module.exports = prismaTerminalsFactory;
|
|
@@ -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 reference numbers 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 {{ create: function }}
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
18
|
-
|
|
12
|
+
function referenceNumbersFactory({
|
|
13
|
+
client,
|
|
14
|
+
internalAuthTokenProvider
|
|
15
|
+
}) {
|
|
19
16
|
/**
|
|
20
17
|
* POST /reference-numbers - create reference number. API does not accept query params.
|
|
21
18
|
* @param {Object} opts
|
|
@@ -25,23 +22,28 @@ function referenceNumbersFactory(_ref) {
|
|
|
25
22
|
* @param {Object} [opts.headers] - Optional headers
|
|
26
23
|
* @returns {Promise<import("axios").AxiosResponse>}
|
|
27
24
|
*/
|
|
28
|
-
function create(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
25
|
+
function create({
|
|
26
|
+
token,
|
|
27
|
+
jwtToken,
|
|
28
|
+
referenceNumberRequest,
|
|
29
|
+
headers
|
|
30
|
+
}) {
|
|
34
31
|
return client({
|
|
35
32
|
url: "/reference-numbers",
|
|
36
33
|
method: "post",
|
|
37
|
-
headers: authorizationHeaders({
|
|
38
|
-
|
|
34
|
+
headers: authorizationHeaders({
|
|
35
|
+
token,
|
|
36
|
+
jwtToken,
|
|
37
|
+
internalAuthTokenProvider,
|
|
38
|
+
headers
|
|
39
|
+
}),
|
|
40
|
+
data: {
|
|
41
|
+
referenceNumberRequest
|
|
42
|
+
}
|
|
39
43
|
});
|
|
40
44
|
}
|
|
41
|
-
|
|
42
45
|
return {
|
|
43
|
-
create
|
|
46
|
+
create
|
|
44
47
|
};
|
|
45
48
|
}
|
|
46
|
-
|
|
47
49
|
module.exports = referenceNumbersFactory;
|