@yuno-payments/dashboard-api-mfe 1.19.0 → 1.21.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.
- package/build/cjs/index.js +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +13 -7
- package/build/cjs/types/msw/mocks/reconciliation-insights/index.d.ts +1 -0
- package/build/cjs/types/mutations/audit/audit-subscriptions.mutation.d.ts +41 -0
- package/build/cjs/types/mutations/audit/index.d.ts +1 -0
- package/build/cjs/types/mutations/fraud-screening/fraud-screening.mutation.d.ts +2 -0
- package/build/cjs/types/queries/audit/audit-subscriptions.query.d.ts +11 -0
- package/build/cjs/types/queries/audit/index.d.ts +1 -0
- package/build/cjs/types/queries/reconciliations/reconciliation-insights.query.d.ts +1 -0
- package/build/cjs/types/types/audit/audit.d.ts +25 -0
- package/build/cjs/types/types/reconciliation/reconciliation-insights.d.ts +50 -0
- package/build/esm/index.js +6 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +13 -7
- package/build/esm/types/msw/mocks/reconciliation-insights/index.d.ts +1 -0
- package/build/esm/types/mutations/audit/audit-subscriptions.mutation.d.ts +41 -0
- package/build/esm/types/mutations/audit/index.d.ts +1 -0
- package/build/esm/types/mutations/fraud-screening/fraud-screening.mutation.d.ts +2 -0
- package/build/esm/types/queries/audit/audit-subscriptions.query.d.ts +11 -0
- package/build/esm/types/queries/audit/index.d.ts +1 -0
- package/build/esm/types/queries/reconciliations/reconciliation-insights.query.d.ts +1 -0
- package/build/esm/types/types/audit/audit.d.ts +25 -0
- package/build/esm/types/types/reconciliation/reconciliation-insights.d.ts +50 -0
- package/build/index.d.ts +140 -9
- package/package.json +1 -1
|
@@ -65,6 +65,7 @@ export declare class Api extends HttpClient {
|
|
|
65
65
|
getReconciliationInsightsReconciliationRateByProvider<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
66
66
|
getReconciliationInsightsReconciliationRateByAccount<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
67
67
|
getReconciliationInsightsReconciliationRateByCurrency<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
68
|
+
getReconciliationInsightsSettlementLookup<T>(body: ReconciliationInsights.SettlementLookupBody): Promise<AxiosResponse<T>>;
|
|
68
69
|
postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
69
70
|
postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
70
71
|
getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
|
|
@@ -184,6 +185,9 @@ export declare class Api extends HttpClient {
|
|
|
184
185
|
postApiLogsStatsErrorsByEndpoint<T>(payload: Audit.ApiLogsStatsParams): Promise<AxiosResponse<T>>;
|
|
185
186
|
postApiLogsList<T>(payload: Audit.ApiLogsListParams): Promise<AxiosResponse<T>>;
|
|
186
187
|
getApiLogsV3ByPaymentCode<T>(paymentCode: string, createdAtFrom?: string): Promise<AxiosResponse<T>>;
|
|
188
|
+
createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
|
|
189
|
+
listAuditSubscriptions<T>(params?: Audit.ListAuditSubscriptionsParams): Promise<AxiosResponse<T>>;
|
|
190
|
+
deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
|
|
187
191
|
useGetCountriesConfig<T>(): Promise<AxiosResponse<T, any>>;
|
|
188
192
|
useGetCountriesConfigV2<T>(acceptLanguage?: string): Promise<AxiosResponse<T, any>>;
|
|
189
193
|
getSmartRoutingMethods<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
@@ -520,14 +524,16 @@ export declare class Api extends HttpClient {
|
|
|
520
524
|
putBlackListType<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
521
525
|
changeBlackListStatus<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
522
526
|
changeBlackListStatusItem<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
523
|
-
postBlackListItems<T>({ payload }: {
|
|
524
|
-
payload:
|
|
527
|
+
postBlackListItems<T>({ payload, accountCode, }: {
|
|
528
|
+
payload: unknown;
|
|
529
|
+
accountCode?: string;
|
|
525
530
|
}): Promise<AxiosResponse<T, any>>;
|
|
526
|
-
postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, }: {
|
|
527
|
-
blacklist_code:
|
|
528
|
-
expiration_days:
|
|
529
|
-
file:
|
|
530
|
-
handleSetProgress:
|
|
531
|
+
postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, accountCode, }: {
|
|
532
|
+
blacklist_code: string;
|
|
533
|
+
expiration_days: number;
|
|
534
|
+
file: string;
|
|
535
|
+
handleSetProgress: (progress: number) => void;
|
|
536
|
+
accountCode?: string;
|
|
531
537
|
}): Promise<AxiosResponse<T, any>>;
|
|
532
538
|
deleteBlackListType<T>({ black_list_code, }: {
|
|
533
539
|
black_list_code: 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>;
|
|
@@ -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>;
|
|
@@ -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
|
}
|
|
@@ -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 {
|
|
@@ -6178,11 +6253,13 @@ type PostBlackList = {
|
|
|
6178
6253
|
};
|
|
6179
6254
|
type PostBlackListItems = {
|
|
6180
6255
|
payload: FraudScreening.BlackListItemsPayload;
|
|
6256
|
+
accountCode?: string;
|
|
6181
6257
|
};
|
|
6182
6258
|
type PostBlackListBatch = {
|
|
6183
6259
|
blacklist_code: string;
|
|
6184
6260
|
expiration_days: number;
|
|
6185
6261
|
file: string;
|
|
6262
|
+
accountCode?: string;
|
|
6186
6263
|
};
|
|
6187
6264
|
type ChangePaymentsWebhook = {
|
|
6188
6265
|
paymentCode: string;
|
|
@@ -6319,6 +6396,44 @@ declare function useExportWebhooksLogs(): UseMutationResult<string, BFFErrorResp
|
|
|
6319
6396
|
declare function useExportDashboardLogs(): UseMutationResult<Audit.AuditExportResponse, BFFErrorResponse, Audit.ExportDashboardLogsRequest>;
|
|
6320
6397
|
declare function useExportMonitorsLogs(): UseMutationResult<Audit.AuditExportResponse, BFFErrorResponse, Audit.ExportMonitorsLogsRequest>;
|
|
6321
6398
|
|
|
6399
|
+
/**
|
|
6400
|
+
* Result of {@link useCreateAuditSubscription}'s `mutateAsync`.
|
|
6401
|
+
*
|
|
6402
|
+
* A `409 subscription_already_exists` response is treated as success
|
|
6403
|
+
* (idempotent create) and resolves with `{ alreadyExists: true }` rather
|
|
6404
|
+
* than rejecting — the caller treats an already-existing subscription as a
|
|
6405
|
+
* successful no-op.
|
|
6406
|
+
*/
|
|
6407
|
+
type CreateAuditSubscriptionResult = {
|
|
6408
|
+
alreadyExists: false;
|
|
6409
|
+
subscription: Audit.AuditSubscription;
|
|
6410
|
+
} | {
|
|
6411
|
+
alreadyExists: true;
|
|
6412
|
+
};
|
|
6413
|
+
/**
|
|
6414
|
+
* Creates an audit-log subscription.
|
|
6415
|
+
*
|
|
6416
|
+
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions`. A `409`
|
|
6417
|
+
* `subscription_already_exists` response RESOLVES successfully as
|
|
6418
|
+
* `{ alreadyExists: true }` (idempotent create); a `201` resolves as
|
|
6419
|
+
* `{ alreadyExists: false, subscription }`. Any other error rejects.
|
|
6420
|
+
*
|
|
6421
|
+
* On success (including the idempotent 409), the `['audit-subscriptions']`
|
|
6422
|
+
* query key is invalidated.
|
|
6423
|
+
*/
|
|
6424
|
+
declare function useCreateAuditSubscription(): UseMutationResult<CreateAuditSubscriptionResult, AxiosError<BFFErrorResponse>, Audit.CreateAuditSubscriptionPayload>;
|
|
6425
|
+
/**
|
|
6426
|
+
* Deletes an audit-log subscription by its code.
|
|
6427
|
+
*
|
|
6428
|
+
* Hits `DELETE /dashboard-bff/api/audit-logs/subscriptions/{code}`. A `404`
|
|
6429
|
+
* `subscription_not_found` response RESOLVES successfully (idempotent delete —
|
|
6430
|
+
* the subscription is already gone). Any other error rejects.
|
|
6431
|
+
*
|
|
6432
|
+
* On success (including the idempotent 404), the `['audit-subscriptions']`
|
|
6433
|
+
* query key is invalidated.
|
|
6434
|
+
*/
|
|
6435
|
+
declare function useDeleteAuditSubscription(): UseMutationResult<void, AxiosError<BFFErrorResponse>, string>;
|
|
6436
|
+
|
|
6322
6437
|
declare function useCreateReconciliationReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<Reconciliation.Template, Reconciliation.Error>;
|
|
6323
6438
|
declare function useUpdateReconciliationReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<unknown, Reconciliation.Error>;
|
|
6324
6439
|
|
|
@@ -7024,6 +7139,7 @@ declare function useGetReconciliationInsightsAmountToBeSettledSummary({ body, en
|
|
|
7024
7139
|
declare function useGetReconciliationInsightsReconciliationRateByProvider({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateByProviderResponse, ReconciliationInsights.Error>;
|
|
7025
7140
|
declare function useGetReconciliationInsightsReconciliationRateByAccount({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
|
|
7026
7141
|
declare function useGetReconciliationInsightsReconciliationRateByCurrency({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
|
|
7142
|
+
declare function useGetReconciliationInsightsSettlementLookup({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.SettlementLookupBody>): UseQueryResult<ReconciliationInsights.SettlementDetail, ReconciliationInsights.Error>;
|
|
7027
7143
|
|
|
7028
7144
|
declare namespace FeatureFlags {
|
|
7029
7145
|
interface Request {
|
|
@@ -7099,6 +7215,15 @@ interface UseGetApiLogsV3ByPaymentCodeOptions {
|
|
|
7099
7215
|
}
|
|
7100
7216
|
declare function useGetApiLogsV3ByPaymentCode({ paymentCode, createdAtFrom, enabled, }: UseGetApiLogsV3ByPaymentCodeOptions): UseQueryResult<Audit.ApiLogsV3ListResponse, BFFErrorResponse>;
|
|
7101
7217
|
|
|
7218
|
+
/**
|
|
7219
|
+
* Lists audit-log subscriptions for the current organization.
|
|
7220
|
+
*
|
|
7221
|
+
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions/list` with a JSON
|
|
7222
|
+
* body of filter params and unwraps the `{ data: [...] }` envelope so
|
|
7223
|
+
* consumers receive a flat `Audit.AuditSubscription[]`.
|
|
7224
|
+
*/
|
|
7225
|
+
declare function useListAuditSubscriptions(params?: Audit.ListAuditSubscriptionsParams): UseQueryResult<Audit.AuditSubscription[], BFFErrorResponse>;
|
|
7226
|
+
|
|
7102
7227
|
declare function useGetPaymentLinks(params: any, accountCode: any): UseQueryResult<any, unknown>;
|
|
7103
7228
|
declare function useGetPaymentLinkByCode(paymentLinkCode: any): UseQueryResult<any, unknown>;
|
|
7104
7229
|
declare function useGetCountriesConfigPaymentLink(enabled?: boolean): UseQueryResult<PaymentLinks.GetCountriesConfig, unknown>;
|
|
@@ -7524,6 +7649,7 @@ declare class Api extends HttpClient {
|
|
|
7524
7649
|
getReconciliationInsightsReconciliationRateByProvider<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
7525
7650
|
getReconciliationInsightsReconciliationRateByAccount<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
7526
7651
|
getReconciliationInsightsReconciliationRateByCurrency<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
7652
|
+
getReconciliationInsightsSettlementLookup<T>(body: ReconciliationInsights.SettlementLookupBody): Promise<AxiosResponse<T>>;
|
|
7527
7653
|
postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
7528
7654
|
postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
7529
7655
|
getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
|
|
@@ -7643,6 +7769,9 @@ declare class Api extends HttpClient {
|
|
|
7643
7769
|
postApiLogsStatsErrorsByEndpoint<T>(payload: Audit.ApiLogsStatsParams): Promise<AxiosResponse<T>>;
|
|
7644
7770
|
postApiLogsList<T>(payload: Audit.ApiLogsListParams): Promise<AxiosResponse<T>>;
|
|
7645
7771
|
getApiLogsV3ByPaymentCode<T>(paymentCode: string, createdAtFrom?: string): Promise<AxiosResponse<T>>;
|
|
7772
|
+
createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
|
|
7773
|
+
listAuditSubscriptions<T>(params?: Audit.ListAuditSubscriptionsParams): Promise<AxiosResponse<T>>;
|
|
7774
|
+
deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
|
|
7646
7775
|
useGetCountriesConfig<T>(): Promise<AxiosResponse<T, any>>;
|
|
7647
7776
|
useGetCountriesConfigV2<T>(acceptLanguage?: string): Promise<AxiosResponse<T, any>>;
|
|
7648
7777
|
getSmartRoutingMethods<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
@@ -7979,14 +8108,16 @@ declare class Api extends HttpClient {
|
|
|
7979
8108
|
putBlackListType<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
7980
8109
|
changeBlackListStatus<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
7981
8110
|
changeBlackListStatusItem<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
7982
|
-
postBlackListItems<T>({ payload }: {
|
|
7983
|
-
payload:
|
|
8111
|
+
postBlackListItems<T>({ payload, accountCode, }: {
|
|
8112
|
+
payload: unknown;
|
|
8113
|
+
accountCode?: string;
|
|
7984
8114
|
}): Promise<AxiosResponse<T, any>>;
|
|
7985
|
-
postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, }: {
|
|
7986
|
-
blacklist_code:
|
|
7987
|
-
expiration_days:
|
|
7988
|
-
file:
|
|
7989
|
-
handleSetProgress:
|
|
8115
|
+
postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, accountCode, }: {
|
|
8116
|
+
blacklist_code: string;
|
|
8117
|
+
expiration_days: number;
|
|
8118
|
+
file: string;
|
|
8119
|
+
handleSetProgress: (progress: number) => void;
|
|
8120
|
+
accountCode?: string;
|
|
7990
8121
|
}): Promise<AxiosResponse<T, any>>;
|
|
7991
8122
|
deleteBlackListType<T>({ black_list_code, }: {
|
|
7992
8123
|
black_list_code: any;
|
|
@@ -8213,5 +8344,5 @@ declare const SESSION_EXPIRED_MESSAGE_TYPE = "yuno-dashboard:session-expired";
|
|
|
8213
8344
|
declare function emitExpired(): void;
|
|
8214
8345
|
declare function resetExpiredGuard(): void;
|
|
8215
8346
|
|
|
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 };
|
|
8347
|
+
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, 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 };
|
|
8348
|
+
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 };
|