@yuno-payments/dashboard-api-mfe 1.20.0 → 1.22.1

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 (30) hide show
  1. package/build/cjs/index.js +4 -4
  2. package/build/cjs/index.js.map +1 -1
  3. package/build/cjs/types/api/api.d.ts +15 -7
  4. package/build/cjs/types/msw/mocks/reconciliation-insights/index.d.ts +1 -0
  5. package/build/cjs/types/mutations/audit/audit-subscriptions.mutation.d.ts +41 -0
  6. package/build/cjs/types/mutations/audit/index.d.ts +1 -0
  7. package/build/cjs/types/mutations/fraud-screening/fraud-screening.mutation.d.ts +2 -0
  8. package/build/cjs/types/queries/audit/audit-subscriptions.query.d.ts +11 -0
  9. package/build/cjs/types/queries/audit/index.d.ts +1 -0
  10. package/build/cjs/types/queries/recipients/recipients.query.d.ts +1 -0
  11. package/build/cjs/types/queries/reconciliations/reconciliation-insights.query.d.ts +1 -0
  12. package/build/cjs/types/types/audit/audit.d.ts +25 -0
  13. package/build/cjs/types/types/recipients/recipients.d.ts +18 -0
  14. package/build/cjs/types/types/reconciliation/reconciliation-insights.d.ts +50 -0
  15. package/build/esm/index.js +6 -6
  16. package/build/esm/index.js.map +1 -1
  17. package/build/esm/types/api/api.d.ts +15 -7
  18. package/build/esm/types/msw/mocks/reconciliation-insights/index.d.ts +1 -0
  19. package/build/esm/types/mutations/audit/audit-subscriptions.mutation.d.ts +41 -0
  20. package/build/esm/types/mutations/audit/index.d.ts +1 -0
  21. package/build/esm/types/mutations/fraud-screening/fraud-screening.mutation.d.ts +2 -0
  22. package/build/esm/types/queries/audit/audit-subscriptions.query.d.ts +11 -0
  23. package/build/esm/types/queries/audit/index.d.ts +1 -0
  24. package/build/esm/types/queries/recipients/recipients.query.d.ts +1 -0
  25. package/build/esm/types/queries/reconciliations/reconciliation-insights.query.d.ts +1 -0
  26. package/build/esm/types/types/audit/audit.d.ts +25 -0
  27. package/build/esm/types/types/recipients/recipients.d.ts +18 -0
  28. package/build/esm/types/types/reconciliation/reconciliation-insights.d.ts +50 -0
  29. package/build/index.d.ts +160 -9
  30. package/package.json +1 -1
@@ -7,6 +7,7 @@ import { RoutingMonitors } from '../types/routing-monitors';
7
7
  import { ChangePaymentsWebhook } from '../mutations';
8
8
  import { S3Client } from '../types/s3-client';
9
9
  import { CreateRecipientPayload, UpdateRecipientPayload, CreateOnboardingPayload, UpdateOnboardingPayload } from '../types/recipients/recipients-mutations';
10
+ import { GetRecipientsParams } from '../types/recipients';
10
11
  import { AllowedList } from '../types/allowed-list';
11
12
  import { Cost } from '../types/connection/costs';
12
13
  import { IntegrationRequest } from '../types/integration-requests';
@@ -65,6 +66,7 @@ export declare class Api extends HttpClient {
65
66
  getReconciliationInsightsReconciliationRateByProvider<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
66
67
  getReconciliationInsightsReconciliationRateByAccount<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
67
68
  getReconciliationInsightsReconciliationRateByCurrency<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
69
+ getReconciliationInsightsSettlementLookup<T>(body: ReconciliationInsights.SettlementLookupBody): Promise<AxiosResponse<T>>;
68
70
  postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
69
71
  postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
70
72
  getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
@@ -184,6 +186,9 @@ export declare class Api extends HttpClient {
184
186
  postApiLogsStatsErrorsByEndpoint<T>(payload: Audit.ApiLogsStatsParams): Promise<AxiosResponse<T>>;
185
187
  postApiLogsList<T>(payload: Audit.ApiLogsListParams): Promise<AxiosResponse<T>>;
186
188
  getApiLogsV3ByPaymentCode<T>(paymentCode: string, createdAtFrom?: string): Promise<AxiosResponse<T>>;
189
+ createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
190
+ listAuditSubscriptions<T>(params?: Audit.ListAuditSubscriptionsParams): Promise<AxiosResponse<T>>;
191
+ deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
187
192
  useGetCountriesConfig<T>(): Promise<AxiosResponse<T, any>>;
188
193
  useGetCountriesConfigV2<T>(acceptLanguage?: string): Promise<AxiosResponse<T, any>>;
189
194
  getSmartRoutingMethods<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
@@ -520,14 +525,16 @@ export declare class Api extends HttpClient {
520
525
  putBlackListType<T>(payload: any): Promise<AxiosResponse<T, any>>;
521
526
  changeBlackListStatus<T>(payload: any): Promise<AxiosResponse<T, any>>;
522
527
  changeBlackListStatusItem<T>(payload: any): Promise<AxiosResponse<T, any>>;
523
- postBlackListItems<T>({ payload }: {
524
- payload: any;
528
+ postBlackListItems<T>({ payload, accountCode, }: {
529
+ payload: unknown;
530
+ accountCode?: string;
525
531
  }): Promise<AxiosResponse<T, any>>;
526
- postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, }: {
527
- blacklist_code: any;
528
- expiration_days: any;
529
- file: any;
530
- handleSetProgress: any;
532
+ postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, accountCode, }: {
533
+ blacklist_code: string;
534
+ expiration_days: number;
535
+ file: string;
536
+ handleSetProgress: (progress: number) => void;
537
+ accountCode?: string;
531
538
  }): Promise<AxiosResponse<T, any>>;
532
539
  deleteBlackListType<T>({ black_list_code, }: {
533
540
  black_list_code: any;
@@ -665,6 +672,7 @@ export declare class Api extends HttpClient {
665
672
  sort_by?: string;
666
673
  sort_order?: string;
667
674
  }): Promise<AxiosResponse<T, any>>;
675
+ getRecipientsV2<T>(organizationCode: string, params: GetRecipientsParams): Promise<AxiosResponse<T, any>>;
668
676
  getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
669
677
  getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
670
678
  getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
@@ -20,3 +20,4 @@ export declare const NOT_CONFIRM_SUMMARY_MOCK: ReconciliationInsights.GenericCha
20
20
  export declare const NOT_CONFIRM_AGGREGATORS_MOCK: ReconciliationInsights.Aggregators;
21
21
  export declare const NOT_CONFIRM_LIST_MOCK: ReconciliationInsights.ProcessedTransactionList;
22
22
  export declare const AMOUNT_TO_BE_SETTLED_SUMMARY_MOCK: ReconciliationInsights.ChartWithGraph;
23
+ export declare const SETTLEMENT_LOOKUP_MOCK: ReconciliationInsights.SettlementDetail;
@@ -0,0 +1,41 @@
1
+ import { UseMutationResult } from '@tanstack/react-query';
2
+ import { AxiosError } from 'axios';
3
+ import type { Audit } from '../../types';
4
+ import { BFFErrorResponse } from '../smart-routing';
5
+ /**
6
+ * Result of {@link useCreateAuditSubscription}'s `mutateAsync`.
7
+ *
8
+ * A `409 subscription_already_exists` response is treated as success
9
+ * (idempotent create) and resolves with `{ alreadyExists: true }` rather
10
+ * than rejecting — the caller treats an already-existing subscription as a
11
+ * successful no-op.
12
+ */
13
+ export type CreateAuditSubscriptionResult = {
14
+ alreadyExists: false;
15
+ subscription: Audit.AuditSubscription;
16
+ } | {
17
+ alreadyExists: true;
18
+ };
19
+ /**
20
+ * Creates an audit-log subscription.
21
+ *
22
+ * Hits `POST /dashboard-bff/api/audit-logs/subscriptions`. A `409`
23
+ * `subscription_already_exists` response RESOLVES successfully as
24
+ * `{ alreadyExists: true }` (idempotent create); a `201` resolves as
25
+ * `{ alreadyExists: false, subscription }`. Any other error rejects.
26
+ *
27
+ * On success (including the idempotent 409), the `['audit-subscriptions']`
28
+ * query key is invalidated.
29
+ */
30
+ export declare function useCreateAuditSubscription(): UseMutationResult<CreateAuditSubscriptionResult, AxiosError<BFFErrorResponse>, Audit.CreateAuditSubscriptionPayload>;
31
+ /**
32
+ * Deletes an audit-log subscription by its code.
33
+ *
34
+ * Hits `DELETE /dashboard-bff/api/audit-logs/subscriptions/{code}`. A `404`
35
+ * `subscription_not_found` response RESOLVES successfully (idempotent delete —
36
+ * the subscription is already gone). Any other error rejects.
37
+ *
38
+ * On success (including the idempotent 404), the `['audit-subscriptions']`
39
+ * query key is invalidated.
40
+ */
41
+ export declare function useDeleteAuditSubscription(): UseMutationResult<void, AxiosError<BFFErrorResponse>, string>;
@@ -1,2 +1,3 @@
1
1
  export * from './audit.mutation';
2
2
  export * from './audit-api.mutation';
3
+ export * from './audit-subscriptions.mutation';
@@ -18,11 +18,13 @@ export type PostBlackList = {
18
18
  };
19
19
  type PostBlackListItems = {
20
20
  payload: FraudScreening.BlackListItemsPayload;
21
+ accountCode?: string;
21
22
  };
22
23
  type PostBlackListBatch = {
23
24
  blacklist_code: string;
24
25
  expiration_days: number;
25
26
  file: string;
27
+ accountCode?: string;
26
28
  };
27
29
  export type ChangePaymentsWebhook = {
28
30
  paymentCode: string;
@@ -0,0 +1,11 @@
1
+ import { UseQueryResult } from '@tanstack/react-query';
2
+ import type { Audit } from '../../types';
3
+ import { BFFErrorResponse } from '../../mutations';
4
+ /**
5
+ * Lists audit-log subscriptions for the current organization.
6
+ *
7
+ * Hits `POST /dashboard-bff/api/audit-logs/subscriptions/list` with a JSON
8
+ * body of filter params and unwraps the `{ data: [...] }` envelope so
9
+ * consumers receive a flat `Audit.AuditSubscription[]`.
10
+ */
11
+ export declare function useListAuditSubscriptions(params?: Audit.ListAuditSubscriptionsParams): UseQueryResult<Audit.AuditSubscription[], BFFErrorResponse>;
@@ -1,2 +1,3 @@
1
1
  export * from './audit.query';
2
2
  export * from './audit-v3.query';
3
+ export * from './audit-subscriptions.query';
@@ -3,6 +3,7 @@ import { UseQueryResult } from '@tanstack/react-query';
3
3
  import { Recipients, GetRecipientsParams, GetRecipientByIdParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, RecipientsExport, GetRecipientExportsParams } from '../../types/recipients';
4
4
  import { BFFErrorResponse } from '../../mutations';
5
5
  export declare function useGetRecipients(organizationCode: string, params: GetRecipientsParams, enabled?: boolean): UseQueryResult<Recipients.RecipientListResponse, AxiosError<BFFErrorResponse>>;
6
+ export declare function useGetRecipientsV2(organizationCode: string, params: GetRecipientsParams, enabled?: boolean): UseQueryResult<Recipients.RecipientListResponseV2, AxiosError<BFFErrorResponse>>;
6
7
  export declare function useGetRecipientById(organizationCode: string, params: GetRecipientByIdParams, enabled?: boolean): UseQueryResult<Recipients.RecipientDetail, AxiosError<BFFErrorResponse>>;
7
8
  export declare function useGetOnboardingDetail(organizationCode: string, params: GetOnboardingDetailParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingDetail, AxiosError<BFFErrorResponse>>;
8
9
  export declare function useGetOnboardingTimeline(organizationCode: string, params: GetOnboardingTimelineParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingTimeline, AxiosError<BFFErrorResponse>>;
@@ -24,3 +24,4 @@ export declare function useGetReconciliationInsightsAmountToBeSettledSummary({ b
24
24
  export declare function useGetReconciliationInsightsReconciliationRateByProvider({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateByProviderResponse, ReconciliationInsights.Error>;
25
25
  export declare function useGetReconciliationInsightsReconciliationRateByAccount({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
26
26
  export declare function useGetReconciliationInsightsReconciliationRateByCurrency({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
27
+ export declare function useGetReconciliationInsightsSettlementLookup({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.SettlementLookupBody>): UseQueryResult<ReconciliationInsights.SettlementDetail, ReconciliationInsights.Error>;
@@ -459,4 +459,29 @@ export declare namespace Audit {
459
459
  total_pages: number;
460
460
  data: ApiLogV3Item[];
461
461
  }
462
+ interface AuditSubscription {
463
+ code: string;
464
+ user_code: string;
465
+ user_email: string;
466
+ organization_code: string;
467
+ account_code: string;
468
+ source: string;
469
+ event: string;
470
+ enabled: boolean;
471
+ created_at: string;
472
+ updated_at: string;
473
+ }
474
+ interface CreateAuditSubscriptionPayload {
475
+ account_code: string;
476
+ source: string;
477
+ event: string;
478
+ }
479
+ interface ListAuditSubscriptionsParams {
480
+ source?: string;
481
+ event?: string;
482
+ account_codes?: string[];
483
+ }
484
+ interface ListAuditSubscriptionsResponse {
485
+ data: AuditSubscription[];
486
+ }
462
487
  }
@@ -41,6 +41,7 @@ export declare namespace Recipients {
41
41
  provider_id: string;
42
42
  status: string;
43
43
  created_at: string;
44
+ updated_at?: string;
44
45
  }
45
46
  interface RecipientListItem {
46
47
  id: string;
@@ -72,6 +73,23 @@ export declare namespace Recipients {
72
73
  data: RecipientListItem[];
73
74
  pagination: Pagination;
74
75
  }
76
+ interface RecipientListItemV2 {
77
+ id: string;
78
+ merchant_recipient_id: string | null;
79
+ national_entity: string;
80
+ entity_type: string | null;
81
+ country: string;
82
+ first_name: string | null;
83
+ last_name: string | null;
84
+ legal_name: string | null;
85
+ account_id: string;
86
+ updated_at: string;
87
+ onboardings: OnboardingSummary[];
88
+ }
89
+ interface RecipientListResponseV2 {
90
+ data: RecipientListItemV2[];
91
+ pagination: Pagination;
92
+ }
75
93
  interface RecipientDetail {
76
94
  id: string;
77
95
  merchant_recipient_id: string | null;
@@ -184,5 +184,55 @@ export declare namespace ReconciliationInsights {
184
184
  code?: string;
185
185
  message?: string;
186
186
  }
187
+ export type SettlementLookupKey = 'payment_id' | 'transaction_id' | 'provider_transaction_id' | 'third_party_transaction_id_transaction';
188
+ export interface SettlementLookupBody {
189
+ accounts?: string[];
190
+ key: SettlementLookupKey;
191
+ value: string;
192
+ }
193
+ export interface SettlementDetail {
194
+ primary_key: string;
195
+ organization_code: string;
196
+ account_id: string;
197
+ provider_merchant_id: string;
198
+ provider_id: string;
199
+ acquirer: string;
200
+ country: string;
201
+ payment_method_category: string;
202
+ payment_method_type: string;
203
+ settlement_batch_id: string;
204
+ payment_id: string;
205
+ transaction_id: string;
206
+ provider_transaction_id: string;
207
+ third_party_transaction_id_transaction: string;
208
+ merchant_order_id: string;
209
+ merchant_reference: string;
210
+ transaction_date: string;
211
+ settlement_date: string;
212
+ type: string;
213
+ reconciliation_status: string;
214
+ reconciliation_sub_status: string;
215
+ reconciliation_id: string;
216
+ amount: number;
217
+ gross_currency: string;
218
+ gross_credit: number;
219
+ gross_debit: number;
220
+ settlement_currency: string;
221
+ fx_rate: number;
222
+ settlement_gross_amount: number;
223
+ fee_rate: number;
224
+ settlement_fees: number;
225
+ settlement_fee_taxes: number;
226
+ settlement_taxes: number;
227
+ settlement_net_credit: number;
228
+ settlement_net_debit: number;
229
+ card_brand: string;
230
+ card_type: string;
231
+ card_iin: string;
232
+ card_lfd: string;
233
+ authorization_code: string;
234
+ installments: number;
235
+ installment_number: number;
236
+ }
187
237
  export {};
188
238
  }
package/build/index.d.ts CHANGED
@@ -3788,6 +3788,56 @@ declare namespace ReconciliationInsights {
3788
3788
  code?: string;
3789
3789
  message?: string;
3790
3790
  }
3791
+ export type SettlementLookupKey = 'payment_id' | 'transaction_id' | 'provider_transaction_id' | 'third_party_transaction_id_transaction';
3792
+ export interface SettlementLookupBody {
3793
+ accounts?: string[];
3794
+ key: SettlementLookupKey;
3795
+ value: string;
3796
+ }
3797
+ export interface SettlementDetail {
3798
+ primary_key: string;
3799
+ organization_code: string;
3800
+ account_id: string;
3801
+ provider_merchant_id: string;
3802
+ provider_id: string;
3803
+ acquirer: string;
3804
+ country: string;
3805
+ payment_method_category: string;
3806
+ payment_method_type: string;
3807
+ settlement_batch_id: string;
3808
+ payment_id: string;
3809
+ transaction_id: string;
3810
+ provider_transaction_id: string;
3811
+ third_party_transaction_id_transaction: string;
3812
+ merchant_order_id: string;
3813
+ merchant_reference: string;
3814
+ transaction_date: string;
3815
+ settlement_date: string;
3816
+ type: string;
3817
+ reconciliation_status: string;
3818
+ reconciliation_sub_status: string;
3819
+ reconciliation_id: string;
3820
+ amount: number;
3821
+ gross_currency: string;
3822
+ gross_credit: number;
3823
+ gross_debit: number;
3824
+ settlement_currency: string;
3825
+ fx_rate: number;
3826
+ settlement_gross_amount: number;
3827
+ fee_rate: number;
3828
+ settlement_fees: number;
3829
+ settlement_fee_taxes: number;
3830
+ settlement_taxes: number;
3831
+ settlement_net_credit: number;
3832
+ settlement_net_debit: number;
3833
+ card_brand: string;
3834
+ card_type: string;
3835
+ card_iin: string;
3836
+ card_lfd: string;
3837
+ authorization_code: string;
3838
+ installments: number;
3839
+ installment_number: number;
3840
+ }
3791
3841
  export {};
3792
3842
  }
3793
3843
 
@@ -4532,6 +4582,31 @@ declare namespace Audit {
4532
4582
  total_pages: number;
4533
4583
  data: ApiLogV3Item[];
4534
4584
  }
4585
+ interface AuditSubscription {
4586
+ code: string;
4587
+ user_code: string;
4588
+ user_email: string;
4589
+ organization_code: string;
4590
+ account_code: string;
4591
+ source: string;
4592
+ event: string;
4593
+ enabled: boolean;
4594
+ created_at: string;
4595
+ updated_at: string;
4596
+ }
4597
+ interface CreateAuditSubscriptionPayload {
4598
+ account_code: string;
4599
+ source: string;
4600
+ event: string;
4601
+ }
4602
+ interface ListAuditSubscriptionsParams {
4603
+ source?: string;
4604
+ event?: string;
4605
+ account_codes?: string[];
4606
+ }
4607
+ interface ListAuditSubscriptionsResponse {
4608
+ data: AuditSubscription[];
4609
+ }
4535
4610
  }
4536
4611
 
4537
4612
  declare namespace PaymentLinks {
@@ -5168,6 +5243,7 @@ declare namespace Recipients {
5168
5243
  provider_id: string;
5169
5244
  status: string;
5170
5245
  created_at: string;
5246
+ updated_at?: string;
5171
5247
  }
5172
5248
  interface RecipientListItem {
5173
5249
  id: string;
@@ -5199,6 +5275,23 @@ declare namespace Recipients {
5199
5275
  data: RecipientListItem[];
5200
5276
  pagination: Pagination;
5201
5277
  }
5278
+ interface RecipientListItemV2 {
5279
+ id: string;
5280
+ merchant_recipient_id: string | null;
5281
+ national_entity: string;
5282
+ entity_type: string | null;
5283
+ country: string;
5284
+ first_name: string | null;
5285
+ last_name: string | null;
5286
+ legal_name: string | null;
5287
+ account_id: string;
5288
+ updated_at: string;
5289
+ onboardings: OnboardingSummary[];
5290
+ }
5291
+ interface RecipientListResponseV2 {
5292
+ data: RecipientListItemV2[];
5293
+ pagination: Pagination;
5294
+ }
5202
5295
  interface RecipientDetail {
5203
5296
  id: string;
5204
5297
  merchant_recipient_id: string | null;
@@ -6178,11 +6271,13 @@ type PostBlackList = {
6178
6271
  };
6179
6272
  type PostBlackListItems = {
6180
6273
  payload: FraudScreening.BlackListItemsPayload;
6274
+ accountCode?: string;
6181
6275
  };
6182
6276
  type PostBlackListBatch = {
6183
6277
  blacklist_code: string;
6184
6278
  expiration_days: number;
6185
6279
  file: string;
6280
+ accountCode?: string;
6186
6281
  };
6187
6282
  type ChangePaymentsWebhook = {
6188
6283
  paymentCode: string;
@@ -6319,6 +6414,44 @@ declare function useExportWebhooksLogs(): UseMutationResult<string, BFFErrorResp
6319
6414
  declare function useExportDashboardLogs(): UseMutationResult<Audit.AuditExportResponse, BFFErrorResponse, Audit.ExportDashboardLogsRequest>;
6320
6415
  declare function useExportMonitorsLogs(): UseMutationResult<Audit.AuditExportResponse, BFFErrorResponse, Audit.ExportMonitorsLogsRequest>;
6321
6416
 
6417
+ /**
6418
+ * Result of {@link useCreateAuditSubscription}'s `mutateAsync`.
6419
+ *
6420
+ * A `409 subscription_already_exists` response is treated as success
6421
+ * (idempotent create) and resolves with `{ alreadyExists: true }` rather
6422
+ * than rejecting — the caller treats an already-existing subscription as a
6423
+ * successful no-op.
6424
+ */
6425
+ type CreateAuditSubscriptionResult = {
6426
+ alreadyExists: false;
6427
+ subscription: Audit.AuditSubscription;
6428
+ } | {
6429
+ alreadyExists: true;
6430
+ };
6431
+ /**
6432
+ * Creates an audit-log subscription.
6433
+ *
6434
+ * Hits `POST /dashboard-bff/api/audit-logs/subscriptions`. A `409`
6435
+ * `subscription_already_exists` response RESOLVES successfully as
6436
+ * `{ alreadyExists: true }` (idempotent create); a `201` resolves as
6437
+ * `{ alreadyExists: false, subscription }`. Any other error rejects.
6438
+ *
6439
+ * On success (including the idempotent 409), the `['audit-subscriptions']`
6440
+ * query key is invalidated.
6441
+ */
6442
+ declare function useCreateAuditSubscription(): UseMutationResult<CreateAuditSubscriptionResult, AxiosError<BFFErrorResponse>, Audit.CreateAuditSubscriptionPayload>;
6443
+ /**
6444
+ * Deletes an audit-log subscription by its code.
6445
+ *
6446
+ * Hits `DELETE /dashboard-bff/api/audit-logs/subscriptions/{code}`. A `404`
6447
+ * `subscription_not_found` response RESOLVES successfully (idempotent delete —
6448
+ * the subscription is already gone). Any other error rejects.
6449
+ *
6450
+ * On success (including the idempotent 404), the `['audit-subscriptions']`
6451
+ * query key is invalidated.
6452
+ */
6453
+ declare function useDeleteAuditSubscription(): UseMutationResult<void, AxiosError<BFFErrorResponse>, string>;
6454
+
6322
6455
  declare function useCreateReconciliationReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<Reconciliation.Template, Reconciliation.Error>;
6323
6456
  declare function useUpdateReconciliationReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<unknown, Reconciliation.Error>;
6324
6457
 
@@ -7024,6 +7157,7 @@ declare function useGetReconciliationInsightsAmountToBeSettledSummary({ body, en
7024
7157
  declare function useGetReconciliationInsightsReconciliationRateByProvider({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateByProviderResponse, ReconciliationInsights.Error>;
7025
7158
  declare function useGetReconciliationInsightsReconciliationRateByAccount({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
7026
7159
  declare function useGetReconciliationInsightsReconciliationRateByCurrency({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
7160
+ declare function useGetReconciliationInsightsSettlementLookup({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.SettlementLookupBody>): UseQueryResult<ReconciliationInsights.SettlementDetail, ReconciliationInsights.Error>;
7027
7161
 
7028
7162
  declare namespace FeatureFlags {
7029
7163
  interface Request {
@@ -7099,6 +7233,15 @@ interface UseGetApiLogsV3ByPaymentCodeOptions {
7099
7233
  }
7100
7234
  declare function useGetApiLogsV3ByPaymentCode({ paymentCode, createdAtFrom, enabled, }: UseGetApiLogsV3ByPaymentCodeOptions): UseQueryResult<Audit.ApiLogsV3ListResponse, BFFErrorResponse>;
7101
7235
 
7236
+ /**
7237
+ * Lists audit-log subscriptions for the current organization.
7238
+ *
7239
+ * Hits `POST /dashboard-bff/api/audit-logs/subscriptions/list` with a JSON
7240
+ * body of filter params and unwraps the `{ data: [...] }` envelope so
7241
+ * consumers receive a flat `Audit.AuditSubscription[]`.
7242
+ */
7243
+ declare function useListAuditSubscriptions(params?: Audit.ListAuditSubscriptionsParams): UseQueryResult<Audit.AuditSubscription[], BFFErrorResponse>;
7244
+
7102
7245
  declare function useGetPaymentLinks(params: any, accountCode: any): UseQueryResult<any, unknown>;
7103
7246
  declare function useGetPaymentLinkByCode(paymentLinkCode: any): UseQueryResult<any, unknown>;
7104
7247
  declare function useGetCountriesConfigPaymentLink(enabled?: boolean): UseQueryResult<PaymentLinks.GetCountriesConfig, unknown>;
@@ -7236,6 +7379,7 @@ interface UseGetOnboardingStatusParams {
7236
7379
  declare function useGetOnboardingStatus({ accountCode, enabled, }: UseGetOnboardingStatusParams): _tanstack_react_query.UseQueryResult<Onboarding.OnboardingStatus, CustomAxiosResponse<null>>;
7237
7380
 
7238
7381
  declare function useGetRecipients(organizationCode: string, params: GetRecipientsParams, enabled?: boolean): UseQueryResult<Recipients.RecipientListResponse, AxiosError<BFFErrorResponse>>;
7382
+ declare function useGetRecipientsV2(organizationCode: string, params: GetRecipientsParams, enabled?: boolean): UseQueryResult<Recipients.RecipientListResponseV2, AxiosError<BFFErrorResponse>>;
7239
7383
  declare function useGetRecipientById(organizationCode: string, params: GetRecipientByIdParams, enabled?: boolean): UseQueryResult<Recipients.RecipientDetail, AxiosError<BFFErrorResponse>>;
7240
7384
  declare function useGetOnboardingDetail(organizationCode: string, params: GetOnboardingDetailParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingDetail, AxiosError<BFFErrorResponse>>;
7241
7385
  declare function useGetOnboardingTimeline(organizationCode: string, params: GetOnboardingTimelineParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingTimeline, AxiosError<BFFErrorResponse>>;
@@ -7524,6 +7668,7 @@ declare class Api extends HttpClient {
7524
7668
  getReconciliationInsightsReconciliationRateByProvider<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
7525
7669
  getReconciliationInsightsReconciliationRateByAccount<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
7526
7670
  getReconciliationInsightsReconciliationRateByCurrency<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
7671
+ getReconciliationInsightsSettlementLookup<T>(body: ReconciliationInsights.SettlementLookupBody): Promise<AxiosResponse<T>>;
7527
7672
  postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
7528
7673
  postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
7529
7674
  getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
@@ -7643,6 +7788,9 @@ declare class Api extends HttpClient {
7643
7788
  postApiLogsStatsErrorsByEndpoint<T>(payload: Audit.ApiLogsStatsParams): Promise<AxiosResponse<T>>;
7644
7789
  postApiLogsList<T>(payload: Audit.ApiLogsListParams): Promise<AxiosResponse<T>>;
7645
7790
  getApiLogsV3ByPaymentCode<T>(paymentCode: string, createdAtFrom?: string): Promise<AxiosResponse<T>>;
7791
+ createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
7792
+ listAuditSubscriptions<T>(params?: Audit.ListAuditSubscriptionsParams): Promise<AxiosResponse<T>>;
7793
+ deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
7646
7794
  useGetCountriesConfig<T>(): Promise<AxiosResponse<T, any>>;
7647
7795
  useGetCountriesConfigV2<T>(acceptLanguage?: string): Promise<AxiosResponse<T, any>>;
7648
7796
  getSmartRoutingMethods<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
@@ -7979,14 +8127,16 @@ declare class Api extends HttpClient {
7979
8127
  putBlackListType<T>(payload: any): Promise<AxiosResponse<T, any>>;
7980
8128
  changeBlackListStatus<T>(payload: any): Promise<AxiosResponse<T, any>>;
7981
8129
  changeBlackListStatusItem<T>(payload: any): Promise<AxiosResponse<T, any>>;
7982
- postBlackListItems<T>({ payload }: {
7983
- payload: any;
8130
+ postBlackListItems<T>({ payload, accountCode, }: {
8131
+ payload: unknown;
8132
+ accountCode?: string;
7984
8133
  }): Promise<AxiosResponse<T, any>>;
7985
- postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, }: {
7986
- blacklist_code: any;
7987
- expiration_days: any;
7988
- file: any;
7989
- handleSetProgress: any;
8134
+ postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, accountCode, }: {
8135
+ blacklist_code: string;
8136
+ expiration_days: number;
8137
+ file: string;
8138
+ handleSetProgress: (progress: number) => void;
8139
+ accountCode?: string;
7990
8140
  }): Promise<AxiosResponse<T, any>>;
7991
8141
  deleteBlackListType<T>({ black_list_code, }: {
7992
8142
  black_list_code: any;
@@ -8124,6 +8274,7 @@ declare class Api extends HttpClient {
8124
8274
  sort_by?: string;
8125
8275
  sort_order?: string;
8126
8276
  }): Promise<AxiosResponse<T, any>>;
8277
+ getRecipientsV2<T>(organizationCode: string, params: GetRecipientsParams): Promise<AxiosResponse<T, any>>;
8127
8278
  getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
8128
8279
  getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
8129
8280
  getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
@@ -8213,5 +8364,5 @@ declare const SESSION_EXPIRED_MESSAGE_TYPE = "yuno-dashboard:session-expired";
8213
8364
  declare function emitExpired(): void;
8214
8365
  declare function resetExpiredGuard(): void;
8215
8366
 
8216
- export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, CONCIERGE_ALERTS_QUERY_KEY, CONCIERGE_ALERT_BY_ID_QUERY_KEY, Certificates, Checkout, ConciergeAlerts, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FieldVisibility, FraudScreening, Installments, IntegrationRequest, MFA, Notifications, Onboarding, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Playground, Recipients, RecipientsExport, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SESSION_EXPIRED_MESSAGE_TYPE, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, emitExpired, getQueryKeyGetNameAndIcon, getQueryKeyPaymentMethodAccounts, getQueryKeyRequiredFields, queryCache, queryClient, resetExpiredGuard, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBlockOnboarding, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useBulkDisableAccounts, useBulkEnableAccounts, useBulkToggleMethod, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateCertificate, useCreateChart, useCreateChartWithTimezone, useCreateConciergeAlert, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOnboarding, useCreateOperationTransaction, useCreateOrgRole, useCreatePaymentLinks, useCreateRecipient, useCreateRecipientExport, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteCertificate, useDeleteCertificateAccount, useDeleteChart, useDeleteConciergeAlert, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeleteOrgRole, useDeletePaymentLink, useDeleteRecipient, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDownloadCertificate, useDownloadRecipientExport, useDuplicateAccount, useDuplicateVersion, useEditOrgRole, useEditPaymentLinks, useEditRoles, useEmailVerification, useEnableConciergeAlert, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByOrganization, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetApiLogsList, useGetApiLogsStatsErrors, useGetApiLogsStatsErrorsByEndpoint, useGetApiLogsStatsRequests, useGetApiLogsV3, useGetApiLogsV3ByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetCertificates, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConciergeAlertById, useGetConciergeAlerts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetHiddenFields, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrgPermissionsCatalog, useGetOrgRolesPermissions, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipientExportDownload, useGetRecipientExports, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhookTimeline, useGetWebhooksV2Detail, useGetWebhooksV3, useGetWorkOsMfaStatus, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetricsV3, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePatchOrganizationKeysNote, 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, usePostIntegrationRequest, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostPlaygroundExecuteFlow, usePostSlackFeatureNotification, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishCheckout, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useTableOnboarding, useToggleMethod, useUnInviteUsersV2, useUnblockOnboarding, useUnifiedExportStart, useUnrollUserV2, useUpdateCertificateAccounts, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOnboarding, useUpdateOrganizationStatus, useUpdateProfile, useUpdateRecipient, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useUploadPaymentLinkLogo, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosDomainStatus, useWorkosDomainVerificationPortal, useWorkosPasswordReset, useWorkosSsoConfigStatus, useWorkosVerifyMfa };
8217
- export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, BlockOnboardingParams, BulkToggleResult, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, 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, CreateOnboardingParams, CreateOnboardingPayload, CreateOnboardingProvider, CreateOnboardingTermsOfService, CreateRecipientAddress, CreateRecipientBank, CreateRecipientDocument, CreateRecipientDocumentation, CreateRecipientLegalRepresentative, CreateRecipientParams, CreateRecipientPayload, CreateRecipientPhone, CreateRecipientWithdrawalMethod, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteRecipientParams, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientExportsParams, 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, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, RoleType, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, ToggleMethodItem, TotalTimeline, TransactionHistory, UnblockOnboardingParams, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateOnboardingParams, UpdateOnboardingPayload, UpdateRecipientParams, UpdateRecipientPayload, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetApiLogsV3ByPaymentCodeOptions, UseGetApiLogsV3Options, UseGetChartFeedbackParams, UseGetOnboardingStatusParams, UseGetWebhookTimelineOptions, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage, WorkosDomainStatusResponse, WorkosSsoConfigStatusResponse, WorkosSsoConnection };
8367
+ export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, CONCIERGE_ALERTS_QUERY_KEY, CONCIERGE_ALERT_BY_ID_QUERY_KEY, Certificates, Checkout, ConciergeAlerts, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FieldVisibility, FraudScreening, Installments, IntegrationRequest, MFA, Notifications, Onboarding, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Playground, Recipients, RecipientsExport, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SESSION_EXPIRED_MESSAGE_TYPE, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, emitExpired, getQueryKeyGetNameAndIcon, getQueryKeyPaymentMethodAccounts, getQueryKeyRequiredFields, queryCache, queryClient, resetExpiredGuard, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBlockOnboarding, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useBulkDisableAccounts, useBulkEnableAccounts, useBulkToggleMethod, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateAuditSubscription, useCreateCertificate, useCreateChart, useCreateChartWithTimezone, useCreateConciergeAlert, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOnboarding, useCreateOperationTransaction, useCreateOrgRole, useCreatePaymentLinks, useCreateRecipient, useCreateRecipientExport, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteAuditSubscription, useDeleteBlackListType, useDeleteBlockListItem, useDeleteCertificate, useDeleteCertificateAccount, useDeleteChart, useDeleteConciergeAlert, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeleteOrgRole, useDeletePaymentLink, useDeleteRecipient, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDownloadCertificate, useDownloadRecipientExport, useDuplicateAccount, useDuplicateVersion, useEditOrgRole, useEditPaymentLinks, useEditRoles, useEmailVerification, useEnableConciergeAlert, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByOrganization, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetApiLogsList, useGetApiLogsStatsErrors, useGetApiLogsStatsErrorsByEndpoint, useGetApiLogsStatsRequests, useGetApiLogsV3, useGetApiLogsV3ByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetCertificates, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConciergeAlertById, useGetConciergeAlerts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetHiddenFields, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrgPermissionsCatalog, useGetOrgRolesPermissions, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipientExportDownload, useGetRecipientExports, useGetRecipients, useGetRecipientsV2, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsSettlementLookup, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhookTimeline, useGetWebhooksV2Detail, useGetWebhooksV3, useGetWorkOsMfaStatus, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetricsV3, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListAuditSubscriptions, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePatchOrganizationKeysNote, 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, usePostIntegrationRequest, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostPlaygroundExecuteFlow, usePostSlackFeatureNotification, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishCheckout, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useTableOnboarding, useToggleMethod, useUnInviteUsersV2, useUnblockOnboarding, useUnifiedExportStart, useUnrollUserV2, useUpdateCertificateAccounts, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOnboarding, useUpdateOrganizationStatus, useUpdateProfile, useUpdateRecipient, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useUploadPaymentLinkLogo, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosDomainStatus, useWorkosDomainVerificationPortal, useWorkosPasswordReset, useWorkosSsoConfigStatus, useWorkosVerifyMfa };
8368
+ export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, BlockOnboardingParams, BulkToggleResult, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateAuditSubscriptionResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateOnboardingParams, CreateOnboardingPayload, CreateOnboardingProvider, CreateOnboardingTermsOfService, CreateRecipientAddress, CreateRecipientBank, CreateRecipientDocument, CreateRecipientDocumentation, CreateRecipientLegalRepresentative, CreateRecipientParams, CreateRecipientPayload, CreateRecipientPhone, CreateRecipientWithdrawalMethod, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteRecipientParams, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientExportsParams, 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, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, RoleType, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, ToggleMethodItem, TotalTimeline, TransactionHistory, UnblockOnboardingParams, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateOnboardingParams, UpdateOnboardingPayload, UpdateRecipientParams, UpdateRecipientPayload, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetApiLogsV3ByPaymentCodeOptions, UseGetApiLogsV3Options, UseGetChartFeedbackParams, UseGetOnboardingStatusParams, UseGetWebhookTimelineOptions, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage, WorkosDomainStatusResponse, WorkosSsoConfigStatusResponse, WorkosSsoConnection };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/dashboard-api-mfe",
3
- "version": "1.20.0",
3
+ "version": "1.22.1",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",