@yuno-payments/dashboard-api-mfe 0.36.20-CORECM-11508.1 → 0.36.20-CORECM-11508.3
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 +10 -5
- package/build/cjs/types/queries/checkouts/styling/styling.query.d.ts +8 -5
- package/build/cjs/types/queries/payments/payments.query.d.ts +2 -2
- package/build/cjs/types/queries/reports/reports.query.d.ts +1 -1
- package/build/cjs/types/types/checkout/styling/styling.d.ts +55 -0
- package/build/esm/index.js +3 -3
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +10 -5
- package/build/esm/types/queries/checkouts/styling/styling.query.d.ts +8 -5
- package/build/esm/types/queries/payments/payments.query.d.ts +2 -2
- package/build/esm/types/queries/reports/reports.query.d.ts +1 -1
- package/build/esm/types/types/checkout/styling/styling.d.ts +55 -0
- package/build/index.d.ts +74 -12
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ import { ChangePaymentsWebhook } from '../mutations';
|
|
|
8
8
|
import { S3Client } from '../types/s3-client';
|
|
9
9
|
import { AllowedList } from '../types/allowed-list';
|
|
10
10
|
import { Cost } from '../types/connection/costs';
|
|
11
|
-
import { Styling } from '../types/checkout/styling/styling';
|
|
11
|
+
import { Styling, StylingSettings } from '../types/checkout/styling/styling';
|
|
12
12
|
import { FeatureFlags } from '../types/feature-flags/intex';
|
|
13
13
|
import { FeatureFlagsResult } from '../queries';
|
|
14
14
|
interface S3Payload {
|
|
@@ -219,7 +219,12 @@ export declare class Api extends HttpClient {
|
|
|
219
219
|
getStylingSettings({ accountCode, environment, }: {
|
|
220
220
|
accountCode: string;
|
|
221
221
|
environment?: string;
|
|
222
|
-
}): Promise<AxiosResponse<
|
|
222
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
223
|
+
changeStylingSettings({ accountCode, environment, payload, }: {
|
|
224
|
+
accountCode: string;
|
|
225
|
+
environment?: string;
|
|
226
|
+
payload: StylingSettings.UpdateSettings;
|
|
227
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
223
228
|
emailVerification<T>(email: any): Promise<AxiosResponse<T, any>>;
|
|
224
229
|
createReconciliationsReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
225
230
|
createReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
@@ -232,9 +237,9 @@ export declare class Api extends HttpClient {
|
|
|
232
237
|
createReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
233
238
|
updateReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
234
239
|
getReportColumns<T>(templateType: TemplateType, reportType: ReportType): Promise<any>;
|
|
235
|
-
getRefundPdf<T>(transactionCode:
|
|
236
|
-
getProofOfCancel<T>(transactionCode: string, organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
237
|
-
getProofOfPayment<T>(transactionCode: string, organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
240
|
+
getRefundPdf<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
241
|
+
getProofOfCancel<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
242
|
+
getProofOfPayment<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
238
243
|
getScheduledReport<T>(reportType: any): Promise<AxiosResponse<T>>;
|
|
239
244
|
postScheduledReport<T>(payload: IListScheduledReportsResponse): Promise<AxiosResponse<T>>;
|
|
240
245
|
updateScheduledReport<T>(reportCode: string, payload: IListScheduledReportsResponse): Promise<AxiosResponse<T>>;
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
accountCode: string;
|
|
3
|
-
}): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Theme, unknown>;
|
|
1
|
+
import { Styling, StylingSettings } from '../../../types/checkout/styling/styling';
|
|
4
2
|
export declare function useGetStylingSdkDynamic({ accountCode, }: {
|
|
5
3
|
accountCode: string;
|
|
6
|
-
}): import("@tanstack/react-query").UseQueryResult<
|
|
4
|
+
}): import("@tanstack/react-query").UseQueryResult<Styling.Settings, unknown>;
|
|
7
5
|
export declare function useGetStylingSettings({ accountCode, environment, }: {
|
|
8
6
|
accountCode: string;
|
|
9
7
|
environment?: string;
|
|
10
|
-
}): import("@tanstack/react-query").UseQueryResult<
|
|
8
|
+
}): import("@tanstack/react-query").UseQueryResult<StylingSettings.UpdateSettingsResponse, unknown>;
|
|
9
|
+
export declare function useChangeStylingSettings(): import("@tanstack/react-query").UseMutationResult<StylingSettings.UpdateSettingsResponse, unknown, {
|
|
10
|
+
accountCode: string;
|
|
11
|
+
environment?: string | undefined;
|
|
12
|
+
payload: StylingSettings.UpdateSettings;
|
|
13
|
+
}, unknown>;
|
|
@@ -31,6 +31,6 @@ export declare function usePostFraudTransactions(params: GetTransactionsParams):
|
|
|
31
31
|
export declare function useGetPayoutDetail(params: GetPayoutDetail): UseQueryResult<Payouts.Details | AxiosError>;
|
|
32
32
|
export declare function useGetPayoutTransactionDetail(params: GetPayoutTransactionDetail): UseQueryResult;
|
|
33
33
|
export declare function useGetPayoutHistoryDetail(params: GetPayoutDetail): UseQueryResult;
|
|
34
|
-
export declare function useGetProofOfCancel(transactionCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
35
|
-
export declare function useGetProofOfPayment(transactionCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
34
|
+
export declare function useGetProofOfCancel(transactionCode: string, accountCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
35
|
+
export declare function useGetProofOfPayment(transactionCode: string, accountCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
36
36
|
export declare function useSendPaymentNotification(params: SendPaymentNotification.Params, body: SendPaymentNotification.Body, options: SendPaymentNotification.Options): UseQueryResult<SendPaymentNotification.Response, AxiosError>;
|
|
@@ -10,4 +10,4 @@ export declare function useGetDownloadReport(reportId: string, enabled: boolean
|
|
|
10
10
|
}, unknown>;
|
|
11
11
|
export declare function useGetReportTemplates(enabled: boolean): UseQueryResult<Reports.ITemplate[], unknown>;
|
|
12
12
|
export declare function useGetReportColumns(enabled: boolean, templateType: TemplateType, reportType: ReportType): UseQueryResult<Reports.IColumn[], unknown>;
|
|
13
|
-
export declare function useGetRefundPdf(transactionCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
13
|
+
export declare function useGetRefundPdf(transactionCode: string, accountCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
@@ -74,3 +74,58 @@ export declare namespace Styling {
|
|
|
74
74
|
}
|
|
75
75
|
export {};
|
|
76
76
|
}
|
|
77
|
+
export declare namespace StylingSettings {
|
|
78
|
+
interface UpdateSettings {
|
|
79
|
+
styles: {
|
|
80
|
+
global: {
|
|
81
|
+
accent_color?: string;
|
|
82
|
+
primary_background_color?: string;
|
|
83
|
+
primary_text_color?: string;
|
|
84
|
+
primary_button_text_color?: string;
|
|
85
|
+
secondary_background_color?: string;
|
|
86
|
+
secondary_text_color?: string;
|
|
87
|
+
secondary_button_background_color?: string;
|
|
88
|
+
secondary_button_text_color?: string;
|
|
89
|
+
font_family?: string;
|
|
90
|
+
};
|
|
91
|
+
header?: {
|
|
92
|
+
logo_border_size?: number;
|
|
93
|
+
logo_border_color?: string;
|
|
94
|
+
logo_corner_radius?: number;
|
|
95
|
+
font_size?: number;
|
|
96
|
+
font_weight?: number;
|
|
97
|
+
};
|
|
98
|
+
button?: {
|
|
99
|
+
corner_radius?: number;
|
|
100
|
+
border_size?: number;
|
|
101
|
+
primary_border_color?: string;
|
|
102
|
+
secondary_border_color?: string;
|
|
103
|
+
font_size?: number;
|
|
104
|
+
font_weight?: number;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
settings: {
|
|
108
|
+
sdk_type?: {
|
|
109
|
+
web?: string;
|
|
110
|
+
mobile?: string;
|
|
111
|
+
};
|
|
112
|
+
card?: {
|
|
113
|
+
save_on_success?: boolean;
|
|
114
|
+
visualization_mode?: string;
|
|
115
|
+
};
|
|
116
|
+
web_sdk?: {
|
|
117
|
+
render_mode?: string;
|
|
118
|
+
hide_pay_button?: boolean;
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
}
|
|
122
|
+
interface UpdateSettingsResponse extends UpdateSettings {
|
|
123
|
+
external_fonts: {
|
|
124
|
+
family_name: string;
|
|
125
|
+
files: {
|
|
126
|
+
url: string;
|
|
127
|
+
weight: number;
|
|
128
|
+
}[];
|
|
129
|
+
}[];
|
|
130
|
+
}
|
|
131
|
+
}
|
package/build/index.d.ts
CHANGED
|
@@ -3739,6 +3739,61 @@ declare namespace Styling {
|
|
|
3739
3739
|
}
|
|
3740
3740
|
export {};
|
|
3741
3741
|
}
|
|
3742
|
+
declare namespace StylingSettings {
|
|
3743
|
+
interface UpdateSettings {
|
|
3744
|
+
styles: {
|
|
3745
|
+
global: {
|
|
3746
|
+
accent_color?: string;
|
|
3747
|
+
primary_background_color?: string;
|
|
3748
|
+
primary_text_color?: string;
|
|
3749
|
+
primary_button_text_color?: string;
|
|
3750
|
+
secondary_background_color?: string;
|
|
3751
|
+
secondary_text_color?: string;
|
|
3752
|
+
secondary_button_background_color?: string;
|
|
3753
|
+
secondary_button_text_color?: string;
|
|
3754
|
+
font_family?: string;
|
|
3755
|
+
};
|
|
3756
|
+
header?: {
|
|
3757
|
+
logo_border_size?: number;
|
|
3758
|
+
logo_border_color?: string;
|
|
3759
|
+
logo_corner_radius?: number;
|
|
3760
|
+
font_size?: number;
|
|
3761
|
+
font_weight?: number;
|
|
3762
|
+
};
|
|
3763
|
+
button?: {
|
|
3764
|
+
corner_radius?: number;
|
|
3765
|
+
border_size?: number;
|
|
3766
|
+
primary_border_color?: string;
|
|
3767
|
+
secondary_border_color?: string;
|
|
3768
|
+
font_size?: number;
|
|
3769
|
+
font_weight?: number;
|
|
3770
|
+
};
|
|
3771
|
+
};
|
|
3772
|
+
settings: {
|
|
3773
|
+
sdk_type?: {
|
|
3774
|
+
web?: string;
|
|
3775
|
+
mobile?: string;
|
|
3776
|
+
};
|
|
3777
|
+
card?: {
|
|
3778
|
+
save_on_success?: boolean;
|
|
3779
|
+
visualization_mode?: string;
|
|
3780
|
+
};
|
|
3781
|
+
web_sdk?: {
|
|
3782
|
+
render_mode?: string;
|
|
3783
|
+
hide_pay_button?: boolean;
|
|
3784
|
+
};
|
|
3785
|
+
};
|
|
3786
|
+
}
|
|
3787
|
+
interface UpdateSettingsResponse extends UpdateSettings {
|
|
3788
|
+
external_fonts: {
|
|
3789
|
+
family_name: string;
|
|
3790
|
+
files: {
|
|
3791
|
+
url: string;
|
|
3792
|
+
weight: number;
|
|
3793
|
+
}[];
|
|
3794
|
+
}[];
|
|
3795
|
+
}
|
|
3796
|
+
}
|
|
3742
3797
|
|
|
3743
3798
|
declare function useUpdateStylingTheme(): _tanstack_react_query.UseMutationResult<unknown, unknown, Styling.UpdateStylingThemeParams, unknown>;
|
|
3744
3799
|
|
|
@@ -4082,8 +4137,8 @@ declare function usePostFraudTransactions(params: GetTransactionsParams): UseQue
|
|
|
4082
4137
|
declare function useGetPayoutDetail(params: GetPayoutDetail): UseQueryResult<Payouts.Details | AxiosError>;
|
|
4083
4138
|
declare function useGetPayoutTransactionDetail(params: GetPayoutTransactionDetail): UseQueryResult;
|
|
4084
4139
|
declare function useGetPayoutHistoryDetail(params: GetPayoutDetail): UseQueryResult;
|
|
4085
|
-
declare function useGetProofOfCancel(transactionCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
4086
|
-
declare function useGetProofOfPayment(transactionCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
4140
|
+
declare function useGetProofOfCancel(transactionCode: string, accountCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
4141
|
+
declare function useGetProofOfPayment(transactionCode: string, accountCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
4087
4142
|
declare function useSendPaymentNotification(params: SendPaymentNotification.Params, body: SendPaymentNotification.Body, options: SendPaymentNotification.Options): UseQueryResult<SendPaymentNotification.Response, AxiosError>;
|
|
4088
4143
|
|
|
4089
4144
|
declare function usePayoutsList(params: GetPaymentsParams | null): UseQueryResult<Payouts.List | AxiosError>;
|
|
@@ -4239,16 +4294,18 @@ declare const useGetNameAndIcon: ({ paymentMethodType, type }: Checkout.GetNameA
|
|
|
4239
4294
|
declare const getQueryKeyRequiredFields: ({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs) => string[];
|
|
4240
4295
|
declare const useGetRequiredFields: ({ paymentMethodType, type }: Checkout.GetRequiredFieldsArgs, option?: UseQueryOptions<Checkout.GetRequiredFieldsResponse, unknown, Checkout.GetRequiredFieldsResponse>) => UseQueryResult<Checkout.GetRequiredFieldsResponse, unknown>;
|
|
4241
4296
|
|
|
4242
|
-
declare function useGetStylingTheme({ accountCode }: {
|
|
4243
|
-
accountCode: string;
|
|
4244
|
-
}): _tanstack_react_query.UseQueryResult<Styling.Theme, unknown>;
|
|
4245
4297
|
declare function useGetStylingSdkDynamic({ accountCode, }: {
|
|
4246
4298
|
accountCode: string;
|
|
4247
4299
|
}): _tanstack_react_query.UseQueryResult<Styling.Settings, unknown>;
|
|
4248
4300
|
declare function useGetStylingSettings({ accountCode, environment, }: {
|
|
4249
4301
|
accountCode: string;
|
|
4250
4302
|
environment?: string;
|
|
4251
|
-
}): _tanstack_react_query.UseQueryResult<
|
|
4303
|
+
}): _tanstack_react_query.UseQueryResult<StylingSettings.UpdateSettingsResponse, unknown>;
|
|
4304
|
+
declare function useChangeStylingSettings(): _tanstack_react_query.UseMutationResult<StylingSettings.UpdateSettingsResponse, unknown, {
|
|
4305
|
+
accountCode: string;
|
|
4306
|
+
environment?: string | undefined;
|
|
4307
|
+
payload: StylingSettings.UpdateSettings;
|
|
4308
|
+
}, unknown>;
|
|
4252
4309
|
|
|
4253
4310
|
declare function useGetProfile(): UseQueryResult<User.UserResponsePayload, unknown>;
|
|
4254
4311
|
declare function useGetPermissions(organizationCode: any, accountCode: any): UseQueryResult<Accounts.PermissionsResponse[], unknown>;
|
|
@@ -4276,7 +4333,7 @@ declare function useGetDownloadReport(reportId: string, enabled: boolean | undef
|
|
|
4276
4333
|
}, unknown>;
|
|
4277
4334
|
declare function useGetReportTemplates(enabled: boolean): UseQueryResult<Reports.ITemplate[], unknown>;
|
|
4278
4335
|
declare function useGetReportColumns(enabled: boolean, templateType: TemplateType, reportType: ReportType): UseQueryResult<Reports.IColumn[], unknown>;
|
|
4279
|
-
declare function useGetRefundPdf(transactionCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
4336
|
+
declare function useGetRefundPdf(transactionCode: string, accountCode: string): UseQueryResult<RefundPdfResponse, AxiosError>;
|
|
4280
4337
|
|
|
4281
4338
|
declare function useGetTeamsFiltersMembers(): UseQueryResult<Team.TeamList[], unknown>;
|
|
4282
4339
|
declare function usePostMembersPaginatedV2({ organizationCode, accountCodes, email, page, pageSize, }: {
|
|
@@ -4709,7 +4766,12 @@ declare class Api extends HttpClient {
|
|
|
4709
4766
|
getStylingSettings({ accountCode, environment, }: {
|
|
4710
4767
|
accountCode: string;
|
|
4711
4768
|
environment?: string;
|
|
4712
|
-
}): Promise<AxiosResponse<
|
|
4769
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
4770
|
+
changeStylingSettings({ accountCode, environment, payload, }: {
|
|
4771
|
+
accountCode: string;
|
|
4772
|
+
environment?: string;
|
|
4773
|
+
payload: StylingSettings.UpdateSettings;
|
|
4774
|
+
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
4713
4775
|
emailVerification<T>(email: any): Promise<AxiosResponse<T, any>>;
|
|
4714
4776
|
createReconciliationsReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
4715
4777
|
createReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
|
|
@@ -4722,9 +4784,9 @@ declare class Api extends HttpClient {
|
|
|
4722
4784
|
createReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
4723
4785
|
updateReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
4724
4786
|
getReportColumns<T>(templateType: TemplateType, reportType: ReportType): Promise<any>;
|
|
4725
|
-
getRefundPdf<T>(transactionCode:
|
|
4726
|
-
getProofOfCancel<T>(transactionCode: string, organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
4727
|
-
getProofOfPayment<T>(transactionCode: string, organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
4787
|
+
getRefundPdf<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
4788
|
+
getProofOfCancel<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
4789
|
+
getProofOfPayment<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
4728
4790
|
getScheduledReport<T>(reportType: any): Promise<AxiosResponse<T>>;
|
|
4729
4791
|
postScheduledReport<T>(payload: IListScheduledReportsResponse): Promise<AxiosResponse<T>>;
|
|
4730
4792
|
updateScheduledReport<T>(reportCode: string, payload: IListScheduledReportsResponse): Promise<AxiosResponse<T>>;
|
|
@@ -4987,5 +5049,5 @@ declare enum ApiErrorCodes {
|
|
|
4987
5049
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
4988
5050
|
}
|
|
4989
5051
|
|
|
4990
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChargebacksUpload, useChartExecute, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettings,
|
|
5052
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChargebacksUpload, useChartExecute, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettings, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookMultiAccount, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useSaveVersion, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
4991
5053
|
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FirebaseUserSubscribe, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, GetApiLogsParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, IChangePassword, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload };
|