@stashfin/grpc 1.2.881 → 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.
Files changed (29) hide show
  1. package/package.json +1 -1
  2. package/ts/eqxpayments/createmerchant.d.ts +73 -0
  3. package/ts/eqxpayments/createmerchant.js +397 -0
  4. package/ts/eqxpayments/createpaymentcategoryclient.d.ts +74 -0
  5. package/ts/eqxpayments/createpaymentcategoryclient.js +411 -0
  6. package/ts/eqxpayments/createpaymentgateway.d.ts +71 -0
  7. package/ts/eqxpayments/createpaymentgateway.js +369 -0
  8. package/ts/eqxpayments/createtransaction.d.ts +130 -0
  9. package/ts/eqxpayments/createtransaction.js +757 -0
  10. package/ts/eqxpayments/getgatewayconfiguration.d.ts +92 -0
  11. package/ts/eqxpayments/getgatewayconfiguration.js +430 -0
  12. package/ts/eqxpayments/getmerchantmodeconfigfees.d.ts +106 -0
  13. package/ts/eqxpayments/getmerchantmodeconfigfees.js +627 -0
  14. package/ts/eqxpayments/listmerchants.d.ts +68 -0
  15. package/ts/eqxpayments/listmerchants.js +331 -0
  16. package/ts/eqxpayments/listpaymentcategoryclients.d.ts +87 -0
  17. package/ts/eqxpayments/listpaymentcategoryclients.js +477 -0
  18. package/ts/eqxpayments/listpaymentgateways.d.ts +84 -0
  19. package/ts/eqxpayments/listpaymentgateways.js +433 -0
  20. package/ts/eqxpayments/updatemerchant.d.ts +73 -0
  21. package/ts/eqxpayments/updatemerchant.js +397 -0
  22. package/ts/eqxpayments/updatemerchantmodeconfigfee.d.ts +75 -0
  23. package/ts/eqxpayments/updatemerchantmodeconfigfee.js +417 -0
  24. package/ts/eqxpayments/updatepaymentcategoryclient.d.ts +75 -0
  25. package/ts/eqxpayments/updatepaymentcategoryclient.js +425 -0
  26. package/ts/eqxpayments/updatepaymentgateway.d.ts +71 -0
  27. package/ts/eqxpayments/updatepaymentgateway.js +369 -0
  28. package/ts/eqxpayments.d.ts +182 -0
  29. package/ts/eqxpayments.js +130 -0
package/ts/eqxpayments.js CHANGED
@@ -9,15 +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");
15
+ const createtransaction_1 = require("./eqxpayments/createtransaction");
12
16
  const fundtransfer_1 = require("./eqxpayments/fundtransfer");
17
+ const getgatewayconfiguration_1 = require("./eqxpayments/getgatewayconfiguration");
18
+ const getmerchantmodeconfigfees_1 = require("./eqxpayments/getmerchantmodeconfigfees");
13
19
  const getpaymentoptions_1 = require("./eqxpayments/getpaymentoptions");
14
20
  const getpaymenttypes_1 = require("./eqxpayments/getpaymenttypes");
15
21
  const initiatepayment_1 = require("./eqxpayments/initiatepayment");
16
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");
17
26
  const nachpresentation_1 = require("./eqxpayments/nachpresentation");
18
27
  const nachpresentationstatus_1 = require("./eqxpayments/nachpresentationstatus");
19
28
  const nachregistration_1 = require("./eqxpayments/nachregistration");
20
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");
21
34
  exports.protobufPackage = "service";
22
35
  exports.eqxpaymentsService = {
23
36
  getpaymentoptions: {
@@ -110,5 +123,122 @@ exports.eqxpaymentsService = {
110
123
  responseSerialize: (value) => Buffer.from(getpaymenttypes_1.PaymentTypeResponse.encode(value).finish()),
111
124
  responseDeserialize: (value) => getpaymenttypes_1.PaymentTypeResponse.decode(value),
112
125
  },
126
+ starttransaction: {
127
+ path: "/service.eqxpayments/starttransaction",
128
+ requestStream: false,
129
+ responseStream: false,
130
+ requestSerialize: (value) => Buffer.from(createtransaction_1.createTransactionRequest.encode(value).finish()),
131
+ requestDeserialize: (value) => createtransaction_1.createTransactionRequest.decode(value),
132
+ responseSerialize: (value) => Buffer.from(createtransaction_1.createTransactionResponse.encode(value).finish()),
133
+ responseDeserialize: (value) => createtransaction_1.createTransactionResponse.decode(value),
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
+ },
113
243
  };
114
244
  exports.eqxpaymentsClient = (0, grpc_js_1.makeGenericClientConstructor)(exports.eqxpaymentsService, "service.eqxpayments");