@yuno-payments/dashboard-api-mfe 2.0.1 → 2.0.2
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 +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +14 -1
- package/build/cjs/types/mutations/audit/audit-subscriptions.mutation.d.ts +1 -1
- package/build/cjs/types/queries/audit/audit-subscriptions.query.d.ts +8 -5
- package/build/cjs/types/queries/audit/audit.query.d.ts +13 -0
- package/build/cjs/types/types/audit/audit.d.ts +11 -15
- package/build/esm/index.js +5 -5
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +14 -1
- package/build/esm/types/mutations/audit/audit-subscriptions.mutation.d.ts +1 -1
- package/build/esm/types/queries/audit/audit-subscriptions.query.d.ts +8 -5
- package/build/esm/types/queries/audit/audit.query.d.ts +13 -0
- package/build/esm/types/types/audit/audit.d.ts +11 -15
- package/build/index.d.ts +48 -23
- package/package.json +1 -1
|
@@ -187,7 +187,7 @@ export declare class Api extends HttpClient {
|
|
|
187
187
|
postApiLogsList<T>(payload: Audit.ApiLogsListParams): Promise<AxiosResponse<T>>;
|
|
188
188
|
getApiLogsV3ByPaymentCode<T>(paymentCode: string, createdAtFrom?: string): Promise<AxiosResponse<T>>;
|
|
189
189
|
createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
|
|
190
|
-
listAuditSubscriptions<T>(
|
|
190
|
+
listAuditSubscriptions<T>(): Promise<AxiosResponse<T>>;
|
|
191
191
|
deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
|
|
192
192
|
useGetCountriesConfig<T>(): Promise<AxiosResponse<T, any>>;
|
|
193
193
|
useGetCountriesConfigV2<T>(acceptLanguage?: string): Promise<AxiosResponse<T, any>>;
|
|
@@ -440,6 +440,19 @@ export declare class Api extends HttpClient {
|
|
|
440
440
|
postAuditMonitors<T>(payload: Audit.AuditMonitorsParams): Promise<AxiosResponse<T, any>>;
|
|
441
441
|
getAuditMonitorDetail<T>(id: number | null): Promise<AxiosResponse<T, any>>;
|
|
442
442
|
getAuditEvents<T>(params: Audit.AuditEventsParams): Promise<AxiosResponse<T, any>>;
|
|
443
|
+
/**
|
|
444
|
+
* Fetches one audit event by its unique code. Powers the dashboard
|
|
445
|
+
* notification deep-link (DAS-15765): a bell card carries only the event
|
|
446
|
+
* code, and the audit-log list endpoint cannot filter by a unique code.
|
|
447
|
+
* The BFF resolves the organization from the session.
|
|
448
|
+
*
|
|
449
|
+
* Call is POST (not GET) because [account_codes] can carry ~800 UUIDs
|
|
450
|
+
* (the user's authorized accounts) which would overflow a GET query
|
|
451
|
+
* string. Same convention as the list endpoint. The BFF narrows
|
|
452
|
+
* `account_codes` against the user's permissions before scoping the
|
|
453
|
+
* SQL in audit-logs-ms.
|
|
454
|
+
*/
|
|
455
|
+
getAuditEventByCode<T>(eventCode: string, accountCodes: string[]): Promise<AxiosResponse<T, any>>;
|
|
443
456
|
getPaymentLinks<T>(params: any, account: any): Promise<AxiosResponse<T, any>>;
|
|
444
457
|
getPaymentLinksByCode<T>(paymentLinkCode: any): Promise<AxiosResponse<T, any>>;
|
|
445
458
|
postPaymentLinks<T>({ payload, accountCode, }: {
|
|
@@ -12,7 +12,7 @@ import { BFFErrorResponse } from '../smart-routing';
|
|
|
12
12
|
*/
|
|
13
13
|
export type CreateAuditSubscriptionResult = {
|
|
14
14
|
alreadyExists: false;
|
|
15
|
-
subscription: Audit.
|
|
15
|
+
subscription: Audit.AuditSubscriptionGroup;
|
|
16
16
|
} | {
|
|
17
17
|
alreadyExists: true;
|
|
18
18
|
};
|
|
@@ -2,10 +2,13 @@ import { UseQueryResult } from '@tanstack/react-query';
|
|
|
2
2
|
import type { Audit } from '../../types';
|
|
3
3
|
import { BFFErrorResponse } from '../../mutations';
|
|
4
4
|
/**
|
|
5
|
-
* Lists audit-log
|
|
5
|
+
* Lists audit-log subscription groups for the current organization.
|
|
6
6
|
*
|
|
7
|
-
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions/list` with
|
|
8
|
-
* body
|
|
9
|
-
*
|
|
7
|
+
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions/list` with an empty
|
|
8
|
+
* JSON body and unwraps the `{ data: [...] }` envelope so consumers receive a
|
|
9
|
+
* flat `Audit.AuditSubscriptionGroup[]`.
|
|
10
|
+
*
|
|
11
|
+
* v2.0 breaking change: filter params (source/event/account_codes) were
|
|
12
|
+
* removed — the BFF now returns all groups for the current user.
|
|
10
13
|
*/
|
|
11
|
-
export declare function useListAuditSubscriptions(
|
|
14
|
+
export declare function useListAuditSubscriptions(): UseQueryResult<Audit.AuditSubscriptionGroup[], BFFErrorResponse>;
|
|
@@ -3,6 +3,19 @@ import { AxiosError } from 'axios';
|
|
|
3
3
|
import type { Audit } from '../../types';
|
|
4
4
|
import { BFFErrorResponse } from '../../mutations';
|
|
5
5
|
export declare function useGetAuditEvents(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
6
|
+
/**
|
|
7
|
+
* Fetches one audit event by its unique code. Powers the dashboard
|
|
8
|
+
* notification deep-link (DAS-15765): clicking "View in audit log" on a bell
|
|
9
|
+
* notification card opens that specific event in the audit log drawer — even
|
|
10
|
+
* when the user's current filtered page does not contain it. Resolves with
|
|
11
|
+
* a 404 (rejected query) when the event has been removed / retention purged /
|
|
12
|
+
* access revoked, which the frontend renders as the inline edge-state banner.
|
|
13
|
+
*
|
|
14
|
+
* [accountCodes] is the user's full authorized account list (up to ~800
|
|
15
|
+
* UUIDs). The BFF scopes the upstream lookup so a deep-link cannot open an
|
|
16
|
+
* event on an account the user can't read.
|
|
17
|
+
*/
|
|
18
|
+
export declare function useGetAuditEventByCode(eventCode: string | null | undefined, accountCodes: string[] | undefined): UseQueryResult<Audit.AuditEventData, AxiosError>;
|
|
6
19
|
export declare function useGetAuditMonitorEventDetail(id: number | null): UseQueryResult<Audit.AuditMonitorDetail, AxiosError>;
|
|
7
20
|
export declare function usePostApiLogs(params: Audit.AuditApiLogsParams): UseQueryResult<Audit.AuditApiLogsResponse, BFFErrorResponse>;
|
|
8
21
|
export declare function usePostWebhookLogs({ params, }: {
|
|
@@ -459,29 +459,25 @@ export declare namespace Audit {
|
|
|
459
459
|
total_pages: number;
|
|
460
460
|
data: ApiLogV3Item[];
|
|
461
461
|
}
|
|
462
|
-
interface
|
|
462
|
+
interface AuditSubscriptionGroup {
|
|
463
463
|
code: string;
|
|
464
464
|
user_code: string;
|
|
465
465
|
user_email: string;
|
|
466
466
|
organization_code: string;
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
467
|
+
sources: string[];
|
|
468
|
+
events: string[];
|
|
469
|
+
account_codes: string[];
|
|
470
470
|
enabled: boolean;
|
|
471
471
|
created_at: string;
|
|
472
472
|
updated_at: string;
|
|
473
|
+
last_fired_at?: string | null;
|
|
473
474
|
}
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
}
|
|
479
|
-
interface ListAuditSubscriptionsParams {
|
|
480
|
-
source?: string;
|
|
481
|
-
event?: string;
|
|
482
|
-
account_codes?: string[];
|
|
483
|
-
}
|
|
475
|
+
type CreateAuditSubscriptionPayload = {
|
|
476
|
+
sources: string[];
|
|
477
|
+
events: string[];
|
|
478
|
+
account_codes: string[];
|
|
479
|
+
};
|
|
484
480
|
interface ListAuditSubscriptionsResponse {
|
|
485
|
-
data:
|
|
481
|
+
data: AuditSubscriptionGroup[];
|
|
486
482
|
}
|
|
487
483
|
}
|
package/build/index.d.ts
CHANGED
|
@@ -4582,30 +4582,26 @@ declare namespace Audit {
|
|
|
4582
4582
|
total_pages: number;
|
|
4583
4583
|
data: ApiLogV3Item[];
|
|
4584
4584
|
}
|
|
4585
|
-
interface
|
|
4585
|
+
interface AuditSubscriptionGroup {
|
|
4586
4586
|
code: string;
|
|
4587
4587
|
user_code: string;
|
|
4588
4588
|
user_email: string;
|
|
4589
4589
|
organization_code: string;
|
|
4590
|
-
|
|
4591
|
-
|
|
4592
|
-
|
|
4590
|
+
sources: string[];
|
|
4591
|
+
events: string[];
|
|
4592
|
+
account_codes: string[];
|
|
4593
4593
|
enabled: boolean;
|
|
4594
4594
|
created_at: string;
|
|
4595
4595
|
updated_at: string;
|
|
4596
|
+
last_fired_at?: string | null;
|
|
4596
4597
|
}
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
}
|
|
4602
|
-
interface ListAuditSubscriptionsParams {
|
|
4603
|
-
source?: string;
|
|
4604
|
-
event?: string;
|
|
4605
|
-
account_codes?: string[];
|
|
4606
|
-
}
|
|
4598
|
+
type CreateAuditSubscriptionPayload = {
|
|
4599
|
+
sources: string[];
|
|
4600
|
+
events: string[];
|
|
4601
|
+
account_codes: string[];
|
|
4602
|
+
};
|
|
4607
4603
|
interface ListAuditSubscriptionsResponse {
|
|
4608
|
-
data:
|
|
4604
|
+
data: AuditSubscriptionGroup[];
|
|
4609
4605
|
}
|
|
4610
4606
|
}
|
|
4611
4607
|
|
|
@@ -6424,7 +6420,7 @@ declare function useExportMonitorsLogs(): UseMutationResult<Audit.AuditExportRes
|
|
|
6424
6420
|
*/
|
|
6425
6421
|
type CreateAuditSubscriptionResult = {
|
|
6426
6422
|
alreadyExists: false;
|
|
6427
|
-
subscription: Audit.
|
|
6423
|
+
subscription: Audit.AuditSubscriptionGroup;
|
|
6428
6424
|
} | {
|
|
6429
6425
|
alreadyExists: true;
|
|
6430
6426
|
};
|
|
@@ -7198,6 +7194,19 @@ declare const useAllFeatureFlags: typeof useAllFeatureFlags$1;
|
|
|
7198
7194
|
declare const useCachedFeatureFlag: typeof useCachedFeatureFlag$1;
|
|
7199
7195
|
|
|
7200
7196
|
declare function useGetAuditEvents(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
7197
|
+
/**
|
|
7198
|
+
* Fetches one audit event by its unique code. Powers the dashboard
|
|
7199
|
+
* notification deep-link (DAS-15765): clicking "View in audit log" on a bell
|
|
7200
|
+
* notification card opens that specific event in the audit log drawer — even
|
|
7201
|
+
* when the user's current filtered page does not contain it. Resolves with
|
|
7202
|
+
* a 404 (rejected query) when the event has been removed / retention purged /
|
|
7203
|
+
* access revoked, which the frontend renders as the inline edge-state banner.
|
|
7204
|
+
*
|
|
7205
|
+
* [accountCodes] is the user's full authorized account list (up to ~800
|
|
7206
|
+
* UUIDs). The BFF scopes the upstream lookup so a deep-link cannot open an
|
|
7207
|
+
* event on an account the user can't read.
|
|
7208
|
+
*/
|
|
7209
|
+
declare function useGetAuditEventByCode(eventCode: string | null | undefined, accountCodes: string[] | undefined): UseQueryResult<Audit.AuditEventData, AxiosError>;
|
|
7201
7210
|
declare function useGetAuditMonitorEventDetail(id: number | null): UseQueryResult<Audit.AuditMonitorDetail, AxiosError>;
|
|
7202
7211
|
declare function usePostApiLogs(params: Audit.AuditApiLogsParams): UseQueryResult<Audit.AuditApiLogsResponse, BFFErrorResponse>;
|
|
7203
7212
|
declare function usePostWebhookLogs({ params, }: {
|
|
@@ -7234,13 +7243,16 @@ interface UseGetApiLogsV3ByPaymentCodeOptions {
|
|
|
7234
7243
|
declare function useGetApiLogsV3ByPaymentCode({ paymentCode, createdAtFrom, enabled, }: UseGetApiLogsV3ByPaymentCodeOptions): UseQueryResult<Audit.ApiLogsV3ListResponse, BFFErrorResponse>;
|
|
7235
7244
|
|
|
7236
7245
|
/**
|
|
7237
|
-
* Lists audit-log
|
|
7246
|
+
* Lists audit-log subscription groups for the current organization.
|
|
7247
|
+
*
|
|
7248
|
+
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions/list` with an empty
|
|
7249
|
+
* JSON body and unwraps the `{ data: [...] }` envelope so consumers receive a
|
|
7250
|
+
* flat `Audit.AuditSubscriptionGroup[]`.
|
|
7238
7251
|
*
|
|
7239
|
-
*
|
|
7240
|
-
*
|
|
7241
|
-
* consumers receive a flat `Audit.AuditSubscription[]`.
|
|
7252
|
+
* v2.0 breaking change: filter params (source/event/account_codes) were
|
|
7253
|
+
* removed — the BFF now returns all groups for the current user.
|
|
7242
7254
|
*/
|
|
7243
|
-
declare function useListAuditSubscriptions(
|
|
7255
|
+
declare function useListAuditSubscriptions(): UseQueryResult<Audit.AuditSubscriptionGroup[], BFFErrorResponse>;
|
|
7244
7256
|
|
|
7245
7257
|
declare function useGetPaymentLinks(params: any, accountCode: any): UseQueryResult<any, unknown>;
|
|
7246
7258
|
declare function useGetPaymentLinkByCode(paymentLinkCode: any): UseQueryResult<any, unknown>;
|
|
@@ -7789,7 +7801,7 @@ declare class Api extends HttpClient {
|
|
|
7789
7801
|
postApiLogsList<T>(payload: Audit.ApiLogsListParams): Promise<AxiosResponse<T>>;
|
|
7790
7802
|
getApiLogsV3ByPaymentCode<T>(paymentCode: string, createdAtFrom?: string): Promise<AxiosResponse<T>>;
|
|
7791
7803
|
createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
|
|
7792
|
-
listAuditSubscriptions<T>(
|
|
7804
|
+
listAuditSubscriptions<T>(): Promise<AxiosResponse<T>>;
|
|
7793
7805
|
deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
|
|
7794
7806
|
useGetCountriesConfig<T>(): Promise<AxiosResponse<T, any>>;
|
|
7795
7807
|
useGetCountriesConfigV2<T>(acceptLanguage?: string): Promise<AxiosResponse<T, any>>;
|
|
@@ -8042,6 +8054,19 @@ declare class Api extends HttpClient {
|
|
|
8042
8054
|
postAuditMonitors<T>(payload: Audit.AuditMonitorsParams): Promise<AxiosResponse<T, any>>;
|
|
8043
8055
|
getAuditMonitorDetail<T>(id: number | null): Promise<AxiosResponse<T, any>>;
|
|
8044
8056
|
getAuditEvents<T>(params: Audit.AuditEventsParams): Promise<AxiosResponse<T, any>>;
|
|
8057
|
+
/**
|
|
8058
|
+
* Fetches one audit event by its unique code. Powers the dashboard
|
|
8059
|
+
* notification deep-link (DAS-15765): a bell card carries only the event
|
|
8060
|
+
* code, and the audit-log list endpoint cannot filter by a unique code.
|
|
8061
|
+
* The BFF resolves the organization from the session.
|
|
8062
|
+
*
|
|
8063
|
+
* Call is POST (not GET) because [account_codes] can carry ~800 UUIDs
|
|
8064
|
+
* (the user's authorized accounts) which would overflow a GET query
|
|
8065
|
+
* string. Same convention as the list endpoint. The BFF narrows
|
|
8066
|
+
* `account_codes` against the user's permissions before scoping the
|
|
8067
|
+
* SQL in audit-logs-ms.
|
|
8068
|
+
*/
|
|
8069
|
+
getAuditEventByCode<T>(eventCode: string, accountCodes: string[]): Promise<AxiosResponse<T, any>>;
|
|
8045
8070
|
getPaymentLinks<T>(params: any, account: any): Promise<AxiosResponse<T, any>>;
|
|
8046
8071
|
getPaymentLinksByCode<T>(paymentLinkCode: any): Promise<AxiosResponse<T, any>>;
|
|
8047
8072
|
postPaymentLinks<T>({ payload, accountCode, }: {
|
|
@@ -8418,5 +8443,5 @@ declare const SESSION_EXPIRED_MESSAGE_TYPE = "yuno-dashboard:session-expired";
|
|
|
8418
8443
|
declare function emitExpired(): void;
|
|
8419
8444
|
declare function resetExpiredGuard(): void;
|
|
8420
8445
|
|
|
8421
|
-
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, getDatadogEnvironment, 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 };
|
|
8446
|
+
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, getDatadogEnvironment, 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, useGetAuditEventByCode, 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 };
|
|
8422
8447
|
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, DatadogEnvironment, 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 };
|