@yuno-payments/dashboard-api-mfe 1.5.0 → 1.6.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.
@@ -251,10 +251,19 @@ export declare class Api extends HttpClient {
251
251
  }): Promise<AxiosResponse<Checkout.CheckoutList[]>>;
252
252
  getNameAndIcon({ paymentMethodType, type, }: Checkout.GetNameAndIconArgs): Promise<AxiosResponse<Checkout.GetNameAndIconResponse>>;
253
253
  getRequiredFields({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs): Promise<AxiosResponse<Checkout.GetRequiredFieldsResponse>>;
254
+ getPaymentMethodAccounts({ paymentMethod, organizationCode, }: Checkout.GetPaymentMethodAccountsArgs): Promise<AxiosResponse<Checkout.GetPaymentMethodAccountsResponse>>;
255
+ /**
256
+ * @deprecated since v0.28.6. Use changeStylingSettings instead
257
+ */
258
+ updateCheckoutTemplate<T>({ accountCode, template, }: {
259
+ accountCode: string;
260
+ template: Checkout.CheckoutTemplateResponse['template'];
261
+ }): Promise<AxiosResponse<T>>;
254
262
  updateIsActiveCheckout(args: Checkout.UpdateIsActiveCheckoutParams): Promise<AxiosResponse>;
255
263
  getCountryData({ accountCode, }: {
256
264
  accountCode: string;
257
265
  }): Promise<AxiosResponse<Checkout.GetCountryDataResponse>>;
266
+ publishCheckout(args: Checkout.PublishCheckoutParams): Promise<AxiosResponse>;
258
267
  getStylingSdkDynamic({ accountCode }: {
259
268
  accountCode: any;
260
269
  }): Promise<AxiosResponse<Styling.Settings, any, {}>>;
@@ -2,3 +2,4 @@ import { UseMutationOptions } from '@tanstack/react-query';
2
2
  import { Checkout } from '../../types';
3
3
  import { AxiosResponse } from 'axios';
4
4
  export declare function useUpdateIsActiveCheckout(options?: UseMutationOptions<AxiosResponse, unknown, Checkout.UpdateIsActiveCheckoutParams>): import("@tanstack/react-query").UseMutationResult<AxiosResponse<any, any, {}>, unknown, Checkout.UpdateIsActiveCheckoutParams, unknown>;
5
+ export declare function usePublishCheckout(options?: UseMutationOptions<AxiosResponse, unknown, Checkout.PublishCheckoutParams>): import("@tanstack/react-query").UseMutationResult<AxiosResponse<any, any, {}>, unknown, Checkout.PublishCheckoutParams, unknown>;
@@ -8,3 +8,5 @@ export declare const useGetNameAndIcon: ({ paymentMethodType, type }: Checkout.G
8
8
  export declare const getQueryKeyRequiredFields: ({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs) => string[];
9
9
  export declare const useGetRequiredFields: ({ paymentMethodType, type }: Checkout.GetRequiredFieldsArgs, option?: UseQueryOptions<Checkout.GetRequiredFieldsResponse, unknown, Checkout.GetRequiredFieldsResponse>) => import("@tanstack/react-query").UseQueryResult<Checkout.GetRequiredFieldsResponse, unknown>;
10
10
  export declare const useGetCountryData: (accountCode: string) => import("@tanstack/react-query").UseQueryResult<Checkout.GetCountryDataResponse, unknown>;
11
+ export declare const getQueryKeyPaymentMethodAccounts: ({ paymentMethod, organizationCode, }: Checkout.GetPaymentMethodAccountsArgs) => string[];
12
+ export declare const useGetPaymentMethodAccounts: ({ paymentMethod, organizationCode }: Checkout.GetPaymentMethodAccountsArgs, option?: UseQueryOptions<Checkout.GetPaymentMethodAccountsResponse, unknown, Checkout.GetPaymentMethodAccountsResponse>) => import("@tanstack/react-query").UseQueryResult<Checkout.GetPaymentMethodAccountsResponse, unknown>;
@@ -171,67 +171,69 @@ export declare namespace Checkout {
171
171
  created_at: string;
172
172
  updated_at: string;
173
173
  }
174
+ export interface IconNameOverride {
175
+ is_active: boolean;
176
+ name: string | null;
177
+ icon: string | null;
178
+ description: string | null;
179
+ }
180
+ export interface RequiredFieldOverride {
181
+ current_value: string | null;
182
+ field_name: string;
183
+ is_active: boolean;
184
+ }
185
+ export interface RequiredFieldsOverride {
186
+ is_active: boolean | null;
187
+ fields: RequiredFieldOverride[];
188
+ enrollment_fields: RequiredFieldOverride[];
189
+ is_enrollment_active: boolean | null;
190
+ }
191
+ export interface ConditionEntry {
192
+ icon: string | null;
193
+ condition_type: string;
194
+ conditional: string;
195
+ values: string[];
196
+ id: string | null;
197
+ condition_set_id: string | null;
198
+ additional_field_name: string | null;
199
+ time_period_start_time: string | null;
200
+ metadata_key: string | null;
201
+ time_period_end_time: string | null;
202
+ time_period_repeat_amount: string | null;
203
+ time_period_repeat_frequency: string | null;
204
+ time_period_repetition_days: string | null;
205
+ complex_index: number | null;
206
+ complex_name: string | null;
207
+ detail: {
208
+ operators: string[] | null;
209
+ payment_method: string | null;
210
+ value_source: string | null;
211
+ };
212
+ }
213
+ export interface ConditionSet {
214
+ name: string;
215
+ order: number;
216
+ payment_method_data: {
217
+ name: string | null;
218
+ description: string | null;
219
+ logo: string | null;
220
+ };
221
+ conditions: ConditionEntry[];
222
+ }
223
+ export interface BasePaymentMethodEntry {
224
+ is_active: boolean;
225
+ payment_method_type: string;
226
+ order_to_show: number;
227
+ active_enrollment_type?: string;
228
+ type: string;
229
+ icon_name_to_override?: IconNameOverride;
230
+ required_fields_to_override?: RequiredFieldsOverride;
231
+ conditions_to_override?: ConditionSet[];
232
+ }
174
233
  export interface UpdateIsActiveCheckoutParams {
175
234
  accountCode?: string;
176
235
  checkoutCode: string;
177
- paymentMethods: {
178
- is_active: boolean;
179
- payment_method_type: string;
180
- order_to_show: number;
181
- active_enrollment_type?: string;
182
- type: string;
183
- icon_name_to_override?: {
184
- is_active: boolean;
185
- name: string | null;
186
- icon: string | null;
187
- description: string | null;
188
- };
189
- required_fields_to_override?: {
190
- is_active: boolean | null;
191
- fields: {
192
- current_value: string | null;
193
- field_name: string;
194
- is_active: boolean;
195
- }[];
196
- enrollment_fields: {
197
- current_value: string | null;
198
- field_name: string;
199
- is_active: boolean;
200
- }[];
201
- is_enrollment_active: boolean | null;
202
- };
203
- conditions_to_override?: {
204
- name: string;
205
- order: number;
206
- payment_method_data: {
207
- name: string | null;
208
- description: string | null;
209
- logo: string | null;
210
- };
211
- conditions: {
212
- icon: string | null;
213
- condition_type: string;
214
- conditional: string;
215
- values: string[];
216
- id: string | null;
217
- condition_set_id: string | null;
218
- additional_field_name: string | null;
219
- time_period_start_time: string | null;
220
- metadata_key: string | null;
221
- time_period_end_time: string | null;
222
- time_period_repeat_amount: string | null;
223
- time_period_repeat_frequency: string | null;
224
- time_period_repetition_days: string | null;
225
- complex_index: number | null;
226
- complex_name: string | null;
227
- detail: {
228
- operators: string[] | null;
229
- payment_method: string | null;
230
- value_source: string | null;
231
- };
232
- }[];
233
- }[];
234
- }[];
236
+ paymentMethods: BasePaymentMethodEntry[];
235
237
  general_settings?: GeneralSettings;
236
238
  }
237
239
  export interface DocumentType {
@@ -251,5 +253,37 @@ export declare namespace Checkout {
251
253
  icon_url: string;
252
254
  document_types: DocumentType[];
253
255
  }[];
256
+ export type GetPaymentMethodAccountsArgs = {
257
+ paymentMethod: string;
258
+ organizationCode: string;
259
+ };
260
+ export type PaymentMethodAccountProvider = {
261
+ provider_id: string;
262
+ icon: string;
263
+ };
264
+ export type PaymentMethodAccount = {
265
+ id: string;
266
+ name: string;
267
+ enabled: boolean;
268
+ providers: PaymentMethodAccountProvider[] | null;
269
+ };
270
+ export type GetPaymentMethodAccountsResponse = {
271
+ accounts: PaymentMethodAccount[];
272
+ };
273
+ export interface CopyToAccount {
274
+ account_code: string;
275
+ is_active: boolean;
276
+ }
277
+ export interface PublishCheckoutParams {
278
+ accountCode?: string;
279
+ checkoutCode: string;
280
+ paymentMethods: (Omit<BasePaymentMethodEntry, 'conditions_to_override'> & {
281
+ copy_to_accounts?: CopyToAccount[];
282
+ conditions_to_override?: (ConditionSet & {
283
+ is_active?: boolean;
284
+ })[];
285
+ })[];
286
+ general_settings?: GeneralSettings;
287
+ }
254
288
  export {};
255
289
  }
package/build/index.d.ts CHANGED
@@ -1845,67 +1845,69 @@ declare namespace Checkout {
1845
1845
  created_at: string;
1846
1846
  updated_at: string;
1847
1847
  }
1848
+ export interface IconNameOverride {
1849
+ is_active: boolean;
1850
+ name: string | null;
1851
+ icon: string | null;
1852
+ description: string | null;
1853
+ }
1854
+ export interface RequiredFieldOverride {
1855
+ current_value: string | null;
1856
+ field_name: string;
1857
+ is_active: boolean;
1858
+ }
1859
+ export interface RequiredFieldsOverride {
1860
+ is_active: boolean | null;
1861
+ fields: RequiredFieldOverride[];
1862
+ enrollment_fields: RequiredFieldOverride[];
1863
+ is_enrollment_active: boolean | null;
1864
+ }
1865
+ export interface ConditionEntry {
1866
+ icon: string | null;
1867
+ condition_type: string;
1868
+ conditional: string;
1869
+ values: string[];
1870
+ id: string | null;
1871
+ condition_set_id: string | null;
1872
+ additional_field_name: string | null;
1873
+ time_period_start_time: string | null;
1874
+ metadata_key: string | null;
1875
+ time_period_end_time: string | null;
1876
+ time_period_repeat_amount: string | null;
1877
+ time_period_repeat_frequency: string | null;
1878
+ time_period_repetition_days: string | null;
1879
+ complex_index: number | null;
1880
+ complex_name: string | null;
1881
+ detail: {
1882
+ operators: string[] | null;
1883
+ payment_method: string | null;
1884
+ value_source: string | null;
1885
+ };
1886
+ }
1887
+ export interface ConditionSet {
1888
+ name: string;
1889
+ order: number;
1890
+ payment_method_data: {
1891
+ name: string | null;
1892
+ description: string | null;
1893
+ logo: string | null;
1894
+ };
1895
+ conditions: ConditionEntry[];
1896
+ }
1897
+ export interface BasePaymentMethodEntry {
1898
+ is_active: boolean;
1899
+ payment_method_type: string;
1900
+ order_to_show: number;
1901
+ active_enrollment_type?: string;
1902
+ type: string;
1903
+ icon_name_to_override?: IconNameOverride;
1904
+ required_fields_to_override?: RequiredFieldsOverride;
1905
+ conditions_to_override?: ConditionSet[];
1906
+ }
1848
1907
  export interface UpdateIsActiveCheckoutParams {
1849
1908
  accountCode?: string;
1850
1909
  checkoutCode: string;
1851
- paymentMethods: {
1852
- is_active: boolean;
1853
- payment_method_type: string;
1854
- order_to_show: number;
1855
- active_enrollment_type?: string;
1856
- type: string;
1857
- icon_name_to_override?: {
1858
- is_active: boolean;
1859
- name: string | null;
1860
- icon: string | null;
1861
- description: string | null;
1862
- };
1863
- required_fields_to_override?: {
1864
- is_active: boolean | null;
1865
- fields: {
1866
- current_value: string | null;
1867
- field_name: string;
1868
- is_active: boolean;
1869
- }[];
1870
- enrollment_fields: {
1871
- current_value: string | null;
1872
- field_name: string;
1873
- is_active: boolean;
1874
- }[];
1875
- is_enrollment_active: boolean | null;
1876
- };
1877
- conditions_to_override?: {
1878
- name: string;
1879
- order: number;
1880
- payment_method_data: {
1881
- name: string | null;
1882
- description: string | null;
1883
- logo: string | null;
1884
- };
1885
- conditions: {
1886
- icon: string | null;
1887
- condition_type: string;
1888
- conditional: string;
1889
- values: string[];
1890
- id: string | null;
1891
- condition_set_id: string | null;
1892
- additional_field_name: string | null;
1893
- time_period_start_time: string | null;
1894
- metadata_key: string | null;
1895
- time_period_end_time: string | null;
1896
- time_period_repeat_amount: string | null;
1897
- time_period_repeat_frequency: string | null;
1898
- time_period_repetition_days: string | null;
1899
- complex_index: number | null;
1900
- complex_name: string | null;
1901
- detail: {
1902
- operators: string[] | null;
1903
- payment_method: string | null;
1904
- value_source: string | null;
1905
- };
1906
- }[];
1907
- }[];
1908
- }[];
1910
+ paymentMethods: BasePaymentMethodEntry[];
1909
1911
  general_settings?: GeneralSettings;
1910
1912
  }
1911
1913
  export interface DocumentType {
@@ -1925,6 +1927,38 @@ declare namespace Checkout {
1925
1927
  icon_url: string;
1926
1928
  document_types: DocumentType[];
1927
1929
  }[];
1930
+ export type GetPaymentMethodAccountsArgs = {
1931
+ paymentMethod: string;
1932
+ organizationCode: string;
1933
+ };
1934
+ export type PaymentMethodAccountProvider = {
1935
+ provider_id: string;
1936
+ icon: string;
1937
+ };
1938
+ export type PaymentMethodAccount = {
1939
+ id: string;
1940
+ name: string;
1941
+ enabled: boolean;
1942
+ providers: PaymentMethodAccountProvider[] | null;
1943
+ };
1944
+ export type GetPaymentMethodAccountsResponse = {
1945
+ accounts: PaymentMethodAccount[];
1946
+ };
1947
+ export interface CopyToAccount {
1948
+ account_code: string;
1949
+ is_active: boolean;
1950
+ }
1951
+ export interface PublishCheckoutParams {
1952
+ accountCode?: string;
1953
+ checkoutCode: string;
1954
+ paymentMethods: (Omit<BasePaymentMethodEntry, 'conditions_to_override'> & {
1955
+ copy_to_accounts?: CopyToAccount[];
1956
+ conditions_to_override?: (ConditionSet & {
1957
+ is_active?: boolean;
1958
+ })[];
1959
+ })[];
1960
+ general_settings?: GeneralSettings;
1961
+ }
1928
1962
  export {};
1929
1963
  }
1930
1964
 
@@ -5517,6 +5551,7 @@ declare function useLoginMethods(): _tanstack_react_query.UseMutationResult<axio
5517
5551
  }, unknown>;
5518
5552
 
5519
5553
  declare function useUpdateIsActiveCheckout(options?: UseMutationOptions<AxiosResponse, unknown, Checkout.UpdateIsActiveCheckoutParams>): _tanstack_react_query.UseMutationResult<AxiosResponse<any, any, {}>, unknown, Checkout.UpdateIsActiveCheckoutParams, unknown>;
5554
+ declare function usePublishCheckout(options?: UseMutationOptions<AxiosResponse, unknown, Checkout.PublishCheckoutParams>): _tanstack_react_query.UseMutationResult<AxiosResponse<any, any, {}>, unknown, Checkout.PublishCheckoutParams, unknown>;
5520
5555
 
5521
5556
  declare function useCreateOperationTransaction(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OperationTransaction.Response, any, {}>, unknown, {
5522
5557
  payload: OperationTransaction.Request;
@@ -6103,6 +6138,8 @@ declare const useGetNameAndIcon: ({ paymentMethodType, type }: Checkout.GetNameA
6103
6138
  declare const getQueryKeyRequiredFields: ({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs) => string[];
6104
6139
  declare const useGetRequiredFields: ({ paymentMethodType, type }: Checkout.GetRequiredFieldsArgs, option?: UseQueryOptions<Checkout.GetRequiredFieldsResponse, unknown, Checkout.GetRequiredFieldsResponse>) => _tanstack_react_query.UseQueryResult<Checkout.GetRequiredFieldsResponse, unknown>;
6105
6140
  declare const useGetCountryData: (accountCode: string) => _tanstack_react_query.UseQueryResult<Checkout.GetCountryDataResponse, unknown>;
6141
+ declare const getQueryKeyPaymentMethodAccounts: ({ paymentMethod, organizationCode, }: Checkout.GetPaymentMethodAccountsArgs) => string[];
6142
+ declare const useGetPaymentMethodAccounts: ({ paymentMethod, organizationCode }: Checkout.GetPaymentMethodAccountsArgs, option?: UseQueryOptions<Checkout.GetPaymentMethodAccountsResponse, unknown, Checkout.GetPaymentMethodAccountsResponse>) => _tanstack_react_query.UseQueryResult<Checkout.GetPaymentMethodAccountsResponse, unknown>;
6106
6143
 
6107
6144
  declare namespace Styling {
6108
6145
  type Mode = 'default';
@@ -6985,10 +7022,19 @@ declare class Api extends HttpClient {
6985
7022
  }): Promise<AxiosResponse<Checkout.CheckoutList[]>>;
6986
7023
  getNameAndIcon({ paymentMethodType, type, }: Checkout.GetNameAndIconArgs): Promise<AxiosResponse<Checkout.GetNameAndIconResponse>>;
6987
7024
  getRequiredFields({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs): Promise<AxiosResponse<Checkout.GetRequiredFieldsResponse>>;
7025
+ getPaymentMethodAccounts({ paymentMethod, organizationCode, }: Checkout.GetPaymentMethodAccountsArgs): Promise<AxiosResponse<Checkout.GetPaymentMethodAccountsResponse>>;
7026
+ /**
7027
+ * @deprecated since v0.28.6. Use changeStylingSettings instead
7028
+ */
7029
+ updateCheckoutTemplate<T>({ accountCode, template, }: {
7030
+ accountCode: string;
7031
+ template: Checkout.CheckoutTemplateResponse['template'];
7032
+ }): Promise<AxiosResponse<T>>;
6988
7033
  updateIsActiveCheckout(args: Checkout.UpdateIsActiveCheckoutParams): Promise<AxiosResponse>;
6989
7034
  getCountryData({ accountCode, }: {
6990
7035
  accountCode: string;
6991
7036
  }): Promise<AxiosResponse<Checkout.GetCountryDataResponse>>;
7037
+ publishCheckout(args: Checkout.PublishCheckoutParams): Promise<AxiosResponse>;
6992
7038
  getStylingSdkDynamic({ accountCode }: {
6993
7039
  accountCode: any;
6994
7040
  }): Promise<AxiosResponse<Styling.Settings, any, {}>>;
@@ -7416,5 +7462,5 @@ declare const useOrganizationCode: () => any;
7416
7462
 
7417
7463
  declare const useAccountCode: () => any;
7418
7464
 
7419
- export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, Onboarding, 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, useGetApiLogsV3, 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, useGetOnboardingStatus, 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, useGetWebhookTimeline, 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 };
7465
+ export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, Onboarding, 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, getQueryKeyPaymentMethodAccounts, 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, useGetApiLogsV3, 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, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, 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, useGetWebhookTimeline, 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, 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, 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 };
7420
7466
  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, UseGetApiLogsV3Options, UseGetChartFeedbackParams, UseGetOnboardingStatusParams, UseGetWebhookTimelineOptions, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/dashboard-api-mfe",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",