@yuno-payments/dashboard-api-mfe 0.43.0-metadata-beta.1 → 0.43.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.
Files changed (94) hide show
  1. package/build/cjs/index.js +6 -6
  2. package/build/cjs/index.js.map +1 -1
  3. package/build/cjs/types/api/api.d.ts +61 -7
  4. package/build/cjs/types/api/api.test.d.ts +1 -0
  5. package/build/cjs/types/api/api.types.d.ts +28 -0
  6. package/build/cjs/types/msw/handlers/reconciliation-insights.d.ts +1 -0
  7. package/build/cjs/types/msw/mocks/reconciliation-insights/index.d.ts +22 -0
  8. package/build/cjs/types/mutations/connections/connections.mutation.d.ts +2 -2
  9. package/build/cjs/types/mutations/developers/developers.mutation.d.ts +3 -0
  10. package/build/cjs/types/mutations/developers/index.d.ts +1 -0
  11. package/build/cjs/types/mutations/developers/types.d.ts +5 -0
  12. package/build/cjs/types/mutations/index.d.ts +2 -0
  13. package/build/cjs/types/mutations/organization-config/index.d.ts +1 -0
  14. package/build/cjs/types/mutations/organization-config/organization-config.mutation.d.ts +6 -0
  15. package/build/cjs/types/mutations/reports/reports.mutation.d.ts +1 -0
  16. package/build/cjs/types/mutations/subscriptions/index.d.ts +1 -0
  17. package/build/cjs/types/mutations/subscriptions/subscriptions.mutation.d.ts +19 -0
  18. package/build/cjs/types/queries/audit/audit.query.d.ts +1 -0
  19. package/build/cjs/types/queries/developers/developers.query.d.ts +3 -1
  20. package/build/cjs/types/queries/index.d.ts +3 -0
  21. package/build/cjs/types/queries/network-tokens/network-tokens.query.d.ts +2 -3
  22. package/build/cjs/types/queries/organization-config/index.d.ts +1 -0
  23. package/build/cjs/types/queries/organization-config/organization-config.query.d.ts +4 -0
  24. package/build/cjs/types/queries/payments/payouts-timeline.query.test.d.ts +1 -0
  25. package/build/cjs/types/queries/payments/payouts.query.d.ts +1 -0
  26. package/build/cjs/types/queries/recipients/index.d.ts +1 -0
  27. package/build/cjs/types/queries/recipients/recipients.query.d.ts +8 -0
  28. package/build/cjs/types/queries/reconciliations/index.d.ts +1 -0
  29. package/build/cjs/types/queries/reconciliations/reconciliation-insights.query.d.ts +23 -0
  30. package/build/cjs/types/queries/reconciliations/reconciliation-insights.query.test.d.ts +1 -0
  31. package/build/cjs/types/queries/subscriptions/index.d.ts +1 -0
  32. package/build/cjs/types/queries/subscriptions/subscriptions.query.d.ts +3 -0
  33. package/build/cjs/types/types/audit/audit.d.ts +14 -0
  34. package/build/cjs/types/types/connection/connection.d.ts +23 -15
  35. package/build/cjs/types/types/data-report/data-report.d.ts +23 -8
  36. package/build/cjs/types/types/data-report/fraud.types.d.ts +1 -0
  37. package/build/cjs/types/types/index.d.ts +2 -0
  38. package/build/cjs/types/types/organization-config/index.d.ts +1 -0
  39. package/build/cjs/types/types/organization-config/organization-config.d.ts +34 -0
  40. package/build/cjs/types/types/payouts/payouts.d.ts +20 -0
  41. package/build/cjs/types/types/recipients/index.d.ts +1 -0
  42. package/build/cjs/types/types/recipients/recipients.d.ts +216 -0
  43. package/build/cjs/types/types/reconciliation/index.d.ts +1 -0
  44. package/build/cjs/types/types/reconciliation/reconciliation-insights.d.ts +172 -0
  45. package/build/cjs/types/types/reports/reports.d.ts +4 -0
  46. package/build/cjs/types/types/webhook/webhook.d.ts +6 -0
  47. package/build/esm/index.js +6 -6
  48. package/build/esm/index.js.map +1 -1
  49. package/build/esm/types/api/api.d.ts +61 -7
  50. package/build/esm/types/api/api.test.d.ts +1 -0
  51. package/build/esm/types/api/api.types.d.ts +28 -0
  52. package/build/esm/types/msw/handlers/reconciliation-insights.d.ts +1 -0
  53. package/build/esm/types/msw/mocks/reconciliation-insights/index.d.ts +22 -0
  54. package/build/esm/types/mutations/connections/connections.mutation.d.ts +2 -2
  55. package/build/esm/types/mutations/developers/developers.mutation.d.ts +3 -0
  56. package/build/esm/types/mutations/developers/index.d.ts +1 -0
  57. package/build/esm/types/mutations/developers/types.d.ts +5 -0
  58. package/build/esm/types/mutations/index.d.ts +2 -0
  59. package/build/esm/types/mutations/organization-config/index.d.ts +1 -0
  60. package/build/esm/types/mutations/organization-config/organization-config.mutation.d.ts +6 -0
  61. package/build/esm/types/mutations/reports/reports.mutation.d.ts +1 -0
  62. package/build/esm/types/mutations/subscriptions/index.d.ts +1 -0
  63. package/build/esm/types/mutations/subscriptions/subscriptions.mutation.d.ts +19 -0
  64. package/build/esm/types/queries/audit/audit.query.d.ts +1 -0
  65. package/build/esm/types/queries/developers/developers.query.d.ts +3 -1
  66. package/build/esm/types/queries/index.d.ts +3 -0
  67. package/build/esm/types/queries/network-tokens/network-tokens.query.d.ts +2 -3
  68. package/build/esm/types/queries/organization-config/index.d.ts +1 -0
  69. package/build/esm/types/queries/organization-config/organization-config.query.d.ts +4 -0
  70. package/build/esm/types/queries/payments/payouts-timeline.query.test.d.ts +1 -0
  71. package/build/esm/types/queries/payments/payouts.query.d.ts +1 -0
  72. package/build/esm/types/queries/recipients/index.d.ts +1 -0
  73. package/build/esm/types/queries/recipients/recipients.query.d.ts +8 -0
  74. package/build/esm/types/queries/reconciliations/index.d.ts +1 -0
  75. package/build/esm/types/queries/reconciliations/reconciliation-insights.query.d.ts +23 -0
  76. package/build/esm/types/queries/reconciliations/reconciliation-insights.query.test.d.ts +1 -0
  77. package/build/esm/types/queries/subscriptions/index.d.ts +1 -0
  78. package/build/esm/types/queries/subscriptions/subscriptions.query.d.ts +3 -0
  79. package/build/esm/types/types/audit/audit.d.ts +14 -0
  80. package/build/esm/types/types/connection/connection.d.ts +23 -15
  81. package/build/esm/types/types/data-report/data-report.d.ts +23 -8
  82. package/build/esm/types/types/data-report/fraud.types.d.ts +1 -0
  83. package/build/esm/types/types/index.d.ts +2 -0
  84. package/build/esm/types/types/organization-config/index.d.ts +1 -0
  85. package/build/esm/types/types/organization-config/organization-config.d.ts +34 -0
  86. package/build/esm/types/types/payouts/payouts.d.ts +20 -0
  87. package/build/esm/types/types/recipients/index.d.ts +1 -0
  88. package/build/esm/types/types/recipients/recipients.d.ts +216 -0
  89. package/build/esm/types/types/reconciliation/index.d.ts +1 -0
  90. package/build/esm/types/types/reconciliation/reconciliation-insights.d.ts +172 -0
  91. package/build/esm/types/types/reports/reports.d.ts +4 -0
  92. package/build/esm/types/types/webhook/webhook.d.ts +6 -0
  93. package/build/index.d.ts +676 -34
  94. package/package.json +4 -4
package/build/index.d.ts CHANGED
@@ -199,6 +199,12 @@ interface GetPaymentsParams {
199
199
  enabled?: boolean;
200
200
  account_code?: string;
201
201
  payment_link_code?: string;
202
+ metadata?: Array<{
203
+ field: string;
204
+ formatType: 'TEXT' | 'NUMBER';
205
+ type: string;
206
+ values: string | string[];
207
+ }>;
202
208
  }
203
209
  interface GetPaymentsEvaluatedParams {
204
210
  start_date: string | Date;
@@ -320,6 +326,12 @@ interface GetTransactionsParams {
320
326
  page?: number;
321
327
  size?: number;
322
328
  account_code?: string;
329
+ metadata?: Array<{
330
+ field: string;
331
+ formatType: 'TEXT' | 'NUMBER';
332
+ type: string;
333
+ values: string | string[];
334
+ }>;
323
335
  }
324
336
  interface GetPayoutDetail {
325
337
  payout_code: string;
@@ -389,6 +401,22 @@ interface PinnedSections {
389
401
  sections: string[];
390
402
  };
391
403
  }
404
+ interface ListSubscriptionsParams {
405
+ organization_code: string;
406
+ account_codes?: string[];
407
+ start_date?: string;
408
+ end_date?: string;
409
+ statuses?: string[];
410
+ countries?: string[];
411
+ payment_method_types?: string[];
412
+ page?: number;
413
+ size?: number;
414
+ merchant_reference?: string;
415
+ subscription_id?: string;
416
+ payment_id?: string;
417
+ customer_search?: string;
418
+ timezone?: string;
419
+ }
392
420
 
393
421
  declare namespace Accounts {
394
422
  type PermissionsList = {
@@ -1083,22 +1111,30 @@ declare namespace Connection {
1083
1111
  }
1084
1112
  ];
1085
1113
  };
1114
+ interface NetworkTokensOnboardingMerchantData {
1115
+ network_token: NetworkTokensOnboardingData | null;
1116
+ account_codes: string[];
1117
+ }
1086
1118
  interface NetworkTokensOnboardingData {
1087
- name: string;
1088
- legal_name: string;
1089
- website: string;
1090
- identification_type: string;
1091
- identification_number: string;
1092
- address_line_1: string;
1093
- address_line_2: string;
1094
- city: string;
1095
- state: string;
1096
- country: string;
1097
- zip_code: string;
1098
- phone: string;
1099
- contact_first_name: string;
1100
- contact_last_name: string;
1101
- contact_email: string;
1119
+ name: string | null;
1120
+ legal_name: string | null;
1121
+ website: string | null;
1122
+ identification_type: string | null;
1123
+ identification_number: string | null;
1124
+ address_line_1: string | null;
1125
+ address_line_2: string | null;
1126
+ city: string | null;
1127
+ state: string | null;
1128
+ country: string | null;
1129
+ zip_code: string | null;
1130
+ phone: string | null;
1131
+ contact_first_name: string | null;
1132
+ contact_last_name: string | null;
1133
+ contact_email: string | null;
1134
+ merchant_category_code: string | null;
1135
+ country_code: string | null;
1136
+ }
1137
+ interface NetworkTokensOnboardingMerchantRequest extends NetworkTokensOnboardingData {
1102
1138
  account_codes: string[];
1103
1139
  }
1104
1140
  }
@@ -1295,6 +1331,9 @@ declare namespace Webhook {
1295
1331
  payment_triggers?: Array<IWebhooksTriggers>;
1296
1332
  report_triggers?: Array<IWebhooksTriggers>;
1297
1333
  customer_triggers?: Array<IWebhooksTriggers>;
1334
+ subscription_triggers?: Array<IWebhooksTriggers>;
1335
+ onboarding_triggers?: Array<IWebhooksTriggers>;
1336
+ reports_v2_triggers?: Array<IWebhooksTriggers>;
1298
1337
  created_at: string;
1299
1338
  updated_at?: string;
1300
1339
  }
@@ -1311,6 +1350,9 @@ declare namespace Webhook {
1311
1350
  payment_triggers?: Array<IWebhooksTriggers>;
1312
1351
  report_triggers?: Array<IWebhooksTriggers>;
1313
1352
  customer_triggers?: Array<IWebhooksTriggers>;
1353
+ subscription_triggers?: Array<IWebhooksTriggers>;
1354
+ onboarding_triggers?: Array<IWebhooksTriggers>;
1355
+ reports_v2_triggers?: Array<IWebhooksTriggers>;
1314
1356
  created_at: string;
1315
1357
  updated_at?: string;
1316
1358
  }
@@ -1858,6 +1900,10 @@ declare namespace Reports {
1858
1900
  metadata_fields?: string[];
1859
1901
  type: string;
1860
1902
  }
1903
+ interface IDeletePaymentsReportTemplate {
1904
+ name: string;
1905
+ type: string;
1906
+ }
1861
1907
  interface IColumn {
1862
1908
  key: string;
1863
1909
  name: string;
@@ -2449,7 +2495,7 @@ declare namespace Team {
2449
2495
  }
2450
2496
 
2451
2497
  declare namespace DataReport {
2452
- enum InsightsVolumeMetricsV2Path {
2498
+ export enum InsightsVolumeMetricsV2Path {
2453
2499
  REFUNDS_AND_CHARGEBACKS = "refunds-and-chargebacks",
2454
2500
  APPROVED_PAYMENTS = "approved-payments",
2455
2501
  PAYMENT_METHODS = "payment-methods",
@@ -2458,7 +2504,7 @@ declare namespace DataReport {
2458
2504
  UNIQUE_CUSTOMER_PAYMENTS = "unique-customer-payments",
2459
2505
  TOTAL_PAYMENTS = "total-payments"
2460
2506
  }
2461
- interface SmartRouting {
2507
+ export interface SmartRouting {
2462
2508
  version: string;
2463
2509
  code_integration: string;
2464
2510
  Conditions: {
@@ -2471,33 +2517,48 @@ declare namespace DataReport {
2471
2517
  cost: number;
2472
2518
  }[];
2473
2519
  }
2474
- enum OverviewMetricType {
2520
+ export enum OverviewMetricType {
2475
2521
  GENERAL = "volume-and-total-payments",
2476
2522
  LATENCY = "provider-latency",
2477
2523
  STATUS = "status",
2478
2524
  SUBSCRIPTIONS = "subscriptions"
2479
2525
  }
2480
- interface InsightMetricParams {
2481
- [a: string]: string | boolean | number | string[] | undefined;
2526
+ interface MetadataField {
2527
+ field: string;
2528
+ formatType: 'TEXT' | 'NUMBER';
2529
+ type: string;
2530
+ values: string | string[];
2531
+ }
2532
+ interface MetadataFieldFilter {
2533
+ key: string;
2534
+ conditional: string;
2535
+ values: string | string[];
2536
+ }
2537
+ export interface InsightMetricParams {
2538
+ [a: string]: string | boolean | number | string[] | MetadataField[] | undefined;
2482
2539
  account_code?: string;
2483
2540
  connection_name?: string;
2541
+ metadata?: MetadataField[];
2484
2542
  }
2485
- interface InsightMetricBody {
2543
+ export interface InsightMetricBody {
2486
2544
  account_codes?: string[];
2487
2545
  account_code?: string[];
2488
2546
  connection_name?: string[];
2547
+ metadata_filters?: MetadataFieldFilter[];
2548
+ metadata?: MetadataField[];
2489
2549
  }
2490
- interface InsightExportParams {
2550
+ export interface InsightExportParams {
2491
2551
  type?: string;
2492
2552
  code?: string;
2493
2553
  }
2494
- interface InsightsHomeMetrics {
2554
+ export interface InsightsHomeMetrics {
2495
2555
  account_codes?: string[];
2496
2556
  organization_code?: string;
2497
2557
  currency_code?: string;
2498
2558
  timezone?: string;
2499
2559
  isLiveMode?: boolean;
2500
2560
  }
2561
+ export {};
2501
2562
  }
2502
2563
 
2503
2564
  interface InsightsFraudParams {
@@ -2659,6 +2720,7 @@ interface InsightsChargebacksByCardBrand {
2659
2720
  card_brand: string;
2660
2721
  total_payments: number;
2661
2722
  total_amount: number;
2723
+ total_amount_chargeback: number;
2662
2724
  total_payments_succeeded: number;
2663
2725
  total_chargeback: number;
2664
2726
  chargeback_rate: number;
@@ -3370,6 +3432,179 @@ declare namespace ReconciliationFees {
3370
3432
  }
3371
3433
  }
3372
3434
 
3435
+ declare namespace ReconciliationInsights {
3436
+ interface BaseFilters {
3437
+ accounts: string[];
3438
+ start_date: string;
3439
+ end_date: string;
3440
+ countries?: string[];
3441
+ currency_codes?: string[];
3442
+ }
3443
+ export interface BaseFiltersWithProvider extends BaseFilters {
3444
+ providers?: string[];
3445
+ }
3446
+ export interface BaseFiltersWithAcquirer extends BaseFilters {
3447
+ acquirers?: string[];
3448
+ }
3449
+ export interface ListFiltersWithProvider extends BaseFiltersWithProvider {
3450
+ page?: number;
3451
+ page_size?: number;
3452
+ }
3453
+ export interface ListFiltersWithAcquirer extends BaseFiltersWithAcquirer {
3454
+ page?: number;
3455
+ page_size?: number;
3456
+ }
3457
+ export type DateFilterType = 'by_settlement_date' | 'by_transaction_date';
3458
+ export interface SummaryTotal {
3459
+ transactions: number;
3460
+ amount_local: number;
3461
+ amount_usd: number;
3462
+ }
3463
+ export interface GenericSummaryItem extends SummaryTotal {
3464
+ id: string;
3465
+ }
3466
+ export interface NotReconciledSummaryItem extends GenericSummaryItem {
3467
+ total_transactions: number;
3468
+ }
3469
+ export interface ReconciledSummaryItem extends GenericSummaryItem {
3470
+ transaction_type: string;
3471
+ }
3472
+ export interface GenericChartSummary<T = GenericSummaryItem> {
3473
+ data: T[];
3474
+ total: SummaryTotal;
3475
+ }
3476
+ export interface ChartWithGraph {
3477
+ total_amount_usd: number;
3478
+ chart_data: Array<{
3479
+ date: string;
3480
+ amount_usd: number;
3481
+ }>;
3482
+ }
3483
+ export interface AggregatorByCurrency extends SummaryTotal {
3484
+ currency_code: string;
3485
+ }
3486
+ export interface AggregatorByConnection extends SummaryTotal {
3487
+ connection_name: string;
3488
+ }
3489
+ export interface AggregatorByBrand extends SummaryTotal {
3490
+ brand: string;
3491
+ }
3492
+ export interface AggregatorByPaymentMethod extends SummaryTotal {
3493
+ payment_method: string;
3494
+ }
3495
+ export interface Aggregators {
3496
+ by_currency: AggregatorByCurrency[];
3497
+ by_connection: AggregatorByConnection[];
3498
+ by_brand: AggregatorByBrand[];
3499
+ by_payment_method: AggregatorByPaymentMethod[];
3500
+ total: SummaryTotal;
3501
+ }
3502
+ export interface ConflictDateAggregatorItem extends SummaryTotal {
3503
+ date: string;
3504
+ }
3505
+ export interface ConflictDateAggregators {
3506
+ data: ConflictDateAggregatorItem[];
3507
+ total: SummaryTotal;
3508
+ }
3509
+ export interface PaginationInfo {
3510
+ total: number;
3511
+ page: number;
3512
+ page_size: number;
3513
+ total_pages: number;
3514
+ }
3515
+ export interface ReconciliationOverviewItem {
3516
+ authorization_code: string;
3517
+ card_category: string;
3518
+ country: string;
3519
+ created_at: string;
3520
+ currency: string;
3521
+ payment_method_category: string;
3522
+ provider_id: string;
3523
+ reconciliation_status: string;
3524
+ reconciliation_sub_status: string;
3525
+ }
3526
+ export interface ReconciliationOverviewList {
3527
+ data: ReconciliationOverviewItem[];
3528
+ pagination: PaginationInfo;
3529
+ }
3530
+ export interface SettlementAndFeeItem {
3531
+ transaction_id: string;
3532
+ transaction_date: string;
3533
+ acquirer: string;
3534
+ authorization_code: string;
3535
+ card_brand: string;
3536
+ card_iin: string;
3537
+ card_lfd: string;
3538
+ card_type: string;
3539
+ country: string;
3540
+ currency: string;
3541
+ fee_status: string;
3542
+ fee_sub_status: string;
3543
+ fee_taxes_diff: number;
3544
+ calculated_fix_costed_fee: number;
3545
+ calculated_percentage_cost: number;
3546
+ percentage_cost: number;
3547
+ merchant_order_id: string;
3548
+ provider_transaction_id: string;
3549
+ reconciliation_status: string;
3550
+ reconciliation_sub_status: string;
3551
+ type: string;
3552
+ }
3553
+ export interface SettlementAndFeeList {
3554
+ data: SettlementAndFeeItem[];
3555
+ pagination: PaginationInfo;
3556
+ }
3557
+ export interface ProcessedTransactionItem {
3558
+ transaction_id: string;
3559
+ acquirer: string;
3560
+ amount: number;
3561
+ authorization_code: string;
3562
+ card_brand: string;
3563
+ card_iin: string;
3564
+ card_lfd: string;
3565
+ card_type: string;
3566
+ confirmation_status: string;
3567
+ country: string;
3568
+ created_at: string;
3569
+ currency: string;
3570
+ merchant_order_id: string;
3571
+ merchant_transaction_id: string;
3572
+ payment_id: string;
3573
+ provider_status: string;
3574
+ provider_transaction_id: string;
3575
+ response_code: string;
3576
+ status: string;
3577
+ type: string;
3578
+ }
3579
+ export interface ProcessedTransactionList {
3580
+ data: ProcessedTransactionItem[];
3581
+ pagination: PaginationInfo;
3582
+ }
3583
+ export interface ConflictsSummary {
3584
+ not_reconciled: GenericChartSummary<NotReconciledSummaryItem>;
3585
+ status_conflict: GenericChartSummary;
3586
+ amount_conflict: GenericChartSummary;
3587
+ }
3588
+ export interface UseInsightsQueryProps<T> {
3589
+ body: T;
3590
+ enabled?: boolean;
3591
+ }
3592
+ export interface UseInsightsQueryWithDateFilterProps<T> {
3593
+ body: T;
3594
+ dateFilter?: DateFilterType;
3595
+ enabled?: boolean;
3596
+ }
3597
+ export interface UseInsightsListQueryProps<T> {
3598
+ body: T;
3599
+ enabled?: boolean;
3600
+ }
3601
+ export interface Error {
3602
+ code?: string;
3603
+ message?: string;
3604
+ }
3605
+ export {};
3606
+ }
3607
+
3373
3608
  declare namespace FraudScreening {
3374
3609
  interface BlackList {
3375
3610
  account_code: string;
@@ -3566,6 +3801,7 @@ declare namespace Payouts {
3566
3801
  status: string;
3567
3802
  sub_status: string;
3568
3803
  merchant_reference: string;
3804
+ trace_id?: string;
3569
3805
  purpose: string;
3570
3806
  account_code: string;
3571
3807
  organization_code: string;
@@ -3628,6 +3864,25 @@ declare namespace Payouts {
3628
3864
  document_number: string;
3629
3865
  document_type: string;
3630
3866
  }
3867
+ interface TimelineEvent {
3868
+ id: number;
3869
+ payout_id?: string;
3870
+ transaction_id?: string;
3871
+ category?: string;
3872
+ code: string;
3873
+ description?: string;
3874
+ status?: string;
3875
+ amount?: number;
3876
+ provider_data?: Record<string, unknown>;
3877
+ withdrawal_method_type?: string;
3878
+ type?: string;
3879
+ metadata?: Record<string, unknown>;
3880
+ created_at: string;
3881
+ updated_at?: string;
3882
+ }
3883
+ interface Timeline {
3884
+ events: TimelineEvent[];
3885
+ }
3631
3886
  }
3632
3887
 
3633
3888
  declare namespace Audit {
@@ -3835,6 +4090,20 @@ declare namespace Audit {
3835
4090
  interface AuditWebhooksResendParams {
3836
4091
  codes: string[];
3837
4092
  }
4093
+ interface ApiLogByTransactionCode {
4094
+ code: string;
4095
+ url: string;
4096
+ method: string;
4097
+ source: string;
4098
+ headers: AuditApiJSON;
4099
+ request: AuditApiJSON;
4100
+ response: AuditApiJSON;
4101
+ account_name: string;
4102
+ account_code: string;
4103
+ status_code: number;
4104
+ trace_id: string;
4105
+ created_at: string;
4106
+ }
3838
4107
  }
3839
4108
 
3840
4109
  declare namespace PaymentLinks {
@@ -4413,6 +4682,258 @@ declare namespace TemplateReporting {
4413
4682
  type ScheduleWithExecutions = ScheduleWithExecutions;
4414
4683
  }
4415
4684
 
4685
+ declare namespace OrganizationConfig {
4686
+ enum ConfigType {
4687
+ YUNO_SMART_TOKENS = "YUNO_SMART_TOKENS",
4688
+ CUSTOM_ROUTING_RULES = "CUSTOM_ROUTING_RULES",
4689
+ CUSTOM_RETRY_DECLINED_WITH_PAN = "CUSTOM_RETRY_DECLINED_WITH_PAN"
4690
+ }
4691
+ interface OrganizationConfigItem {
4692
+ id: number;
4693
+ organization_code: string;
4694
+ account_code: string;
4695
+ config: ConfigType;
4696
+ created_at: string;
4697
+ updated_at: string;
4698
+ }
4699
+ interface GetConfigsResponse {
4700
+ organization_configs: OrganizationConfigItem[];
4701
+ }
4702
+ interface PostConfigsRequest {
4703
+ yuno_smart_tokens_config?: string[];
4704
+ custom_routing_rules_config?: string[];
4705
+ custom_retry_with_pan_config?: string[];
4706
+ }
4707
+ interface PostConfigsResponse {
4708
+ created: OrganizationConfigItem[];
4709
+ }
4710
+ interface PutConfigsByAccountRequest {
4711
+ yuno_smart_tokens_config?: string[];
4712
+ custom_routing_rules_config?: string[];
4713
+ custom_retry_with_pan_config?: string[];
4714
+ }
4715
+ interface PutConfigsByAccountResponse {
4716
+ updated: OrganizationConfigItem[];
4717
+ }
4718
+ }
4719
+
4720
+ declare namespace Recipients {
4721
+ interface Document {
4722
+ number: string | null;
4723
+ type: string | null;
4724
+ }
4725
+ interface Phone {
4726
+ country_code: string | null;
4727
+ number: string | null;
4728
+ }
4729
+ interface Address {
4730
+ address_line_1: string | null;
4731
+ address_line_2: string | null;
4732
+ country: string | null;
4733
+ city: string | null;
4734
+ state: string | null;
4735
+ zip_code: string | null;
4736
+ }
4737
+ interface Bank {
4738
+ code: string | null;
4739
+ branch: string | null;
4740
+ branch_digit: string | null;
4741
+ account: string | null;
4742
+ account_digit: string | null;
4743
+ account_type: string | null;
4744
+ routing: string | null;
4745
+ country: string | null;
4746
+ currency: string | null;
4747
+ payout_schedule?: string | null;
4748
+ }
4749
+ interface WithdrawalMethod {
4750
+ bank: Bank | null;
4751
+ }
4752
+ interface Documentation {
4753
+ file_name: string;
4754
+ content_type: string;
4755
+ content_category: string;
4756
+ content: string | null;
4757
+ }
4758
+ interface OnboardingSummary {
4759
+ id: string;
4760
+ provider_id: string;
4761
+ status: string;
4762
+ created_at: string;
4763
+ }
4764
+ interface RecipientListItem {
4765
+ id: string;
4766
+ merchant_recipient_id: string | null;
4767
+ national_entity: string;
4768
+ entity_type: string | null;
4769
+ country: string;
4770
+ first_name: string | null;
4771
+ last_name: string | null;
4772
+ legal_name: string | null;
4773
+ email: string | null;
4774
+ account_id: string;
4775
+ date_of_birth: string | null;
4776
+ website: string | null;
4777
+ industry: string | null;
4778
+ merchant_category_code: string | null;
4779
+ created_at: string;
4780
+ updated_at: string;
4781
+ }
4782
+ interface Pagination {
4783
+ page: number;
4784
+ page_size: number;
4785
+ total_items: number;
4786
+ total_pages: number;
4787
+ has_next: boolean;
4788
+ has_previous: boolean;
4789
+ }
4790
+ interface RecipientListResponse {
4791
+ data: RecipientListItem[];
4792
+ pagination: Pagination;
4793
+ }
4794
+ interface RecipientDetail {
4795
+ id: string;
4796
+ merchant_recipient_id: string | null;
4797
+ national_entity: string;
4798
+ entity_type: string | null;
4799
+ country: string;
4800
+ first_name: string | null;
4801
+ last_name: string | null;
4802
+ legal_name: string | null;
4803
+ email: string | null;
4804
+ account_id: string;
4805
+ created_at: string;
4806
+ updated_at: string;
4807
+ document: Document | null;
4808
+ phone: Phone | null;
4809
+ address: Address | null;
4810
+ withdrawal_method: WithdrawalMethod | null;
4811
+ documentation: Documentation[];
4812
+ onboardings: OnboardingSummary[];
4813
+ }
4814
+ interface OnboardingProvider {
4815
+ id: string | null;
4816
+ connection_id: string | null;
4817
+ redirect_url: string | null;
4818
+ recipient_id: string | null;
4819
+ recipient_additional_id: string | null;
4820
+ onboarding_url: string | null;
4821
+ legal_entity: string | null;
4822
+ balance_account_id: string | null;
4823
+ recipient_type: string | null;
4824
+ raw_notification: string | null;
4825
+ raw_response: string | null;
4826
+ response_code: string | null;
4827
+ response_message: string | null;
4828
+ }
4829
+ interface LegalRepresentativeDocument {
4830
+ type: string | null;
4831
+ number: string | null;
4832
+ }
4833
+ interface LegalRepresentative {
4834
+ first_name: string | null;
4835
+ last_name: string | null;
4836
+ email: string | null;
4837
+ document: LegalRepresentativeDocument | null;
4838
+ phone: Phone | null;
4839
+ address: Address | null;
4840
+ date_of_birth: string | null;
4841
+ }
4842
+ interface Requirement {
4843
+ field: string | null;
4844
+ message: string | null;
4845
+ status: string | null;
4846
+ }
4847
+ interface CapabilityRequirement {
4848
+ provider_response_code: string | null;
4849
+ provider_response_message: string | null;
4850
+ provider_response_field: string | null;
4851
+ message: string | null;
4852
+ status: string | null;
4853
+ }
4854
+ interface Capability {
4855
+ status: string | null;
4856
+ requirements: CapabilityRequirement[];
4857
+ }
4858
+ interface Capabilities {
4859
+ payouts: Capability | null;
4860
+ send_transfers: Capability | null;
4861
+ receive_transfers: Capability | null;
4862
+ payments: Capability | null;
4863
+ }
4864
+ interface TermsOfService {
4865
+ acceptance: boolean | null;
4866
+ date: string | null;
4867
+ ip: string | null;
4868
+ }
4869
+ interface Metadata {
4870
+ key: string;
4871
+ value: string;
4872
+ }
4873
+ interface OnboardingDetail {
4874
+ id: string;
4875
+ type: string;
4876
+ workflow: string;
4877
+ description: string | null;
4878
+ status: string;
4879
+ response_message: string | null;
4880
+ callback_url: string | null;
4881
+ provider: OnboardingProvider | null;
4882
+ documentation: Documentation[];
4883
+ legal_representatives: LegalRepresentative[];
4884
+ withdrawal_methods: WithdrawalMethod | null;
4885
+ requirements: Requirement[];
4886
+ capabilities: Capabilities | null;
4887
+ terms_of_service: TermsOfService | null;
4888
+ metadata: Metadata[];
4889
+ created_at: string;
4890
+ updated_at: string;
4891
+ expires_at: string | null;
4892
+ }
4893
+ interface TimelineEventData {
4894
+ provider_id?: string | null;
4895
+ provider_status?: string | null;
4896
+ provider_response_code?: string | null;
4897
+ provider_response_message?: string | null;
4898
+ provider_recipient_id?: string | null;
4899
+ provider_redirect_url?: string | null;
4900
+ requirements?: Requirement[];
4901
+ capabilities?: Capabilities | null;
4902
+ change_type?: string | null;
4903
+ }
4904
+ interface TimelineEvent {
4905
+ timestamp: string;
4906
+ event_type: string;
4907
+ status: string | null;
4908
+ event_data: TimelineEventData | null;
4909
+ }
4910
+ type OnboardingTimeline = TimelineEvent[];
4911
+ }
4912
+ interface GetRecipientsParams {
4913
+ account_ids?: string;
4914
+ countries?: string;
4915
+ national_entities?: string;
4916
+ entity_types?: string;
4917
+ start_date?: string;
4918
+ end_date?: string;
4919
+ search_type?: string;
4920
+ search_value?: string;
4921
+ page?: number;
4922
+ page_size?: number;
4923
+ sort_by?: string;
4924
+ sort_order?: string;
4925
+ }
4926
+ interface GetRecipientByIdParams {
4927
+ recipient_id: string;
4928
+ }
4929
+ interface GetOnboardingDetailParams {
4930
+ recipient_id: string;
4931
+ onboarding_id: string;
4932
+ }
4933
+ interface GetOnboardingTimelineParams {
4934
+ onboarding_id: string;
4935
+ }
4936
+
4416
4937
  type DeleteMutation = UseMutationResult<AxiosResponse<Organization.AccountOrganization, unknown>, {
4417
4938
  response: {
4418
4939
  data: {
@@ -4549,8 +5070,8 @@ declare function useValidateCredentials(): _tanstack_react_query.UseMutationResu
4549
5070
  country_code?: string;
4550
5071
  };
4551
5072
  }, unknown>;
4552
- declare function usePostNetworkTokensOnboarding(): _tanstack_react_query.UseMutationResult<Connection.NetworkTokensOnboardingData, unknown, {
4553
- payload: Connection.NetworkTokensOnboardingData;
5073
+ declare function usePostNetworkTokensOnboarding(): _tanstack_react_query.UseMutationResult<Connection.NetworkTokensOnboardingMerchantData, unknown, {
5074
+ payload: Connection.NetworkTokensOnboardingMerchantRequest;
4554
5075
  }, unknown>;
4555
5076
 
4556
5077
  declare function useUpdateOrganizationStatus(): _tanstack_react_query.UseMutationResult<void, unknown, void, unknown>;
@@ -4823,6 +5344,7 @@ declare function useCountRowsForReport(): UseMutationResult<Reports.CountRowsRep
4823
5344
  declare function useCancelReport(): UseMutationResult<string, unknown>;
4824
5345
  declare function useCreateReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<Reports.ICreateTemplate>;
4825
5346
  declare function useUpdateReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<unknown>;
5347
+ declare function useDeleteReportTemplate(): UseMutationResult<unknown>;
4826
5348
 
4827
5349
  declare function useCreateWorkflow(accountCode: string, workflow: any, options?: any): UseMutationResult<SmartRouting.WorkflowVersion, unknown>;
4828
5350
  declare function usePublishVersion<T = SmartRouting.WorkflowVersion>({ versionCode, accountCode, organizationCode }: {
@@ -4917,6 +5439,25 @@ declare function useEditPaymentLinks(): _tanstack_react_query.UseMutationResult<
4917
5439
  paymentLinkCode: string;
4918
5440
  }, unknown>;
4919
5441
 
5442
+ declare function useCreateSubscription(): _tanstack_react_query.UseMutationResult<any, unknown, any, unknown>;
5443
+ declare function usePauseSubscription(): _tanstack_react_query.UseMutationResult<any, unknown, {
5444
+ subscriptionCode: string;
5445
+ }, unknown>;
5446
+ declare function useResumeSubscription(): _tanstack_react_query.UseMutationResult<any, unknown, {
5447
+ subscriptionCode: string;
5448
+ }, unknown>;
5449
+ declare function useCancelSubscription(): _tanstack_react_query.UseMutationResult<any, unknown, {
5450
+ subscriptionCode: string;
5451
+ }, unknown>;
5452
+ declare function useUpdateSubscription(): _tanstack_react_query.UseMutationResult<any, unknown, {
5453
+ subscriptionCode: string;
5454
+ payload: any;
5455
+ }, unknown>;
5456
+ declare function useRescheduleSubscription(): _tanstack_react_query.UseMutationResult<any, unknown, {
5457
+ subscriptionCode: string;
5458
+ }, unknown>;
5459
+ declare function useListSubscriptions(): _tanstack_react_query.UseMutationResult<any, unknown, ListSubscriptionsParams, unknown>;
5460
+
4920
5461
  declare function usePostUserSettings(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<unknown, any, {}>, unknown, {
4921
5462
  payload: any;
4922
5463
  }, {
@@ -5051,10 +5592,17 @@ declare function useGetRule(): UseMutationResult<unknown>;
5051
5592
  declare function usePostCreateRuleMultiAccount(): UseMutationResult<unknown>;
5052
5593
  declare function usePostEditRule(): UseMutationResult<unknown>;
5053
5594
 
5595
+ type ResponseValidatePasswordRegularUser = {
5596
+ mfa_token: string | null;
5597
+ } | {
5598
+ skip: boolean;
5599
+ };
5600
+
5054
5601
  declare function usePostCreateCustomizedApiKeys(): UseMutationResult<unknown>;
5055
5602
  declare function usePathCreateCustomizedApiKeys(): UseMutationResult<unknown>;
5056
5603
  declare function useGetCustomizedApiKeysToken(): UseMutationResult<unknown>;
5057
5604
  declare function usePostCredentialsValidatePassword(): UseMutationResult<unknown>;
5605
+ declare function usePostCredentialsValidatePasswordRegularUser(): UseMutationResult<ResponseValidatePasswordRegularUser>;
5058
5606
  declare function useDeleteCustomizedApiKeys(): UseMutationResult<unknown>;
5059
5607
  declare function usePatchApiKeysEditNote(): UseMutationResult<unknown>;
5060
5608
  declare function usePostApiKeysRoll(): UseMutationResult<unknown>;
@@ -5071,6 +5619,7 @@ declare function useGetCredentialsMFA(): UseMutationResult<{
5071
5619
  password?: string | undefined;
5072
5620
  accountCode?: string | undefined;
5073
5621
  }, unknown>;
5622
+ declare function usePostCredentialsWithOtpMfa(): UseMutationResult<unknown>;
5074
5623
 
5075
5624
  declare function usePostAuditMonitors({ onMutate }: {
5076
5625
  onMutate: any;
@@ -5152,6 +5701,7 @@ declare function useSendPaymentNotification(params: SendPaymentNotification.Para
5152
5701
 
5153
5702
  declare function usePayoutsList(params: GetPaymentsParams | null): UseQueryResult<Payouts.List | AxiosError>;
5154
5703
  declare function usePayoutsFilters(enabled?: boolean): UseQueryResult<Payouts.Filters>;
5704
+ declare function useGetPayoutTimeline(payoutCode: string | null, enabled?: boolean): UseQueryResult<Payouts.Timeline | AxiosError>;
5155
5705
 
5156
5706
  declare namespace CustomizedApiKeys {
5157
5707
  interface ICustomizedApiKeys {
@@ -5194,9 +5744,11 @@ declare namespace AllowedList {
5194
5744
  }
5195
5745
  }
5196
5746
 
5197
- declare function useGetCredentials({ password, accountCode, }: {
5747
+ declare function useGetCredentials({ password, accountCode, otp, mfaToken, }: {
5198
5748
  password: string;
5199
5749
  accountCode: string;
5750
+ otp?: string;
5751
+ mfaToken?: string;
5200
5752
  }): UseQueryResult<Developer.DeveloperCredentials, unknown>;
5201
5753
  declare function useGetCustomizedApiKeysMembers(): UseQueryResult<User.ICustomizedApiKeysMembers, unknown>;
5202
5754
  declare function useGetAllowedIps(): UseQueryResult<AllowedList.Response, unknown>;
@@ -5497,6 +6049,28 @@ type UseGetAllReconciliationsFeesProps = {
5497
6049
  };
5498
6050
  declare function useGetAllReconciliationsFees({ body, params, enabled, }: UseGetAllReconciliationsFeesProps): UseQueryResult<ReconciliationFees.GetAllReconciliationsFeesResponse, Reconciliation.Error>;
5499
6051
 
6052
+ declare function useGetReconciliationInsightsConflictsSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ConflictsSummary, ReconciliationInsights.Error>;
6053
+ declare function useGetReconciliationInsightsNotReconciledAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
6054
+ declare function useGetReconciliationInsightsNotReconciledList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationOverviewList, ReconciliationInsights.Error>;
6055
+ declare function useGetReconciliationInsightsStatusConflictAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
6056
+ declare function useGetReconciliationInsightsStatusConflictList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationOverviewList, ReconciliationInsights.Error>;
6057
+ declare function useGetReconciliationInsightsAmountConflictAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
6058
+ declare function useGetReconciliationInsightsAmountConflictList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationOverviewList, ReconciliationInsights.Error>;
6059
+ declare function useGetReconciliationInsightsConflictDateSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.GenericChartSummary, ReconciliationInsights.Error>;
6060
+ declare function useGetReconciliationInsightsConflictDateAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ConflictDateAggregators, ReconciliationInsights.Error>;
6061
+ declare function useGetReconciliationInsightsConflictDateList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationOverviewList, ReconciliationInsights.Error>;
6062
+ declare function useGetReconciliationInsightsIncorrectFeesSummary({ body, dateFilter, enabled, }: ReconciliationInsights.UseInsightsQueryWithDateFilterProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.GenericChartSummary, ReconciliationInsights.Error>;
6063
+ declare function useGetReconciliationInsightsIncorrectFeesAggregators({ body, dateFilter, enabled, }: ReconciliationInsights.UseInsightsQueryWithDateFilterProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
6064
+ declare function useGetReconciliationInsightsIncorrectFeesList({ body, dateFilter, enabled, }: ReconciliationInsights.UseInsightsQueryWithDateFilterProps<ReconciliationInsights.ListFiltersWithProvider>): UseQueryResult<ReconciliationInsights.SettlementAndFeeList, ReconciliationInsights.Error>;
6065
+ declare function useGetReconciliationInsightsFeesChargedSummary({ body, dateFilter, enabled, }: ReconciliationInsights.UseInsightsQueryWithDateFilterProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ChartWithGraph, ReconciliationInsights.Error>;
6066
+ declare function useGetReconciliationInsightsReconciledSummary({ body, dateFilter, enabled, }: ReconciliationInsights.UseInsightsQueryWithDateFilterProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.GenericChartSummary<ReconciliationInsights.ReconciledSummaryItem>, ReconciliationInsights.Error>;
6067
+ declare function useGetReconciliationInsightsReconciledAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
6068
+ declare function useGetReconciliationInsightsReconciledList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.SettlementAndFeeList, ReconciliationInsights.Error>;
6069
+ declare function useGetReconciliationInsightsNotConfirmSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.GenericChartSummary, ReconciliationInsights.Error>;
6070
+ declare function useGetReconciliationInsightsNotConfirmAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
6071
+ declare function useGetReconciliationInsightsNotConfirmList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.ProcessedTransactionList, ReconciliationInsights.Error>;
6072
+ declare function useGetReconciliationInsightsAmountToBeSettledSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ChartWithGraph, ReconciliationInsights.Error>;
6073
+
5500
6074
  declare namespace FeatureFlags {
5501
6075
  interface Request {
5502
6076
  account_code: string;
@@ -5525,6 +6099,7 @@ declare function usePostWebhookLogs({ params, }: {
5525
6099
  params: Audit.AuditWebhooksParams;
5526
6100
  }): UseQueryResult<Audit.AuditWebhooksResponse, BFFErrorResponse>;
5527
6101
  declare function useGetApiLogsDetailByPaymentCode(code: string | null | undefined): UseQueryResult<unknown, BFFErrorResponse>;
6102
+ declare function useGetApiLogsByTransactionCode(transactionCode: string | null | undefined, accountCode: string | null | undefined): UseQueryResult<Audit.ApiLogByTransactionCode, BFFErrorResponse>;
5528
6103
 
5529
6104
  declare function useGetPaymentLinks(params: any, accountCode: any): UseQueryResult<any, unknown>;
5530
6105
  declare function useGetPaymentLinkByCode(paymentLinkCode: any): UseQueryResult<any, unknown>;
@@ -5533,6 +6108,9 @@ declare function useGetCountriesConfigPaymentLinkV2(acceptLanguage?: string): Us
5533
6108
  declare function useGetTimezonePaymentLink(organizationCode: string): UseQueryResult<any, unknown>;
5534
6109
  declare function useGetInstallmentPlans(accountCode: string): UseQueryResult<GetInstallmentPlansResponse, unknown>;
5535
6110
 
6111
+ declare function useGetSubscriptionByCode(subscriptionCode: string, enabled?: boolean): UseQueryResult<any, unknown>;
6112
+ declare function useGetSubscriptionPayments(subscriptionCode: string, page?: number, size?: number, enabled?: boolean): UseQueryResult<any, unknown>;
6113
+
5536
6114
  declare function useFirebaseUserSubscribe({ onSuccessCallback, }: {
5537
6115
  onSuccessCallback?: (data: any) => void;
5538
6116
  }): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<{
@@ -5617,7 +6195,7 @@ declare function usePatchAndExecuteChart(chart_id: string, patchPayload: PatchCh
5617
6195
  declare function useGetLanguages(): UseQueryResult<Translation.Languages, AxiosError>;
5618
6196
  declare function useGetTranslations(): UseQueryResult<Translation.Translations, AxiosError>;
5619
6197
 
5620
- declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.NetworkTokensOnboardingData, AxiosError<CustomAxiosResponse>>;
6198
+ declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.NetworkTokensOnboardingMerchantData, BFFErrorResponse>;
5621
6199
 
5622
6200
  declare const useCommunicationsByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<DailyCommunicationsAndConversionRate, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<DailyCommunicationsAndConversionRate, AxiosError<BFFErrorResponse, any>>;
5623
6201
  declare const useCommunicationsBySubstatus: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<CommunicationsBySubStatus, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<CommunicationsBySubStatus, AxiosError<BFFErrorResponse, any>>;
@@ -5630,6 +6208,13 @@ declare function useSearchTemplateById(templateId: number, payload: TemplateRepo
5630
6208
  declare function useSearchSchedules(payload: TemplateReporting.SearchSchedulesRequest, enabled: boolean): UseQueryResult<TemplateReporting.GetSchedulesListResponse, AxiosError>;
5631
6209
  declare function useSearchScheduleById(scheduleId: number, payload: TemplateReporting.SearchScheduleByIdRequest, enabled: boolean): UseQueryResult<TemplateReporting.ReportSchedule, AxiosError>;
5632
6210
 
6211
+ declare function useGetOrganizationConfigs(): UseQueryResult<OrganizationConfig.GetConfigsResponse, BFFErrorResponse>;
6212
+
6213
+ declare function useGetRecipients(organizationCode: string, params: GetRecipientsParams, enabled?: boolean): UseQueryResult<Recipients.RecipientListResponse, AxiosError<BFFErrorResponse>>;
6214
+ declare function useGetRecipientById(organizationCode: string, params: GetRecipientByIdParams, enabled?: boolean): UseQueryResult<Recipients.RecipientDetail, AxiosError<BFFErrorResponse>>;
6215
+ declare function useGetOnboardingDetail(organizationCode: string, params: GetOnboardingDetailParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingDetail, AxiosError<BFFErrorResponse>>;
6216
+ declare function useGetOnboardingTimeline(organizationCode: string, params: GetOnboardingTimelineParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingTimeline, AxiosError<BFFErrorResponse>>;
6217
+
5633
6218
  interface CreateChartGPTChartPayload {
5634
6219
  user_prompt: string;
5635
6220
  timezone?: string;
@@ -5696,6 +6281,9 @@ declare function useDeleteSchedule(): UseMutationResult<TemplateReporting.Delete
5696
6281
  payload: TemplateReporting.DeleteScheduleRequest;
5697
6282
  }>;
5698
6283
 
6284
+ declare function usePostOrganizationConfigs(): UseMutationResult<AxiosResponse<OrganizationConfig.PostConfigsResponse>, BFFErrorResponse, OrganizationConfig.PostConfigsRequest>;
6285
+ declare function usePutOrganizationConfigsByAccount(): UseMutationResult<AxiosResponse<OrganizationConfig.PutConfigsByAccountResponse>, BFFErrorResponse, OrganizationConfig.PutConfigsByAccountRequest>;
6286
+
5699
6287
  interface S3Payload {
5700
6288
  payload: S3Client.PayloadV2;
5701
6289
  handleSetProgress?: (progress: number) => void;
@@ -5722,6 +6310,27 @@ declare class Api extends HttpClient {
5722
6310
  getReconciliationSales<T>(body: ReconciliationSales.FiltersRequestBody, params: ReconciliationSales.FiltersRequestParams): Promise<AxiosResponse<T>>;
5723
6311
  getReconciliationAdvancements<T>(body: ReconciliationAdvancements.FiltersRequestBody, params: ReconciliationAdvancements.FiltersRequestParams): Promise<AxiosResponse<T>>;
5724
6312
  getReconciliationFees<T>(body: ReconciliationFees.FiltersRequestBody, params: ReconciliationFees.FiltersRequestParams): Promise<AxiosResponse<T>>;
6313
+ getReconciliationInsightsConflictsSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
6314
+ getReconciliationInsightsNotReconciledAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
6315
+ getReconciliationInsightsNotReconciledList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
6316
+ getReconciliationInsightsStatusConflictAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
6317
+ getReconciliationInsightsStatusConflictList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
6318
+ getReconciliationInsightsAmountConflictAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
6319
+ getReconciliationInsightsAmountConflictList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
6320
+ getReconciliationInsightsConflictDateSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
6321
+ getReconciliationInsightsConflictDateAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
6322
+ getReconciliationInsightsConflictDateList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
6323
+ getReconciliationInsightsIncorrectFeesSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
6324
+ getReconciliationInsightsIncorrectFeesAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
6325
+ getReconciliationInsightsIncorrectFeesList<T>(body: ReconciliationInsights.ListFiltersWithProvider, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
6326
+ getReconciliationInsightsFeesChargedSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
6327
+ getReconciliationInsightsReconciledSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
6328
+ getReconciliationInsightsReconciledAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
6329
+ getReconciliationInsightsReconciledList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer): Promise<AxiosResponse<T>>;
6330
+ getReconciliationInsightsNotConfirmSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
6331
+ getReconciliationInsightsNotConfirmAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
6332
+ getReconciliationInsightsNotConfirmList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer): Promise<AxiosResponse<T>>;
6333
+ getReconciliationInsightsAmountToBeSettledSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
5725
6334
  postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
5726
6335
  postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
5727
6336
  getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
@@ -5732,6 +6341,7 @@ declare class Api extends HttpClient {
5732
6341
  getPayoutDetails<T>(params: GetPayoutDetail): Promise<AxiosResponse<T, any>>;
5733
6342
  getPayoutTransactionDetails<T>(params: GetPayoutTransactionDetail): Promise<AxiosResponse<T, any>>;
5734
6343
  getPayoutHistoryDetails<T>(params: GetPayoutDetail, organizationCode: string): Promise<AxiosResponse<T, any>>;
6344
+ getPayoutTimeline<T>(payoutCode: string, organizationCode: string): Promise<AxiosResponse<T, any>>;
5735
6345
  getPaymentMethodsByCountry<T>({ provider_id, country }: Organization.PaymentMethods, organizationCodeFromAccount: any): Promise<AxiosResponse<T, any>>;
5736
6346
  getOrgByName<T>(name: any): Promise<AxiosResponse<T, any>>;
5737
6347
  createOperationTransaction<T>(payload: OperationTransaction.Request, transactionId: string, paymentId: string, action: OperationTransaction.Actions): Promise<AxiosResponse<T, any>>;
@@ -5746,8 +6356,9 @@ declare class Api extends HttpClient {
5746
6356
  getTransactionHistoryByPaymentCode<T>({ payment_code, }: {
5747
6357
  payment_code: any;
5748
6358
  }): Promise<AxiosResponse<T, any>>;
5749
- getDeveloperCredentials<T>(password: any, accountCode: any): Promise<AxiosResponse<T, any>>;
6359
+ getDeveloperCredentials<T>(password: any, accountCode: any, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
5750
6360
  getDeveloperCredentialsValidatePassword<T>(password: any): Promise<AxiosResponse<T, any>>;
6361
+ getDeveloperCredentialsValidatePasswordRegularUser<T>(password: any): Promise<AxiosResponse<T, any>>;
5751
6362
  getAllowedIps<T>(): Promise<AxiosResponse<T, any>>;
5752
6363
  patchAllowedIps<T>(request: AllowedList.Request): Promise<AxiosResponse<T, any>>;
5753
6364
  getOrganization<T>(): Promise<AxiosResponse<T, any>>;
@@ -5762,6 +6373,9 @@ declare class Api extends HttpClient {
5762
6373
  costs: Cost[];
5763
6374
  }): Promise<AxiosResponse<T>>;
5764
6375
  updateOrganizationStatus<T>(): Promise<AxiosResponse<T>>;
6376
+ getOrganizationConfigs<T>(): Promise<AxiosResponse<T, any>>;
6377
+ postOrganizationConfigs<T>(payload: OrganizationConfig.PostConfigsRequest): Promise<AxiosResponse<T, any>>;
6378
+ putOrganizationConfigsByAccount<T>(payload: OrganizationConfig.PutConfigsByAccountRequest): Promise<AxiosResponse<T, any>>;
5765
6379
  getIntegrationParams<T>({ accountCode, integration_code, }: {
5766
6380
  accountCode: any;
5767
6381
  integration_code: any;
@@ -5816,6 +6430,7 @@ declare class Api extends HttpClient {
5816
6430
  payload: Audit.AuditApiLogsParams;
5817
6431
  }): Promise<AxiosResponse<T>>;
5818
6432
  getApiLogsDetailByPaymentCode<T>(paymentCode: string): Promise<AxiosResponse<T>>;
6433
+ getApiLogsByTransactionCode<T>(transactionCode: string, accountCode: string): Promise<AxiosResponse<T>>;
5819
6434
  useGetPaymentStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
5820
6435
  useGetTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
5821
6436
  useGetReconciliationTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
@@ -5946,6 +6561,7 @@ declare class Api extends HttpClient {
5946
6561
  getReportTemplates<T>(): Promise<AxiosResponse<T>>;
5947
6562
  createReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
5948
6563
  updateReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
6564
+ deletePaymentsReportTemplate<T>(payload: Reports.IDeletePaymentsReportTemplate): Promise<AxiosResponse<T>>;
5949
6565
  getReportColumns<T>(templateType: TemplateType, reportType: ReportType): Promise<any>;
5950
6566
  searchReportTemplates<T>(payload: TemplateReporting.SearchTemplatesRequest): Promise<AxiosResponse<T>>;
5951
6567
  searchReportTemplateById<T>(templateId: number, payload: TemplateReporting.SearchTemplateByIdRequest): Promise<AxiosResponse<T>>;
@@ -6069,6 +6685,15 @@ declare class Api extends HttpClient {
6069
6685
  postDeletePaymentLink<T>({ code }: {
6070
6686
  code: any;
6071
6687
  }): Promise<AxiosResponse<T, any>>;
6688
+ postSubscription<T>(payload: any): Promise<AxiosResponse<T, any>>;
6689
+ getSubscriptionByCode<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
6690
+ postPauseSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
6691
+ postResumeSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
6692
+ postCancelSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
6693
+ patchSubscription<T>(subscriptionCode: string, payload: any): Promise<AxiosResponse<T, any>>;
6694
+ postRescheduleSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
6695
+ getSubscriptionPayments<T>(subscriptionCode: string, page?: number, size?: number): Promise<AxiosResponse<T, any>>;
6696
+ postListSubscriptions<T>(payload: ListSubscriptionsParams): Promise<AxiosResponse<T, any>>;
6072
6697
  getTimezone<T>(organizationCode: string): Promise<AxiosResponse<T, any>>;
6073
6698
  getInstallmentPlans(accountCode: string): Promise<AxiosResponse<GetInstallmentPlansResponse>>;
6074
6699
  firebaseUserSubscribe<T>(payload: FirebaseUserSubscribe): Promise<AxiosResponse<T>>;
@@ -6174,14 +6799,14 @@ declare class Api extends HttpClient {
6174
6799
  postCreateRuleMultiAccount<T>(payload: any, accountCode: any): Promise<AxiosResponse<T, any>>;
6175
6800
  postEditRule<T>(payload: any, ruleId: any, accountCode: any): Promise<AxiosResponse<T, any>>;
6176
6801
  postApiKeysRoll<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
6177
- patchApiKeysEditNote<T>(payload: any, keyCode: any): Promise<AxiosResponse<T, any>>;
6802
+ patchApiKeysEditNote<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
6178
6803
  getCustomizedApiKeysMembers<T>(): Promise<AxiosResponse<T, any>>;
6179
6804
  getCustomizedApiKeysAccounts<T>(): Promise<AxiosResponse<T, any>>;
6180
6805
  postCreateCustomizedApiKeys<T>(payload: any): Promise<AxiosResponse<T, any>>;
6181
6806
  pathCreateCustomizedApiKeys<T>(payload: any, code: any): Promise<AxiosResponse<T, any>>;
6182
6807
  postCustomizedApiKeys<T>(accountCodes: string[]): Promise<AxiosResponse<T, any>>;
6183
6808
  getCustomizedApiKeysProducts<T>(): Promise<AxiosResponse<T, any>>;
6184
- getCustomizedApiKeysToken<T>(code: any, password: any): Promise<AxiosResponse<T, any>>;
6809
+ getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
6185
6810
  validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
6186
6811
  deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
6187
6812
  postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
@@ -6211,8 +6836,8 @@ declare class Api extends HttpClient {
6211
6836
  getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
6212
6837
  get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
6213
6838
  getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
6214
- getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingGetResponse>>;
6215
- postNetworkTokensOnboarding(payload: Connection.NetworkTokensOnboardingData): Promise<AxiosResponse<Connection.NetworkTokensOnboardingData>>;
6839
+ getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
6840
+ postNetworkTokensOnboarding(payload: Connection.NetworkTokensOnboardingMerchantRequest): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
6216
6841
  createChartGPTChart<T>(payload: {
6217
6842
  user_prompt: string;
6218
6843
  timezone?: string;
@@ -6237,6 +6862,23 @@ declare class Api extends HttpClient {
6237
6862
  }): Promise<AxiosResponse<T, any>>;
6238
6863
  getCommunicationsFilters<T>(): Promise<AxiosResponse<T, any>>;
6239
6864
  getCommunicationDetails<T>(communicationId: string, accountCode: string): Promise<AxiosResponse<T, any>>;
6865
+ getRecipients<T>(organizationCode: string, params: {
6866
+ account_ids?: string;
6867
+ countries?: string;
6868
+ national_entities?: string;
6869
+ entity_types?: string;
6870
+ start_date?: string;
6871
+ end_date?: string;
6872
+ search_type?: string;
6873
+ search_value?: string;
6874
+ page?: number;
6875
+ page_size?: number;
6876
+ sort_by?: string;
6877
+ sort_order?: string;
6878
+ }): Promise<AxiosResponse<T, any>>;
6879
+ getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
6880
+ getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
6881
+ getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
6240
6882
  }
6241
6883
 
6242
6884
  declare class ApiSingleton extends Api {
@@ -6277,5 +6919,5 @@ declare const useChartAssistantSocket: () => {
6277
6919
  connectionError: string | null;
6278
6920
  };
6279
6921
 
6280
- export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportWebhooksLogs, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettings, useGetStylingSettingsV2, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useResendWebhooks, useRetryDuplicateAccount, useSaveVersion, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
6281
- export type { AccountRoles, AllowlistMultiAccount, Availability, AvailableColumn, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetInstallmentPlansResponse, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, InstallmentAmount, InstallmentPlan, InstallmentPlanItem, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, PlanAmount, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload, WebSocketMessage };
6922
+ export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportWebhooksLogs, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettings, useGetStylingSettingsV2, useGetStylingTheme, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useIsTesting, useListSubscriptions, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
6923
+ export type { AccountRoles, AllowlistMultiAccount, Availability, AvailableColumn, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetInstallmentPlansResponse, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, InstallmentAmount, InstallmentPlan, InstallmentPlanItem, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, PlanAmount, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload, WebSocketMessage };