@yuno-payments/dashboard-api-mfe 1.7.6 → 1.7.8

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.
@@ -0,0 +1,775 @@
1
+ export declare const recipientListMock: {
2
+ data: ({
3
+ account_id: string;
4
+ country: string;
5
+ created_at: string;
6
+ updated_at: string;
7
+ id: string;
8
+ merchant_recipient_id: string;
9
+ national_entity: string;
10
+ entity_type: string;
11
+ first_name: string;
12
+ last_name: string;
13
+ legal_name: null;
14
+ email: string;
15
+ date_of_birth: string;
16
+ website: null;
17
+ industry: null;
18
+ merchant_category_code: null;
19
+ document: {
20
+ number: string;
21
+ type: string;
22
+ };
23
+ phone: {
24
+ country_code: string;
25
+ number: string;
26
+ };
27
+ address: {
28
+ address_line_1: string;
29
+ address_line_2: string;
30
+ city: string;
31
+ state: string;
32
+ zip_code: string;
33
+ country: string;
34
+ };
35
+ } | {
36
+ account_id: string;
37
+ country: string;
38
+ created_at: string;
39
+ updated_at: string;
40
+ id: string;
41
+ merchant_recipient_id: string;
42
+ national_entity: string;
43
+ entity_type: string;
44
+ first_name: null;
45
+ last_name: null;
46
+ legal_name: string;
47
+ email: string;
48
+ date_of_birth: null;
49
+ website: string;
50
+ industry: string;
51
+ merchant_category_code: string;
52
+ document: {
53
+ number: string;
54
+ type: string;
55
+ };
56
+ phone: {
57
+ country_code: string;
58
+ number: string;
59
+ };
60
+ address: {
61
+ address_line_1: string;
62
+ address_line_2: string;
63
+ city: string;
64
+ state: string;
65
+ zip_code: string;
66
+ country: string;
67
+ };
68
+ } | {
69
+ account_id: string;
70
+ country: string;
71
+ created_at: string;
72
+ updated_at: string;
73
+ id: string;
74
+ merchant_recipient_id: string;
75
+ national_entity: string;
76
+ entity_type: string;
77
+ first_name: string;
78
+ last_name: string;
79
+ legal_name: null;
80
+ email: string;
81
+ date_of_birth: string;
82
+ website: null;
83
+ industry: null;
84
+ merchant_category_code: null;
85
+ document: {
86
+ number: string;
87
+ type: string;
88
+ };
89
+ phone: {
90
+ country_code: string;
91
+ number: string;
92
+ };
93
+ address: {
94
+ address_line_1: string;
95
+ address_line_2: null;
96
+ city: string;
97
+ state: string;
98
+ zip_code: string;
99
+ country: string;
100
+ };
101
+ } | {
102
+ account_id: string;
103
+ country: string;
104
+ created_at: string;
105
+ updated_at: string;
106
+ id: string;
107
+ merchant_recipient_id: null;
108
+ national_entity: string;
109
+ entity_type: string;
110
+ first_name: null;
111
+ last_name: null;
112
+ legal_name: string;
113
+ email: string;
114
+ date_of_birth: null;
115
+ website: string;
116
+ industry: string;
117
+ merchant_category_code: string;
118
+ document: {
119
+ number: string;
120
+ type: string;
121
+ };
122
+ phone: {
123
+ country_code: string;
124
+ number: string;
125
+ };
126
+ address: {
127
+ address_line_1: string;
128
+ address_line_2: string;
129
+ city: string;
130
+ state: string;
131
+ zip_code: string;
132
+ country: string;
133
+ };
134
+ })[];
135
+ pagination: {
136
+ page: number;
137
+ page_size: number;
138
+ total_items: number;
139
+ total_pages: number;
140
+ has_next: boolean;
141
+ has_previous: boolean;
142
+ };
143
+ };
144
+ export declare const recipientDetailMock: {
145
+ id: string;
146
+ merchant_recipient_id: string;
147
+ national_entity: string;
148
+ entity_type: string;
149
+ first_name: string;
150
+ last_name: string;
151
+ legal_name: null;
152
+ email: string;
153
+ account_id: string;
154
+ country: string;
155
+ created_at: string;
156
+ updated_at: string;
157
+ document: {
158
+ number: string;
159
+ type: string;
160
+ };
161
+ phone: {
162
+ country_code: string;
163
+ number: string;
164
+ };
165
+ address: {
166
+ address_line_1: string;
167
+ address_line_2: string;
168
+ city: string;
169
+ state: string;
170
+ zip_code: string;
171
+ country: string;
172
+ };
173
+ withdrawal_method: {
174
+ bank: {
175
+ code: string;
176
+ branch: string;
177
+ branch_digit: string;
178
+ account: string;
179
+ account_digit: string;
180
+ account_type: string;
181
+ routing: string;
182
+ country: string;
183
+ currency: string;
184
+ payout_schedule: null;
185
+ };
186
+ };
187
+ documentation: never[];
188
+ onboardings: {
189
+ id: string;
190
+ provider_id: string;
191
+ provider: {
192
+ name: string;
193
+ icon: string;
194
+ };
195
+ status: string;
196
+ response_message: null;
197
+ created_at: string;
198
+ updated_at: string;
199
+ }[];
200
+ };
201
+ export declare const recipientDetailCompanyMock: {
202
+ id: string;
203
+ merchant_recipient_id: string;
204
+ national_entity: string;
205
+ entity_type: string;
206
+ first_name: null;
207
+ last_name: null;
208
+ legal_name: string;
209
+ email: string;
210
+ account_id: string;
211
+ country: string;
212
+ created_at: string;
213
+ updated_at: string;
214
+ document: {
215
+ number: string;
216
+ type: string;
217
+ };
218
+ phone: {
219
+ country_code: string;
220
+ number: string;
221
+ };
222
+ address: {
223
+ address_line_1: string;
224
+ address_line_2: string;
225
+ city: string;
226
+ state: string;
227
+ zip_code: string;
228
+ country: string;
229
+ };
230
+ withdrawal_method: {
231
+ bank: {
232
+ code: string;
233
+ branch: string;
234
+ branch_digit: string;
235
+ account: string;
236
+ account_digit: string;
237
+ account_type: string;
238
+ routing: string;
239
+ country: string;
240
+ currency: string;
241
+ payout_schedule: null;
242
+ };
243
+ };
244
+ documentation: never[];
245
+ onboardings: {
246
+ id: string;
247
+ provider_id: string;
248
+ provider: {
249
+ name: string;
250
+ icon: string;
251
+ };
252
+ status: string;
253
+ response_message: string;
254
+ created_at: string;
255
+ updated_at: string;
256
+ }[];
257
+ };
258
+ export declare const recipientDetailNoOnboardingMock: {
259
+ id: string;
260
+ merchant_recipient_id: string;
261
+ national_entity: string;
262
+ entity_type: string;
263
+ first_name: string;
264
+ last_name: string;
265
+ legal_name: null;
266
+ email: string;
267
+ account_id: string;
268
+ country: string;
269
+ created_at: string;
270
+ updated_at: string;
271
+ document: {
272
+ number: string;
273
+ type: string;
274
+ };
275
+ phone: {
276
+ country_code: string;
277
+ number: string;
278
+ };
279
+ address: {
280
+ address_line_1: string;
281
+ address_line_2: null;
282
+ city: string;
283
+ state: string;
284
+ zip_code: string;
285
+ country: string;
286
+ };
287
+ withdrawal_method: null;
288
+ documentation: never[];
289
+ onboardings: never[];
290
+ };
291
+ export declare const onboardingDetailMock: {
292
+ id: string;
293
+ type: string;
294
+ workflow: string;
295
+ description: string;
296
+ status: string;
297
+ response_message: null;
298
+ callback_url: string;
299
+ provider: {
300
+ id: string;
301
+ connection_id: string;
302
+ redirect_url: null;
303
+ recipient_id: string;
304
+ recipient_additional_id: null;
305
+ onboarding_url: null;
306
+ legal_entity: null;
307
+ balance_account_id: string;
308
+ recipient_type: null;
309
+ raw_notification: null;
310
+ raw_response: null;
311
+ response_code: string;
312
+ response_message: string;
313
+ };
314
+ documentation: never[];
315
+ legal_representatives: never[];
316
+ withdrawal_methods: {
317
+ bank: {
318
+ code: string;
319
+ branch: string;
320
+ branch_digit: string;
321
+ account: string;
322
+ account_digit: string;
323
+ account_type: string;
324
+ routing: string;
325
+ country: string;
326
+ currency: string;
327
+ };
328
+ };
329
+ requirements: never[];
330
+ capabilities: {
331
+ payouts: {
332
+ status: string;
333
+ requirements: never[];
334
+ };
335
+ send_transfers: {
336
+ status: string;
337
+ requirements: never[];
338
+ };
339
+ receive_transfers: {
340
+ status: string;
341
+ requirements: never[];
342
+ };
343
+ payments: {
344
+ status: string;
345
+ requirements: never[];
346
+ };
347
+ };
348
+ terms_of_service: {
349
+ acceptance: boolean;
350
+ date: string;
351
+ ip: string;
352
+ };
353
+ metadata: never[];
354
+ created_at: string;
355
+ updated_at: string;
356
+ expires_at: null;
357
+ };
358
+ export declare const onboardingDetailPendingMock: {
359
+ id: string;
360
+ type: string;
361
+ workflow: string;
362
+ description: string;
363
+ status: string;
364
+ response_message: null;
365
+ callback_url: null;
366
+ provider: {
367
+ id: string;
368
+ connection_id: string;
369
+ redirect_url: null;
370
+ recipient_id: null;
371
+ recipient_additional_id: null;
372
+ onboarding_url: null;
373
+ legal_entity: null;
374
+ balance_account_id: null;
375
+ recipient_type: null;
376
+ raw_notification: null;
377
+ raw_response: null;
378
+ response_code: null;
379
+ response_message: null;
380
+ };
381
+ documentation: never[];
382
+ legal_representatives: never[];
383
+ withdrawal_methods: null;
384
+ requirements: never[];
385
+ capabilities: null;
386
+ terms_of_service: null;
387
+ metadata: never[];
388
+ created_at: string;
389
+ updated_at: string;
390
+ expires_at: null;
391
+ };
392
+ export declare const onboardingTimelineMock: ({
393
+ timestamp: string;
394
+ event_type: string;
395
+ status: string;
396
+ event_data: {
397
+ provider_id: string;
398
+ provider_status: null;
399
+ provider_response_code: null;
400
+ provider_response_message: null;
401
+ provider_recipient_id: null;
402
+ provider_redirect_url: null;
403
+ requirements: never[];
404
+ capabilities: null;
405
+ change_type: null;
406
+ };
407
+ } | {
408
+ timestamp: string;
409
+ event_type: string;
410
+ status: string;
411
+ event_data: {
412
+ provider_id: string;
413
+ provider_status: string;
414
+ provider_response_code: string;
415
+ provider_response_message: string;
416
+ provider_recipient_id: string;
417
+ provider_redirect_url: null;
418
+ requirements: never[];
419
+ capabilities: null;
420
+ change_type: null;
421
+ };
422
+ } | {
423
+ timestamp: string;
424
+ event_type: string;
425
+ status: string;
426
+ event_data: {
427
+ provider_id: string;
428
+ provider_status: string;
429
+ provider_response_code: string;
430
+ provider_response_message: string;
431
+ provider_recipient_id: string;
432
+ provider_redirect_url: null;
433
+ requirements: never[];
434
+ capabilities: {
435
+ payouts: {
436
+ status: string;
437
+ requirements: never[];
438
+ };
439
+ send_transfers: {
440
+ status: string;
441
+ requirements: never[];
442
+ };
443
+ receive_transfers: {
444
+ status: string;
445
+ requirements: never[];
446
+ };
447
+ payments: {
448
+ status: string;
449
+ requirements: never[];
450
+ };
451
+ };
452
+ change_type: null;
453
+ };
454
+ })[];
455
+ export declare const createRecipientMock: {
456
+ id: string;
457
+ merchant_recipient_id: null;
458
+ national_entity: string;
459
+ entity_type: string;
460
+ first_name: string;
461
+ last_name: string;
462
+ legal_name: null;
463
+ email: string;
464
+ account_id: string;
465
+ country: string;
466
+ created_at: string;
467
+ updated_at: string;
468
+ document: {
469
+ number: string;
470
+ type: string;
471
+ };
472
+ phone: {
473
+ country_code: string;
474
+ number: string;
475
+ };
476
+ address: null;
477
+ withdrawal_method: null;
478
+ documentation: never[];
479
+ onboardings: never[];
480
+ };
481
+ export declare const updateRecipientMock: {
482
+ updated_at: string;
483
+ id: string;
484
+ merchant_recipient_id: string;
485
+ national_entity: string;
486
+ entity_type: string;
487
+ first_name: string;
488
+ last_name: string;
489
+ legal_name: null;
490
+ email: string;
491
+ account_id: string;
492
+ country: string;
493
+ created_at: string;
494
+ document: {
495
+ number: string;
496
+ type: string;
497
+ };
498
+ phone: {
499
+ country_code: string;
500
+ number: string;
501
+ };
502
+ address: {
503
+ address_line_1: string;
504
+ address_line_2: string;
505
+ city: string;
506
+ state: string;
507
+ zip_code: string;
508
+ country: string;
509
+ };
510
+ withdrawal_method: {
511
+ bank: {
512
+ code: string;
513
+ branch: string;
514
+ branch_digit: string;
515
+ account: string;
516
+ account_digit: string;
517
+ account_type: string;
518
+ routing: string;
519
+ country: string;
520
+ currency: string;
521
+ payout_schedule: null;
522
+ };
523
+ };
524
+ documentation: never[];
525
+ onboardings: {
526
+ id: string;
527
+ provider_id: string;
528
+ provider: {
529
+ name: string;
530
+ icon: string;
531
+ };
532
+ status: string;
533
+ response_message: null;
534
+ created_at: string;
535
+ updated_at: string;
536
+ }[];
537
+ };
538
+ export declare const deleteRecipientMock: {
539
+ message: string;
540
+ };
541
+ export declare const createOnboardingMock: {
542
+ id: string;
543
+ type: string;
544
+ workflow: string;
545
+ description: string;
546
+ status: string;
547
+ response_message: null;
548
+ callback_url: null;
549
+ provider: {
550
+ id: string;
551
+ connection_id: string;
552
+ redirect_url: null;
553
+ recipient_id: null;
554
+ recipient_additional_id: null;
555
+ onboarding_url: null;
556
+ legal_entity: null;
557
+ balance_account_id: null;
558
+ recipient_type: null;
559
+ raw_notification: null;
560
+ raw_response: null;
561
+ response_code: null;
562
+ response_message: null;
563
+ };
564
+ documentation: never[];
565
+ legal_representatives: never[];
566
+ withdrawal_methods: null;
567
+ requirements: never[];
568
+ capabilities: null;
569
+ terms_of_service: null;
570
+ metadata: never[];
571
+ created_at: string;
572
+ updated_at: string;
573
+ expires_at: null;
574
+ };
575
+ export declare const updateOnboardingMock: {
576
+ updated_at: string;
577
+ id: string;
578
+ type: string;
579
+ workflow: string;
580
+ description: string;
581
+ status: string;
582
+ response_message: null;
583
+ callback_url: string;
584
+ provider: {
585
+ id: string;
586
+ connection_id: string;
587
+ redirect_url: null;
588
+ recipient_id: string;
589
+ recipient_additional_id: null;
590
+ onboarding_url: null;
591
+ legal_entity: null;
592
+ balance_account_id: string;
593
+ recipient_type: null;
594
+ raw_notification: null;
595
+ raw_response: null;
596
+ response_code: string;
597
+ response_message: string;
598
+ };
599
+ documentation: never[];
600
+ legal_representatives: never[];
601
+ withdrawal_methods: {
602
+ bank: {
603
+ code: string;
604
+ branch: string;
605
+ branch_digit: string;
606
+ account: string;
607
+ account_digit: string;
608
+ account_type: string;
609
+ routing: string;
610
+ country: string;
611
+ currency: string;
612
+ };
613
+ };
614
+ requirements: never[];
615
+ capabilities: {
616
+ payouts: {
617
+ status: string;
618
+ requirements: never[];
619
+ };
620
+ send_transfers: {
621
+ status: string;
622
+ requirements: never[];
623
+ };
624
+ receive_transfers: {
625
+ status: string;
626
+ requirements: never[];
627
+ };
628
+ payments: {
629
+ status: string;
630
+ requirements: never[];
631
+ };
632
+ };
633
+ terms_of_service: {
634
+ acceptance: boolean;
635
+ date: string;
636
+ ip: string;
637
+ };
638
+ metadata: never[];
639
+ created_at: string;
640
+ expires_at: null;
641
+ };
642
+ export declare const blockOnboardingMock: {
643
+ status: string;
644
+ updated_at: string;
645
+ id: string;
646
+ type: string;
647
+ workflow: string;
648
+ description: string;
649
+ response_message: null;
650
+ callback_url: string;
651
+ provider: {
652
+ id: string;
653
+ connection_id: string;
654
+ redirect_url: null;
655
+ recipient_id: string;
656
+ recipient_additional_id: null;
657
+ onboarding_url: null;
658
+ legal_entity: null;
659
+ balance_account_id: string;
660
+ recipient_type: null;
661
+ raw_notification: null;
662
+ raw_response: null;
663
+ response_code: string;
664
+ response_message: string;
665
+ };
666
+ documentation: never[];
667
+ legal_representatives: never[];
668
+ withdrawal_methods: {
669
+ bank: {
670
+ code: string;
671
+ branch: string;
672
+ branch_digit: string;
673
+ account: string;
674
+ account_digit: string;
675
+ account_type: string;
676
+ routing: string;
677
+ country: string;
678
+ currency: string;
679
+ };
680
+ };
681
+ requirements: never[];
682
+ capabilities: {
683
+ payouts: {
684
+ status: string;
685
+ requirements: never[];
686
+ };
687
+ send_transfers: {
688
+ status: string;
689
+ requirements: never[];
690
+ };
691
+ receive_transfers: {
692
+ status: string;
693
+ requirements: never[];
694
+ };
695
+ payments: {
696
+ status: string;
697
+ requirements: never[];
698
+ };
699
+ };
700
+ terms_of_service: {
701
+ acceptance: boolean;
702
+ date: string;
703
+ ip: string;
704
+ };
705
+ metadata: never[];
706
+ created_at: string;
707
+ expires_at: null;
708
+ };
709
+ export declare const unblockOnboardingMock: {
710
+ status: string;
711
+ updated_at: string;
712
+ id: string;
713
+ type: string;
714
+ workflow: string;
715
+ description: string;
716
+ response_message: null;
717
+ callback_url: string;
718
+ provider: {
719
+ id: string;
720
+ connection_id: string;
721
+ redirect_url: null;
722
+ recipient_id: string;
723
+ recipient_additional_id: null;
724
+ onboarding_url: null;
725
+ legal_entity: null;
726
+ balance_account_id: string;
727
+ recipient_type: null;
728
+ raw_notification: null;
729
+ raw_response: null;
730
+ response_code: string;
731
+ response_message: string;
732
+ };
733
+ documentation: never[];
734
+ legal_representatives: never[];
735
+ withdrawal_methods: {
736
+ bank: {
737
+ code: string;
738
+ branch: string;
739
+ branch_digit: string;
740
+ account: string;
741
+ account_digit: string;
742
+ account_type: string;
743
+ routing: string;
744
+ country: string;
745
+ currency: string;
746
+ };
747
+ };
748
+ requirements: never[];
749
+ capabilities: {
750
+ payouts: {
751
+ status: string;
752
+ requirements: never[];
753
+ };
754
+ send_transfers: {
755
+ status: string;
756
+ requirements: never[];
757
+ };
758
+ receive_transfers: {
759
+ status: string;
760
+ requirements: never[];
761
+ };
762
+ payments: {
763
+ status: string;
764
+ requirements: never[];
765
+ };
766
+ };
767
+ terms_of_service: {
768
+ acceptance: boolean;
769
+ date: string;
770
+ ip: string;
771
+ };
772
+ metadata: never[];
773
+ created_at: string;
774
+ expires_at: null;
775
+ };