@stashfin/grpc 1.2.883 → 1.3.2
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/package.json +1 -1
- package/ts/eqxpayments/createmerchant.d.ts +73 -0
- package/ts/eqxpayments/createmerchant.js +397 -0
- package/ts/eqxpayments/createpaymentcategoryclient.d.ts +74 -0
- package/ts/eqxpayments/createpaymentcategoryclient.js +411 -0
- package/ts/eqxpayments/createpaymentgateway.d.ts +71 -0
- package/ts/eqxpayments/createpaymentgateway.js +369 -0
- package/ts/eqxpayments/getgatewayconfiguration.d.ts +92 -0
- package/ts/eqxpayments/getgatewayconfiguration.js +430 -0
- package/ts/eqxpayments/getmerchantmodeconfigfees.d.ts +106 -0
- package/ts/eqxpayments/getmerchantmodeconfigfees.js +627 -0
- package/ts/eqxpayments/listmerchants.d.ts +68 -0
- package/ts/eqxpayments/listmerchants.js +331 -0
- package/ts/eqxpayments/listpaymentcategoryclients.d.ts +87 -0
- package/ts/eqxpayments/listpaymentcategoryclients.js +477 -0
- package/ts/eqxpayments/listpaymentgateways.d.ts +84 -0
- package/ts/eqxpayments/listpaymentgateways.js +433 -0
- package/ts/eqxpayments/updatemerchant.d.ts +73 -0
- package/ts/eqxpayments/updatemerchant.js +397 -0
- package/ts/eqxpayments/updatemerchantmodeconfigfee.d.ts +75 -0
- package/ts/eqxpayments/updatemerchantmodeconfigfee.js +417 -0
- package/ts/eqxpayments/updatepaymentcategoryclient.d.ts +75 -0
- package/ts/eqxpayments/updatepaymentcategoryclient.js +425 -0
- package/ts/eqxpayments/updatepaymentgateway.d.ts +71 -0
- package/ts/eqxpayments/updatepaymentgateway.js +369 -0
- package/ts/eqxpayments.d.ts +168 -0
- package/ts/eqxpayments.js +120 -0
package/ts/eqxpayments.js
CHANGED
|
@@ -9,16 +9,28 @@ exports.eqxpaymentsClient = exports.eqxpaymentsService = exports.protobufPackage
|
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
const grpc_js_1 = require("@grpc/grpc-js");
|
|
11
11
|
const checkpaymentstatus_1 = require("./eqxpayments/checkpaymentstatus");
|
|
12
|
+
const createmerchant_1 = require("./eqxpayments/createmerchant");
|
|
13
|
+
const createpaymentcategoryclient_1 = require("./eqxpayments/createpaymentcategoryclient");
|
|
14
|
+
const createpaymentgateway_1 = require("./eqxpayments/createpaymentgateway");
|
|
12
15
|
const createtransaction_1 = require("./eqxpayments/createtransaction");
|
|
13
16
|
const fundtransfer_1 = require("./eqxpayments/fundtransfer");
|
|
17
|
+
const getgatewayconfiguration_1 = require("./eqxpayments/getgatewayconfiguration");
|
|
18
|
+
const getmerchantmodeconfigfees_1 = require("./eqxpayments/getmerchantmodeconfigfees");
|
|
14
19
|
const getpaymentoptions_1 = require("./eqxpayments/getpaymentoptions");
|
|
15
20
|
const getpaymenttypes_1 = require("./eqxpayments/getpaymenttypes");
|
|
16
21
|
const initiatepayment_1 = require("./eqxpayments/initiatepayment");
|
|
17
22
|
const initiaterefund_1 = require("./eqxpayments/initiaterefund");
|
|
23
|
+
const listmerchants_1 = require("./eqxpayments/listmerchants");
|
|
24
|
+
const listpaymentcategoryclients_1 = require("./eqxpayments/listpaymentcategoryclients");
|
|
25
|
+
const listpaymentgateways_1 = require("./eqxpayments/listpaymentgateways");
|
|
18
26
|
const nachpresentation_1 = require("./eqxpayments/nachpresentation");
|
|
19
27
|
const nachpresentationstatus_1 = require("./eqxpayments/nachpresentationstatus");
|
|
20
28
|
const nachregistration_1 = require("./eqxpayments/nachregistration");
|
|
21
29
|
const nachregistrationstatus_1 = require("./eqxpayments/nachregistrationstatus");
|
|
30
|
+
const updatemerchant_1 = require("./eqxpayments/updatemerchant");
|
|
31
|
+
const updatemerchantmodeconfigfee_1 = require("./eqxpayments/updatemerchantmodeconfigfee");
|
|
32
|
+
const updatepaymentcategoryclient_1 = require("./eqxpayments/updatepaymentcategoryclient");
|
|
33
|
+
const updatepaymentgateway_1 = require("./eqxpayments/updatepaymentgateway");
|
|
22
34
|
exports.protobufPackage = "service";
|
|
23
35
|
exports.eqxpaymentsService = {
|
|
24
36
|
getpaymentoptions: {
|
|
@@ -120,5 +132,113 @@ exports.eqxpaymentsService = {
|
|
|
120
132
|
responseSerialize: (value) => Buffer.from(createtransaction_1.createTransactionResponse.encode(value).finish()),
|
|
121
133
|
responseDeserialize: (value) => createtransaction_1.createTransactionResponse.decode(value),
|
|
122
134
|
},
|
|
135
|
+
getgatewayconfiguration: {
|
|
136
|
+
path: "/service.eqxpayments/getgatewayconfiguration",
|
|
137
|
+
requestStream: false,
|
|
138
|
+
responseStream: false,
|
|
139
|
+
requestSerialize: (value) => Buffer.from(getgatewayconfiguration_1.request.encode(value).finish()),
|
|
140
|
+
requestDeserialize: (value) => getgatewayconfiguration_1.request.decode(value),
|
|
141
|
+
responseSerialize: (value) => Buffer.from(getgatewayconfiguration_1.response.encode(value).finish()),
|
|
142
|
+
responseDeserialize: (value) => getgatewayconfiguration_1.response.decode(value),
|
|
143
|
+
},
|
|
144
|
+
createpaymentgateway: {
|
|
145
|
+
path: "/service.eqxpayments/createpaymentgateway",
|
|
146
|
+
requestStream: false,
|
|
147
|
+
responseStream: false,
|
|
148
|
+
requestSerialize: (value) => Buffer.from(createpaymentgateway_1.request.encode(value).finish()),
|
|
149
|
+
requestDeserialize: (value) => createpaymentgateway_1.request.decode(value),
|
|
150
|
+
responseSerialize: (value) => Buffer.from(createpaymentgateway_1.response.encode(value).finish()),
|
|
151
|
+
responseDeserialize: (value) => createpaymentgateway_1.response.decode(value),
|
|
152
|
+
},
|
|
153
|
+
updatepaymentgateway: {
|
|
154
|
+
path: "/service.eqxpayments/updatepaymentgateway",
|
|
155
|
+
requestStream: false,
|
|
156
|
+
responseStream: false,
|
|
157
|
+
requestSerialize: (value) => Buffer.from(updatepaymentgateway_1.request.encode(value).finish()),
|
|
158
|
+
requestDeserialize: (value) => updatepaymentgateway_1.request.decode(value),
|
|
159
|
+
responseSerialize: (value) => Buffer.from(updatepaymentgateway_1.response.encode(value).finish()),
|
|
160
|
+
responseDeserialize: (value) => updatepaymentgateway_1.response.decode(value),
|
|
161
|
+
},
|
|
162
|
+
listpaymentgateways: {
|
|
163
|
+
path: "/service.eqxpayments/listpaymentgateways",
|
|
164
|
+
requestStream: false,
|
|
165
|
+
responseStream: false,
|
|
166
|
+
requestSerialize: (value) => Buffer.from(listpaymentgateways_1.request.encode(value).finish()),
|
|
167
|
+
requestDeserialize: (value) => listpaymentgateways_1.request.decode(value),
|
|
168
|
+
responseSerialize: (value) => Buffer.from(listpaymentgateways_1.response.encode(value).finish()),
|
|
169
|
+
responseDeserialize: (value) => listpaymentgateways_1.response.decode(value),
|
|
170
|
+
},
|
|
171
|
+
createmerchant: {
|
|
172
|
+
path: "/service.eqxpayments/createmerchant",
|
|
173
|
+
requestStream: false,
|
|
174
|
+
responseStream: false,
|
|
175
|
+
requestSerialize: (value) => Buffer.from(createmerchant_1.request.encode(value).finish()),
|
|
176
|
+
requestDeserialize: (value) => createmerchant_1.request.decode(value),
|
|
177
|
+
responseSerialize: (value) => Buffer.from(createmerchant_1.response.encode(value).finish()),
|
|
178
|
+
responseDeserialize: (value) => createmerchant_1.response.decode(value),
|
|
179
|
+
},
|
|
180
|
+
updatemerchant: {
|
|
181
|
+
path: "/service.eqxpayments/updatemerchant",
|
|
182
|
+
requestStream: false,
|
|
183
|
+
responseStream: false,
|
|
184
|
+
requestSerialize: (value) => Buffer.from(updatemerchant_1.request.encode(value).finish()),
|
|
185
|
+
requestDeserialize: (value) => updatemerchant_1.request.decode(value),
|
|
186
|
+
responseSerialize: (value) => Buffer.from(updatemerchant_1.response.encode(value).finish()),
|
|
187
|
+
responseDeserialize: (value) => updatemerchant_1.response.decode(value),
|
|
188
|
+
},
|
|
189
|
+
listmerchants: {
|
|
190
|
+
path: "/service.eqxpayments/listmerchants",
|
|
191
|
+
requestStream: false,
|
|
192
|
+
responseStream: false,
|
|
193
|
+
requestSerialize: (value) => Buffer.from(listmerchants_1.request.encode(value).finish()),
|
|
194
|
+
requestDeserialize: (value) => listmerchants_1.request.decode(value),
|
|
195
|
+
responseSerialize: (value) => Buffer.from(listmerchants_1.response.encode(value).finish()),
|
|
196
|
+
responseDeserialize: (value) => listmerchants_1.response.decode(value),
|
|
197
|
+
},
|
|
198
|
+
createpaymentcategoryclient: {
|
|
199
|
+
path: "/service.eqxpayments/createpaymentcategoryclient",
|
|
200
|
+
requestStream: false,
|
|
201
|
+
responseStream: false,
|
|
202
|
+
requestSerialize: (value) => Buffer.from(createpaymentcategoryclient_1.request.encode(value).finish()),
|
|
203
|
+
requestDeserialize: (value) => createpaymentcategoryclient_1.request.decode(value),
|
|
204
|
+
responseSerialize: (value) => Buffer.from(createpaymentcategoryclient_1.response.encode(value).finish()),
|
|
205
|
+
responseDeserialize: (value) => createpaymentcategoryclient_1.response.decode(value),
|
|
206
|
+
},
|
|
207
|
+
updatepaymentcategoryclient: {
|
|
208
|
+
path: "/service.eqxpayments/updatepaymentcategoryclient",
|
|
209
|
+
requestStream: false,
|
|
210
|
+
responseStream: false,
|
|
211
|
+
requestSerialize: (value) => Buffer.from(updatepaymentcategoryclient_1.request.encode(value).finish()),
|
|
212
|
+
requestDeserialize: (value) => updatepaymentcategoryclient_1.request.decode(value),
|
|
213
|
+
responseSerialize: (value) => Buffer.from(updatepaymentcategoryclient_1.response.encode(value).finish()),
|
|
214
|
+
responseDeserialize: (value) => updatepaymentcategoryclient_1.response.decode(value),
|
|
215
|
+
},
|
|
216
|
+
listpaymentcategoryclients: {
|
|
217
|
+
path: "/service.eqxpayments/listpaymentcategoryclients",
|
|
218
|
+
requestStream: false,
|
|
219
|
+
responseStream: false,
|
|
220
|
+
requestSerialize: (value) => Buffer.from(listpaymentcategoryclients_1.request.encode(value).finish()),
|
|
221
|
+
requestDeserialize: (value) => listpaymentcategoryclients_1.request.decode(value),
|
|
222
|
+
responseSerialize: (value) => Buffer.from(listpaymentcategoryclients_1.response.encode(value).finish()),
|
|
223
|
+
responseDeserialize: (value) => listpaymentcategoryclients_1.response.decode(value),
|
|
224
|
+
},
|
|
225
|
+
updatemerchantmodeconfigfee: {
|
|
226
|
+
path: "/service.eqxpayments/updatemerchantmodeconfigfee",
|
|
227
|
+
requestStream: false,
|
|
228
|
+
responseStream: false,
|
|
229
|
+
requestSerialize: (value) => Buffer.from(updatemerchantmodeconfigfee_1.request.encode(value).finish()),
|
|
230
|
+
requestDeserialize: (value) => updatemerchantmodeconfigfee_1.request.decode(value),
|
|
231
|
+
responseSerialize: (value) => Buffer.from(updatemerchantmodeconfigfee_1.response.encode(value).finish()),
|
|
232
|
+
responseDeserialize: (value) => updatemerchantmodeconfigfee_1.response.decode(value),
|
|
233
|
+
},
|
|
234
|
+
getmerchantmodeconfigfees: {
|
|
235
|
+
path: "/service.eqxpayments/getmerchantmodeconfigfees",
|
|
236
|
+
requestStream: false,
|
|
237
|
+
responseStream: false,
|
|
238
|
+
requestSerialize: (value) => Buffer.from(getmerchantmodeconfigfees_1.request.encode(value).finish()),
|
|
239
|
+
requestDeserialize: (value) => getmerchantmodeconfigfees_1.request.decode(value),
|
|
240
|
+
responseSerialize: (value) => Buffer.from(getmerchantmodeconfigfees_1.response.encode(value).finish()),
|
|
241
|
+
responseDeserialize: (value) => getmerchantmodeconfigfees_1.response.decode(value),
|
|
242
|
+
},
|
|
123
243
|
};
|
|
124
244
|
exports.eqxpaymentsClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.eqxpaymentsService, "service.eqxpayments");
|