@yuno-payments/dashboard-api-mfe 1.2.12 → 1.4.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 +205 -39
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +12 -0
- package/build/cjs/types/mutations/developers/developers.mutation.d.ts +7 -0
- package/build/cjs/types/mutations/security/security.mutation.d.ts +1 -0
- package/build/cjs/types/queries/reconciliations/reconciliation-insights.query.d.ts +3 -0
- package/build/cjs/types/types/reconciliation/reconciliation-insights.d.ts +21 -0
- package/build/cjs/types/types/user/user.d.ts +14 -0
- package/build/esm/index.js +205 -39
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +12 -0
- package/build/esm/types/mutations/developers/developers.mutation.d.ts +7 -0
- package/build/esm/types/mutations/security/security.mutation.d.ts +1 -0
- package/build/esm/types/queries/reconciliations/reconciliation-insights.query.d.ts +3 -0
- package/build/esm/types/types/reconciliation/reconciliation-insights.d.ts +21 -0
- package/build/esm/types/types/user/user.d.ts +14 -0
- package/build/index.d.ts +59 -1
- package/package.json +1 -1
|
@@ -60,6 +60,9 @@ export declare class Api extends HttpClient {
|
|
|
60
60
|
getReconciliationInsightsNotConfirmAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
61
61
|
getReconciliationInsightsNotConfirmList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
62
62
|
getReconciliationInsightsAmountToBeSettledSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
63
|
+
getReconciliationInsightsReconciliationRateByProvider<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
64
|
+
getReconciliationInsightsReconciliationRateByAccount<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
65
|
+
getReconciliationInsightsReconciliationRateByCurrency<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
63
66
|
postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
64
67
|
postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
65
68
|
getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
|
|
@@ -391,6 +394,7 @@ export declare class Api extends HttpClient {
|
|
|
391
394
|
changePasswordV2<T>(body: any): Promise<AxiosResponse<T>>;
|
|
392
395
|
workosPasswordReset<T>(body: any): Promise<AxiosResponse<T>>;
|
|
393
396
|
workosAdminPortal<T>(): Promise<AxiosResponse<T>>;
|
|
397
|
+
workosVerifyMfa<T>(body: any): Promise<AxiosResponse<T>>;
|
|
394
398
|
getCardBrands<T>(): Promise<AxiosResponse<T>>;
|
|
395
399
|
getPaymentFilters<T>(section: PaymentFiltersSection): Promise<AxiosResponse<T>>;
|
|
396
400
|
getPaymentMetricsFilters<T>(): Promise<AxiosResponse<T>>;
|
|
@@ -542,6 +546,14 @@ export declare class Api extends HttpClient {
|
|
|
542
546
|
getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
543
547
|
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
|
|
544
548
|
deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
|
|
549
|
+
private buildAuthHeaders;
|
|
550
|
+
getOrganizationKeysMetadata<T>(): Promise<AxiosResponse<T, any>>;
|
|
551
|
+
patchOrganizationKeysNote<T>(payload: {
|
|
552
|
+
note: string;
|
|
553
|
+
}, password: string): Promise<AxiosResponse<T, any>>;
|
|
554
|
+
postOrganizationKeysRoll<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
555
|
+
postOrganizationKeysTamRequest<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
556
|
+
postOrganizationKeysMarkRevealed<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
545
557
|
postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
546
558
|
getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
547
559
|
getInsightsReportAgain<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -20,5 +20,12 @@ export declare function useGetCredentialsMFA(): UseMutationResult<{
|
|
|
20
20
|
}, unknown, {
|
|
21
21
|
password?: string | undefined;
|
|
22
22
|
accountCode?: string | undefined;
|
|
23
|
+
otp?: string | undefined;
|
|
24
|
+
mfaToken?: string | undefined;
|
|
23
25
|
}, unknown>;
|
|
24
26
|
export declare function usePostCredentialsWithOtpMfa(): UseMutationResult<unknown>;
|
|
27
|
+
export declare function useGetOrganizationKeysMetadata(): UseMutationResult<unknown>;
|
|
28
|
+
export declare function usePatchOrganizationKeysNote(): UseMutationResult<unknown>;
|
|
29
|
+
export declare function usePostOrganizationKeysRoll(): UseMutationResult<unknown>;
|
|
30
|
+
export declare function usePostOrganizationKeysTamRequest(): UseMutationResult<unknown>;
|
|
31
|
+
export declare function usePostOrganizationKeysMarkRevealed(): UseMutationResult<unknown>;
|
|
@@ -3,3 +3,4 @@ import { UseMutationResult } from '@tanstack/react-query';
|
|
|
3
3
|
export declare function useChangePasswordV2(): UseMutationResult<User.ChangePasswordResponse, User.FailureReason>;
|
|
4
4
|
export declare function useWorkosPasswordReset(): UseMutationResult<User.WorkosPasswordResetResponse, User.FailureReason, User.WorkosPasswordResetRequest>;
|
|
5
5
|
export declare function useWorkosAdminPortal(): UseMutationResult<User.WorkosAdminPortalResponse, User.FailureReason>;
|
|
6
|
+
export declare function useWorkosVerifyMfa(): UseMutationResult<User.WorkosVerifyMfaResponse, User.FailureReason, User.WorkosVerifyMfaRequest>;
|
|
@@ -21,3 +21,6 @@ export declare function useGetReconciliationInsightsNotConfirmSummary({ body, en
|
|
|
21
21
|
export declare function useGetReconciliationInsightsNotConfirmAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
|
|
22
22
|
export declare function useGetReconciliationInsightsNotConfirmList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.ProcessedTransactionList, ReconciliationInsights.Error>;
|
|
23
23
|
export declare function useGetReconciliationInsightsAmountToBeSettledSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.ChartWithGraph, ReconciliationInsights.Error>;
|
|
24
|
+
export declare function useGetReconciliationInsightsReconciliationRateByProvider({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateByProviderResponse, ReconciliationInsights.Error>;
|
|
25
|
+
export declare function useGetReconciliationInsightsReconciliationRateByAccount({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
|
|
26
|
+
export declare function useGetReconciliationInsightsReconciliationRateByCurrency({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
|
|
@@ -145,6 +145,27 @@ export declare namespace ReconciliationInsights {
|
|
|
145
145
|
status_conflict: GenericChartSummary;
|
|
146
146
|
amount_conflict: GenericChartSummary;
|
|
147
147
|
}
|
|
148
|
+
export interface ReconciliationRateTotal {
|
|
149
|
+
total_transactions: number;
|
|
150
|
+
transactions_percentage: number;
|
|
151
|
+
}
|
|
152
|
+
export interface ReconciliationRateByProviderDay {
|
|
153
|
+
transaction_date: string;
|
|
154
|
+
total_transactions: number;
|
|
155
|
+
reconciled_transactions: number;
|
|
156
|
+
}
|
|
157
|
+
export interface ReconciliationRateItem {
|
|
158
|
+
code: string;
|
|
159
|
+
total_transactions: number;
|
|
160
|
+
transactions_percentage: number;
|
|
161
|
+
}
|
|
162
|
+
export interface ReconciliationRateByProvider extends ReconciliationRateItem {
|
|
163
|
+
metrics: ReconciliationRateByProviderDay[];
|
|
164
|
+
}
|
|
165
|
+
export interface ReconciliationRateByProviderResponse {
|
|
166
|
+
total: ReconciliationRateTotal;
|
|
167
|
+
data: ReconciliationRateByProvider[];
|
|
168
|
+
}
|
|
148
169
|
export interface UseInsightsQueryProps<T> {
|
|
149
170
|
body: T;
|
|
150
171
|
enabled?: boolean;
|
|
@@ -125,6 +125,20 @@ export declare namespace User {
|
|
|
125
125
|
interface WorkosAdminPortalResponse {
|
|
126
126
|
link: string;
|
|
127
127
|
}
|
|
128
|
+
interface WorkosVerifyMfaRequest {
|
|
129
|
+
challenge_token: string;
|
|
130
|
+
totp_code: string;
|
|
131
|
+
remember_device: boolean;
|
|
132
|
+
}
|
|
133
|
+
interface WorkosVerifyMfaResponse {
|
|
134
|
+
access_token: string;
|
|
135
|
+
mfa_token: string;
|
|
136
|
+
next_step: string;
|
|
137
|
+
session?: {
|
|
138
|
+
session_id: string;
|
|
139
|
+
expires_in: number;
|
|
140
|
+
};
|
|
141
|
+
}
|
|
128
142
|
interface ICustomizedApiKeysMembers {
|
|
129
143
|
code: string;
|
|
130
144
|
first_name: string;
|
package/build/index.d.ts
CHANGED
|
@@ -1529,6 +1529,20 @@ declare namespace User {
|
|
|
1529
1529
|
interface WorkosAdminPortalResponse {
|
|
1530
1530
|
link: string;
|
|
1531
1531
|
}
|
|
1532
|
+
interface WorkosVerifyMfaRequest {
|
|
1533
|
+
challenge_token: string;
|
|
1534
|
+
totp_code: string;
|
|
1535
|
+
remember_device: boolean;
|
|
1536
|
+
}
|
|
1537
|
+
interface WorkosVerifyMfaResponse {
|
|
1538
|
+
access_token: string;
|
|
1539
|
+
mfa_token: string;
|
|
1540
|
+
next_step: string;
|
|
1541
|
+
session?: {
|
|
1542
|
+
session_id: string;
|
|
1543
|
+
expires_in: number;
|
|
1544
|
+
};
|
|
1545
|
+
}
|
|
1532
1546
|
interface ICustomizedApiKeysMembers {
|
|
1533
1547
|
code: string;
|
|
1534
1548
|
first_name: string;
|
|
@@ -3710,6 +3724,27 @@ declare namespace ReconciliationInsights {
|
|
|
3710
3724
|
status_conflict: GenericChartSummary;
|
|
3711
3725
|
amount_conflict: GenericChartSummary;
|
|
3712
3726
|
}
|
|
3727
|
+
export interface ReconciliationRateTotal {
|
|
3728
|
+
total_transactions: number;
|
|
3729
|
+
transactions_percentage: number;
|
|
3730
|
+
}
|
|
3731
|
+
export interface ReconciliationRateByProviderDay {
|
|
3732
|
+
transaction_date: string;
|
|
3733
|
+
total_transactions: number;
|
|
3734
|
+
reconciled_transactions: number;
|
|
3735
|
+
}
|
|
3736
|
+
export interface ReconciliationRateItem {
|
|
3737
|
+
code: string;
|
|
3738
|
+
total_transactions: number;
|
|
3739
|
+
transactions_percentage: number;
|
|
3740
|
+
}
|
|
3741
|
+
export interface ReconciliationRateByProvider extends ReconciliationRateItem {
|
|
3742
|
+
metrics: ReconciliationRateByProviderDay[];
|
|
3743
|
+
}
|
|
3744
|
+
export interface ReconciliationRateByProviderResponse {
|
|
3745
|
+
total: ReconciliationRateTotal;
|
|
3746
|
+
data: ReconciliationRateByProvider[];
|
|
3747
|
+
}
|
|
3713
3748
|
export interface UseInsightsQueryProps<T> {
|
|
3714
3749
|
body: T;
|
|
3715
3750
|
enabled?: boolean;
|
|
@@ -5374,6 +5409,7 @@ declare function useValidateOrgName(): _tanstack_react_query.UseMutationResult<v
|
|
|
5374
5409
|
declare function useChangePasswordV2(): UseMutationResult<User.ChangePasswordResponse, User.FailureReason>;
|
|
5375
5410
|
declare function useWorkosPasswordReset(): UseMutationResult<User.WorkosPasswordResetResponse, User.FailureReason, User.WorkosPasswordResetRequest>;
|
|
5376
5411
|
declare function useWorkosAdminPortal(): UseMutationResult<User.WorkosAdminPortalResponse, User.FailureReason>;
|
|
5412
|
+
declare function useWorkosVerifyMfa(): UseMutationResult<User.WorkosVerifyMfaResponse, User.FailureReason, User.WorkosVerifyMfaRequest>;
|
|
5377
5413
|
|
|
5378
5414
|
declare function useUpdateProfile({ onSuccessCallback, }: {
|
|
5379
5415
|
onSuccessCallback?: () => void;
|
|
@@ -5700,8 +5736,15 @@ declare function useGetCredentialsMFA(): UseMutationResult<{
|
|
|
5700
5736
|
}, unknown, {
|
|
5701
5737
|
password?: string | undefined;
|
|
5702
5738
|
accountCode?: string | undefined;
|
|
5739
|
+
otp?: string | undefined;
|
|
5740
|
+
mfaToken?: string | undefined;
|
|
5703
5741
|
}, unknown>;
|
|
5704
5742
|
declare function usePostCredentialsWithOtpMfa(): UseMutationResult<unknown>;
|
|
5743
|
+
declare function useGetOrganizationKeysMetadata(): UseMutationResult<unknown>;
|
|
5744
|
+
declare function usePatchOrganizationKeysNote(): UseMutationResult<unknown>;
|
|
5745
|
+
declare function usePostOrganizationKeysRoll(): UseMutationResult<unknown>;
|
|
5746
|
+
declare function usePostOrganizationKeysTamRequest(): UseMutationResult<unknown>;
|
|
5747
|
+
declare function usePostOrganizationKeysMarkRevealed(): UseMutationResult<unknown>;
|
|
5705
5748
|
|
|
5706
5749
|
declare function usePostAuditMonitors({ onMutate }: {
|
|
5707
5750
|
onMutate: any;
|
|
@@ -6296,6 +6339,9 @@ declare function useGetReconciliationInsightsNotConfirmSummary({ body, enabled,
|
|
|
6296
6339
|
declare function useGetReconciliationInsightsNotConfirmAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
|
|
6297
6340
|
declare function useGetReconciliationInsightsNotConfirmList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.ProcessedTransactionList, ReconciliationInsights.Error>;
|
|
6298
6341
|
declare function useGetReconciliationInsightsAmountToBeSettledSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.ChartWithGraph, ReconciliationInsights.Error>;
|
|
6342
|
+
declare function useGetReconciliationInsightsReconciliationRateByProvider({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateByProviderResponse, ReconciliationInsights.Error>;
|
|
6343
|
+
declare function useGetReconciliationInsightsReconciliationRateByAccount({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
|
|
6344
|
+
declare function useGetReconciliationInsightsReconciliationRateByCurrency({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
|
|
6299
6345
|
|
|
6300
6346
|
declare namespace FeatureFlags {
|
|
6301
6347
|
interface Request {
|
|
@@ -6640,6 +6686,9 @@ declare class Api extends HttpClient {
|
|
|
6640
6686
|
getReconciliationInsightsNotConfirmAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
6641
6687
|
getReconciliationInsightsNotConfirmList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
6642
6688
|
getReconciliationInsightsAmountToBeSettledSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
6689
|
+
getReconciliationInsightsReconciliationRateByProvider<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
6690
|
+
getReconciliationInsightsReconciliationRateByAccount<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
6691
|
+
getReconciliationInsightsReconciliationRateByCurrency<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
6643
6692
|
postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
6644
6693
|
postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
6645
6694
|
getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
|
|
@@ -6971,6 +7020,7 @@ declare class Api extends HttpClient {
|
|
|
6971
7020
|
changePasswordV2<T>(body: any): Promise<AxiosResponse<T>>;
|
|
6972
7021
|
workosPasswordReset<T>(body: any): Promise<AxiosResponse<T>>;
|
|
6973
7022
|
workosAdminPortal<T>(): Promise<AxiosResponse<T>>;
|
|
7023
|
+
workosVerifyMfa<T>(body: any): Promise<AxiosResponse<T>>;
|
|
6974
7024
|
getCardBrands<T>(): Promise<AxiosResponse<T>>;
|
|
6975
7025
|
getPaymentFilters<T>(section: PaymentFiltersSection): Promise<AxiosResponse<T>>;
|
|
6976
7026
|
getPaymentMetricsFilters<T>(): Promise<AxiosResponse<T>>;
|
|
@@ -7122,6 +7172,14 @@ declare class Api extends HttpClient {
|
|
|
7122
7172
|
getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
7123
7173
|
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
|
|
7124
7174
|
deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
|
|
7175
|
+
private buildAuthHeaders;
|
|
7176
|
+
getOrganizationKeysMetadata<T>(): Promise<AxiosResponse<T, any>>;
|
|
7177
|
+
patchOrganizationKeysNote<T>(payload: {
|
|
7178
|
+
note: string;
|
|
7179
|
+
}, password: string): Promise<AxiosResponse<T, any>>;
|
|
7180
|
+
postOrganizationKeysRoll<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
7181
|
+
postOrganizationKeysTamRequest<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
7182
|
+
postOrganizationKeysMarkRevealed<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
7125
7183
|
postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
7126
7184
|
getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
7127
7185
|
getInsightsReportAgain<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -7247,5 +7305,5 @@ declare const useOrganizationCode: () => any;
|
|
|
7247
7305
|
|
|
7248
7306
|
declare const useAccountCode: () => any;
|
|
7249
7307
|
|
|
7250
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, 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, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosPasswordReset };
|
|
7308
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, 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, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, 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, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosPasswordReset, useWorkosVerifyMfa };
|
|
7251
7309
|
export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, 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, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, 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, 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, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetChartFeedbackParams, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage };
|