@cuenca-mx/cuenca-js 0.0.1-dev.9 → 0.0.2-dev.3
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/README.md +157 -2
- package/build/data-69952249.mjs +330 -0
- package/build/{queries-b8f29837.js → data-efb53250.cjs} +62 -285
- package/build/errors/{index.js → index.cjs} +0 -0
- package/build/identities-5e48f342.mjs +337 -0
- package/build/identities-93faf1ed.cjs +354 -0
- package/build/{index.js → index.cjs} +431 -105
- package/build/index.mjs +390 -30
- package/build/jwt/{index.js → index.cjs} +7 -2
- package/build/jwt/index.mjs +2 -1
- package/build/requests/{index.js → index.cjs} +8 -3
- package/build/requests/index.mjs +3 -2
- package/build/types/index.cjs +47 -0
- package/build/types/index.mjs +2 -2
- package/build/umd/cuenca.umd.js +1 -1
- package/build/{walletTransactionRequest-b588cc52.js → walletTransactionRequest-b9ee2ed8.cjs} +261 -4
- package/build/{walletTransactionRequest-bbfb87bd.js → walletTransactionRequest-d30e52a8.mjs} +257 -4
- package/package.json +12 -9
- package/build/data-7d3d5fcc.js +0 -11
- package/build/data-c53f1052.js +0 -14
- package/build/queries-f146b91b.js +0 -546
- package/build/types/index.js +0 -40
|
@@ -1,546 +0,0 @@
|
|
|
1
|
-
import { ValidationError } from './errors/index.mjs';
|
|
2
|
-
import { d as dateToUTC } from './data-7d3d5fcc.js';
|
|
3
|
-
|
|
4
|
-
class CardErrorType {
|
|
5
|
-
static Blocked = new CardErrorType('blocked');
|
|
6
|
-
|
|
7
|
-
static Comunication = new CardErrorType('comunication');
|
|
8
|
-
|
|
9
|
-
static ContactlesAmountLimit = new CardErrorType('contactles_amount_limit');
|
|
10
|
-
|
|
11
|
-
static FraudDetection = new CardErrorType('fraud_detection');
|
|
12
|
-
|
|
13
|
-
static FraudDetectionUncertain = new CardErrorType(
|
|
14
|
-
'fraud_detection_uncertain',
|
|
15
|
-
);
|
|
16
|
-
|
|
17
|
-
static InsufficientFounds = new CardErrorType('insufficient_founds');
|
|
18
|
-
|
|
19
|
-
static InvalidPin = new CardErrorType('invalid_pin');
|
|
20
|
-
|
|
21
|
-
static Notification = new CardErrorType('notification');
|
|
22
|
-
|
|
23
|
-
static NotificationDeactivatedCard = new CardErrorType(
|
|
24
|
-
'notification_deactivated_card',
|
|
25
|
-
);
|
|
26
|
-
|
|
27
|
-
constructor(value) {
|
|
28
|
-
this.value = value;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
class CardFundingType {
|
|
33
|
-
static Credit = new CardFundingType('credit');
|
|
34
|
-
|
|
35
|
-
static Debit = new CardFundingType('debit');
|
|
36
|
-
|
|
37
|
-
constructor(value) {
|
|
38
|
-
this.value = value;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
class CardIssuer {
|
|
43
|
-
static Accendo = new CardIssuer('accendo');
|
|
44
|
-
|
|
45
|
-
static Cuenca = new CardIssuer('cuenca');
|
|
46
|
-
|
|
47
|
-
constructor(value) {
|
|
48
|
-
this.value = value;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
class CardStatus {
|
|
53
|
-
static Active = new CardStatus('active');
|
|
54
|
-
|
|
55
|
-
static Blocked = new CardStatus('blocked');
|
|
56
|
-
|
|
57
|
-
static Created = new CardStatus('created');
|
|
58
|
-
|
|
59
|
-
static Deactivated = new CardStatus('deactivated');
|
|
60
|
-
|
|
61
|
-
static Printing = new CardStatus('printing');
|
|
62
|
-
|
|
63
|
-
constructor(value) {
|
|
64
|
-
this.value = value;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
class CardTransactionType {
|
|
69
|
-
static Auth = new CardTransactionType('auth');
|
|
70
|
-
|
|
71
|
-
static Capture = new CardTransactionType('capture');
|
|
72
|
-
|
|
73
|
-
static Chargeback = new CardTransactionType('chargeback');
|
|
74
|
-
|
|
75
|
-
static Expiration = new CardTransactionType('expiration');
|
|
76
|
-
|
|
77
|
-
static Refund = new CardTransactionType('refund');
|
|
78
|
-
|
|
79
|
-
static Void = new CardTransactionType('void');
|
|
80
|
-
|
|
81
|
-
constructor(value) {
|
|
82
|
-
this.value = value;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
class CardType {
|
|
87
|
-
static Physical = new CardType('physical');
|
|
88
|
-
|
|
89
|
-
static Virtual = new CardType('virtual');
|
|
90
|
-
|
|
91
|
-
constructor(value) {
|
|
92
|
-
this.value = value;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
class CommissionType {
|
|
97
|
-
static CardRequest = new CommissionType('card_request');
|
|
98
|
-
|
|
99
|
-
static CashDeposit = new CommissionType('cash_deposit');
|
|
100
|
-
|
|
101
|
-
static OutgoingSpei = new CommissionType('outgoing_spei');
|
|
102
|
-
|
|
103
|
-
constructor(value) {
|
|
104
|
-
this.value = value;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
class DepositNetwork {
|
|
109
|
-
static Cash = new DepositNetwork('cash');
|
|
110
|
-
|
|
111
|
-
static Internal = new DepositNetwork('internal');
|
|
112
|
-
|
|
113
|
-
static Spei = new DepositNetwork('spei');
|
|
114
|
-
|
|
115
|
-
constructor(value) {
|
|
116
|
-
this.value = value;
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class EntryType {
|
|
121
|
-
static Credit = new EntryType('credit');
|
|
122
|
-
|
|
123
|
-
static Debit = new EntryType('debit');
|
|
124
|
-
|
|
125
|
-
constructor(value) {
|
|
126
|
-
this.value = value;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
class FileFormat {
|
|
131
|
-
static Pdf = new FileFormat('pdf');
|
|
132
|
-
|
|
133
|
-
static Xml = new FileFormat('xml');
|
|
134
|
-
|
|
135
|
-
static Json = new FileFormat('json');
|
|
136
|
-
|
|
137
|
-
constructor(value) {
|
|
138
|
-
this.value = value;
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
class Phase {
|
|
143
|
-
static Sandbox = new Phase('sandbox');
|
|
144
|
-
|
|
145
|
-
static Stage = new Phase('stage');
|
|
146
|
-
|
|
147
|
-
static Api = new Phase('api');
|
|
148
|
-
|
|
149
|
-
constructor(value) {
|
|
150
|
-
this.value = value;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
class ServiceProviderCategory {
|
|
155
|
-
static Cable = new ServiceProviderCategory('cable');
|
|
156
|
-
|
|
157
|
-
static CreditCard = new ServiceProviderCategory('credit_card');
|
|
158
|
-
|
|
159
|
-
static Electricity = new ServiceProviderCategory('electricity');
|
|
160
|
-
|
|
161
|
-
static Gas = new ServiceProviderCategory('gas');
|
|
162
|
-
|
|
163
|
-
static Internet = new ServiceProviderCategory('internet');
|
|
164
|
-
|
|
165
|
-
static LandlineTelephone = new ServiceProviderCategory('landline_telephone');
|
|
166
|
-
|
|
167
|
-
static MobileTelephonePostpaid = new ServiceProviderCategory(
|
|
168
|
-
'mobile_telephone_postpaid',
|
|
169
|
-
);
|
|
170
|
-
|
|
171
|
-
static MobileTelephonePrepaid = new ServiceProviderCategory(
|
|
172
|
-
'mobile_telephone_prepaid',
|
|
173
|
-
);
|
|
174
|
-
|
|
175
|
-
static SateliteTelevision = new ServiceProviderCategory(
|
|
176
|
-
'satelite_television',
|
|
177
|
-
);
|
|
178
|
-
|
|
179
|
-
static Water = new ServiceProviderCategory('water');
|
|
180
|
-
|
|
181
|
-
constructor(value) {
|
|
182
|
-
this.value = value;
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
class SavingCategory {
|
|
187
|
-
static General = new SavingCategory('general');
|
|
188
|
-
|
|
189
|
-
static Home = new SavingCategory('home');
|
|
190
|
-
|
|
191
|
-
static Vehicle = new SavingCategory('vehicle');
|
|
192
|
-
|
|
193
|
-
static Travel = new SavingCategory('travel');
|
|
194
|
-
|
|
195
|
-
static Clothing = new SavingCategory('clothing');
|
|
196
|
-
|
|
197
|
-
static Other = new SavingCategory('other');
|
|
198
|
-
|
|
199
|
-
static Medical = new SavingCategory('medical');
|
|
200
|
-
|
|
201
|
-
static Accident = new SavingCategory('accident');
|
|
202
|
-
|
|
203
|
-
static Education = new SavingCategory('education');
|
|
204
|
-
|
|
205
|
-
constructor(value) {
|
|
206
|
-
this.value = value;
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
class TrackDataMethod {
|
|
211
|
-
static NotSet = new TrackDataMethod('not_set');
|
|
212
|
-
|
|
213
|
-
static Terminal = new TrackDataMethod('terminal');
|
|
214
|
-
|
|
215
|
-
static Manual = new TrackDataMethod('manual');
|
|
216
|
-
|
|
217
|
-
static Unknown = new TrackDataMethod('unknown');
|
|
218
|
-
|
|
219
|
-
static Contactless = new TrackDataMethod('contactless');
|
|
220
|
-
|
|
221
|
-
static FallBack = new TrackDataMethod('fall_back');
|
|
222
|
-
|
|
223
|
-
static MagneticStripe = new TrackDataMethod('magnetic_stripe');
|
|
224
|
-
|
|
225
|
-
static RecurringCharge = new TrackDataMethod('recurring_charge');
|
|
226
|
-
|
|
227
|
-
constructor(value) {
|
|
228
|
-
this.value = value;
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
class TransactionStatus {
|
|
233
|
-
static Created = new TransactionStatus('created');
|
|
234
|
-
|
|
235
|
-
static Failed = new TransactionStatus('failed');
|
|
236
|
-
|
|
237
|
-
static InReview = new TransactionStatus('in_review');
|
|
238
|
-
|
|
239
|
-
static Submitted = new TransactionStatus('submitted');
|
|
240
|
-
|
|
241
|
-
static Succeeded = new TransactionStatus('succeeded');
|
|
242
|
-
|
|
243
|
-
constructor(value) {
|
|
244
|
-
this.value = value;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
class TransferNetwork {
|
|
249
|
-
static Internal = new TransferNetwork('internal');
|
|
250
|
-
|
|
251
|
-
static Spei = new TransferNetwork('spei');
|
|
252
|
-
|
|
253
|
-
constructor(value) {
|
|
254
|
-
this.value = value;
|
|
255
|
-
}
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
class WalletTransactionType {
|
|
259
|
-
static Deposit = new WalletTransactionType('deposit');
|
|
260
|
-
|
|
261
|
-
static Withdrawal = new WalletTransactionType('withdrawal');
|
|
262
|
-
|
|
263
|
-
constructor(value) {
|
|
264
|
-
this.value = value;
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
class PageSize {
|
|
269
|
-
constructor(size) {
|
|
270
|
-
this.maxSize = 100;
|
|
271
|
-
this._ps = size;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
get size() {
|
|
275
|
-
return this._pageSize;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
set _ps(value) {
|
|
279
|
-
let validatedPageSize = this.maxSize;
|
|
280
|
-
if (value && value > 0 && value <= this.maxSize) {
|
|
281
|
-
validatedPageSize = value;
|
|
282
|
-
}
|
|
283
|
-
this._pageSize = validatedPageSize;
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
class QueryParams {
|
|
288
|
-
constructor({
|
|
289
|
-
createdAfter,
|
|
290
|
-
createdBefore,
|
|
291
|
-
limit,
|
|
292
|
-
pageSize,
|
|
293
|
-
relatedTransaction,
|
|
294
|
-
userId,
|
|
295
|
-
count = false,
|
|
296
|
-
}) {
|
|
297
|
-
this.createdAfter = createdAfter;
|
|
298
|
-
this.createdBefore = createdBefore;
|
|
299
|
-
this._lmt = limit;
|
|
300
|
-
this.relatedTransaction = relatedTransaction;
|
|
301
|
-
this.userId = userId;
|
|
302
|
-
this.count = count;
|
|
303
|
-
this.pageSize = pageSize;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
get limit() {
|
|
307
|
-
return this._limit;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
// Validator for limit
|
|
311
|
-
set _lmt(value) {
|
|
312
|
-
let validatedValue = null;
|
|
313
|
-
if (value && value >= 0) {
|
|
314
|
-
validatedValue = value;
|
|
315
|
-
}
|
|
316
|
-
this._limit = validatedValue;
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
toObject() {
|
|
320
|
-
return {
|
|
321
|
-
created_after: this.createdAfter,
|
|
322
|
-
created_before: this.createdBefore,
|
|
323
|
-
limit: this.limit,
|
|
324
|
-
related_transaction: this.relatedTransaction,
|
|
325
|
-
user_id: this.userId,
|
|
326
|
-
page_size: this.pageSize && this.pageSize.size,
|
|
327
|
-
};
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
toParams() {
|
|
331
|
-
const helper = { ...this.toObject() };
|
|
332
|
-
if (this.count) helper.count = 1;
|
|
333
|
-
Object.keys(helper).forEach((k) => {
|
|
334
|
-
if (helper[k] == null) delete helper[k];
|
|
335
|
-
});
|
|
336
|
-
return helper;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
toQueryString() {
|
|
340
|
-
return new URLSearchParams(this.toParams()).toString();
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
class AccountQuery extends QueryParams {
|
|
345
|
-
constructor({ accountNumber, ...args }) {
|
|
346
|
-
super(args);
|
|
347
|
-
this.accountNumber = accountNumber;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
toObject() {
|
|
351
|
-
return Object.assign(super.toObject(), {
|
|
352
|
-
account_number: this.accountNumber,
|
|
353
|
-
});
|
|
354
|
-
}
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
class ApiKeyQuery extends QueryParams {
|
|
358
|
-
constructor({ active, ...args }) {
|
|
359
|
-
super(args);
|
|
360
|
-
this.active = active;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
toObject() {
|
|
364
|
-
return Object.assign(super.toObject(), {
|
|
365
|
-
active: this.active,
|
|
366
|
-
});
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
class TransactionQuery extends QueryParams {
|
|
371
|
-
constructor({ status, ...args }) {
|
|
372
|
-
super(args);
|
|
373
|
-
this.status = status;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
toObject() {
|
|
377
|
-
return Object.assign(super.toObject(), {
|
|
378
|
-
status: this.status,
|
|
379
|
-
});
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
class DepositQuery extends TransactionQuery {
|
|
384
|
-
constructor({ trackingKey, network, ...args }) {
|
|
385
|
-
super(args);
|
|
386
|
-
this.trackingKey = trackingKey;
|
|
387
|
-
this.network = network;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
toObject() {
|
|
391
|
-
return Object.assign(super.toObject(), {
|
|
392
|
-
tracking_key: this.trackingKey,
|
|
393
|
-
network: this.network,
|
|
394
|
-
});
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
class TransferQuery extends TransactionQuery {
|
|
399
|
-
constructor({
|
|
400
|
-
accountNumber,
|
|
401
|
-
idempotencyKey,
|
|
402
|
-
trackingKey,
|
|
403
|
-
network,
|
|
404
|
-
...args
|
|
405
|
-
}) {
|
|
406
|
-
super(args);
|
|
407
|
-
this.accountNumber = accountNumber;
|
|
408
|
-
this.idempotencyKey = idempotencyKey;
|
|
409
|
-
this.trackingKey = trackingKey;
|
|
410
|
-
this.network = network;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
toObject() {
|
|
414
|
-
return Object.assign(super.toObject(), {
|
|
415
|
-
account_number: this.accountNumber,
|
|
416
|
-
idempotency_key: this.idempotencyKey,
|
|
417
|
-
tracking_key: this.trackingKey,
|
|
418
|
-
network: this.network,
|
|
419
|
-
});
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
class BalanceEntryQuery extends QueryParams {
|
|
424
|
-
constructor({
|
|
425
|
-
fundingInstrumentUri,
|
|
426
|
-
count = false,
|
|
427
|
-
walletId = 'default',
|
|
428
|
-
...args
|
|
429
|
-
}) {
|
|
430
|
-
super(args);
|
|
431
|
-
this.fundingInstrumentUri = fundingInstrumentUri;
|
|
432
|
-
this.count = count;
|
|
433
|
-
this.walletId = walletId;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
toObject() {
|
|
437
|
-
return Object.assign(super.toObject(), {
|
|
438
|
-
wallet_id: this.walletId,
|
|
439
|
-
funding_instrument_uri: this.fundingInstrumentUri,
|
|
440
|
-
count: this.count,
|
|
441
|
-
});
|
|
442
|
-
}
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
class BillPaymentQuery extends QueryParams {
|
|
446
|
-
constructor({ accountNumber, ...args }) {
|
|
447
|
-
super(args);
|
|
448
|
-
this.accountNumber = accountNumber;
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
toObject() {
|
|
452
|
-
return Object.assign(super.toObject(), {
|
|
453
|
-
account_number: this.accountNumber,
|
|
454
|
-
});
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
class CardTransactionQuery extends QueryParams {
|
|
459
|
-
constructor({ cardUri, ...args }) {
|
|
460
|
-
super(args);
|
|
461
|
-
this.cardUri = cardUri;
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
toObject() {
|
|
465
|
-
return Object.assign(super.toObject(), {
|
|
466
|
-
card_uri: this.cardUri,
|
|
467
|
-
});
|
|
468
|
-
}
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
class CardsQuery extends QueryParams {
|
|
472
|
-
constructor({ cardUri, count = false, ...args }) {
|
|
473
|
-
super(args);
|
|
474
|
-
this.cardUri = cardUri;
|
|
475
|
-
this.count = count;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
toObject() {
|
|
479
|
-
return Object.assign(super.toObject(), {
|
|
480
|
-
card_uri: this.cardUri,
|
|
481
|
-
count: this.count,
|
|
482
|
-
});
|
|
483
|
-
}
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
class WalletTransactionQuery extends QueryParams {
|
|
487
|
-
constructor({ walletUri, ...args }) {
|
|
488
|
-
super(args);
|
|
489
|
-
this.walletUri = walletUri;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
toObject() {
|
|
493
|
-
return Object.assign(super.toObject(), {
|
|
494
|
-
wallet_uri: this.walletUri,
|
|
495
|
-
});
|
|
496
|
-
}
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
class WalletQuery extends QueryParams {
|
|
500
|
-
constructor({ active, ...args }) {
|
|
501
|
-
super(args);
|
|
502
|
-
this.active = active;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
toObject() {
|
|
506
|
-
return Object.assign(super.toObject(), {
|
|
507
|
-
active: this.active,
|
|
508
|
-
});
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
class StatementQuery extends QueryParams {
|
|
513
|
-
constructor({ month, year, ...args }) {
|
|
514
|
-
super(args);
|
|
515
|
-
this.d = { month, year };
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
get month() {
|
|
519
|
-
return this._date.month;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
get year() {
|
|
523
|
-
return this._date.year;
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
set d({ month, year }) {
|
|
527
|
-
const now = dateToUTC(Date.now());
|
|
528
|
-
now.setUTCDate(1);
|
|
529
|
-
const date = dateToUTC(`${year}-${month}-01`);
|
|
530
|
-
if (date.getTime() >= now.getTime()) {
|
|
531
|
-
throw new ValidationError(
|
|
532
|
-
`${year}-${month} is not a valid year-month pair`,
|
|
533
|
-
);
|
|
534
|
-
}
|
|
535
|
-
this._date = { month, year };
|
|
536
|
-
}
|
|
537
|
-
|
|
538
|
-
toObject() {
|
|
539
|
-
return Object.assign(super.toObject(), {
|
|
540
|
-
month: this.month,
|
|
541
|
-
year: this.year,
|
|
542
|
-
});
|
|
543
|
-
}
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
export { AccountQuery as A, BalanceEntryQuery as B, CardIssuer as C, DepositNetwork as D, EntryType as E, FileFormat as F, Phase as P, QueryParams as Q, SavingCategory as S, TransactionStatus as T, WalletTransactionType as W, CardStatus as a, CardType as b, CardFundingType as c, CardErrorType as d, CardTransactionType as e, CommissionType as f, ServiceProviderCategory as g, TransferNetwork as h, ApiKeyQuery as i, BillPaymentQuery as j, CardsQuery as k, CardTransactionQuery as l, DepositQuery as m, WalletQuery as n, StatementQuery as o, TransferQuery as p, WalletTransactionQuery as q, TrackDataMethod as r, PageSize as s };
|
package/build/types/index.js
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
|
-
var queries = require('../queries-b8f29837.js');
|
|
6
|
-
require('../errors/index.js');
|
|
7
|
-
require('../data-c53f1052.js');
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
exports.AccountQuery = queries.AccountQuery;
|
|
12
|
-
exports.ApiKeyQuery = queries.ApiKeyQuery;
|
|
13
|
-
exports.BalanceEntryQuery = queries.BalanceEntryQuery;
|
|
14
|
-
exports.BillPaymentQuery = queries.BillPaymentQuery;
|
|
15
|
-
exports.CardErrorType = queries.CardErrorType;
|
|
16
|
-
exports.CardFundingType = queries.CardFundingType;
|
|
17
|
-
exports.CardIssuer = queries.CardIssuer;
|
|
18
|
-
exports.CardStatus = queries.CardStatus;
|
|
19
|
-
exports.CardTransactionQuery = queries.CardTransactionQuery;
|
|
20
|
-
exports.CardTransactionType = queries.CardTransactionType;
|
|
21
|
-
exports.CardType = queries.CardType;
|
|
22
|
-
exports.CardsQuery = queries.CardsQuery;
|
|
23
|
-
exports.CommissionType = queries.CommissionType;
|
|
24
|
-
exports.DepositNetwork = queries.DepositNetwork;
|
|
25
|
-
exports.DepositQuery = queries.DepositQuery;
|
|
26
|
-
exports.EntryType = queries.EntryType;
|
|
27
|
-
exports.FileFormat = queries.FileFormat;
|
|
28
|
-
exports.PageSize = queries.PageSize;
|
|
29
|
-
exports.Phase = queries.Phase;
|
|
30
|
-
exports.QueryParams = queries.QueryParams;
|
|
31
|
-
exports.SavingCategory = queries.SavingCategory;
|
|
32
|
-
exports.ServiceProviderCategory = queries.ServiceProviderCategory;
|
|
33
|
-
exports.StatementQuery = queries.StatementQuery;
|
|
34
|
-
exports.TrackDataMethod = queries.TrackDataMethod;
|
|
35
|
-
exports.TransactionStatus = queries.TransactionStatus;
|
|
36
|
-
exports.TransferNetwork = queries.TransferNetwork;
|
|
37
|
-
exports.TransferQuery = queries.TransferQuery;
|
|
38
|
-
exports.WalletQuery = queries.WalletQuery;
|
|
39
|
-
exports.WalletTransactionQuery = queries.WalletTransactionQuery;
|
|
40
|
-
exports.WalletTransactionType = queries.WalletTransactionType;
|