@yuno-payments/dashboard-api-mfe 0.36.42 → 0.36.43

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.
@@ -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, StylingSettings } from '../types/checkout/styling/styling';
11
+ import { Styling, StylingSettings, UpdateStylingThemeParams } from '../types/checkout/styling/styling';
12
12
  import { FeatureFlags } from '../types/feature-flags/intex';
13
13
  import { FeatureFlagsResult } from '../queries';
14
14
  interface S3Payload {
@@ -213,7 +213,23 @@ export declare class Api extends HttpClient {
213
213
  getStylingSdkDynamic({ accountCode }: {
214
214
  accountCode: any;
215
215
  }): Promise<AxiosResponse<Styling.Settings, any>>;
216
- getStylingSettings({ accountCode, environment, }: {
216
+ /**
217
+ * @deprecated since version 0.36.27. use getStylingSettings instead
218
+ */
219
+ getStylingTheme({ accountCode }: {
220
+ accountCode: string;
221
+ }): Promise<AxiosResponse<Styling.Theme, any>>;
222
+ /**
223
+ * @deprecated since version 0.36.27. use changeStylingSettings instead
224
+ */
225
+ updateStylingTheme({ accountCode, theme }: UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any>>;
226
+ /**
227
+ * @deprecated since version 0.36.27. use getStylingSettingsV2 instead
228
+ */
229
+ getStylingSettings({ accountCode }: {
230
+ accountCode: any;
231
+ }): Promise<AxiosResponse<Styling.Settings, any>>;
232
+ getStylingSettingsV2({ accountCode, environment, }: {
217
233
  accountCode: string;
218
234
  environment?: string;
219
235
  }): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
@@ -1 +1,2 @@
1
1
  export * from './checkouts.mutation';
2
+ export * from './styling/styling.mutation';
@@ -0,0 +1,2 @@
1
+ import { UpdateStylingThemeParams } from '../../../types/checkout/styling/styling';
2
+ export declare function useUpdateStylingTheme(): import("@tanstack/react-query").UseMutationResult<unknown, unknown, UpdateStylingThemeParams, unknown>;
@@ -2,7 +2,19 @@ import { StylingSettings } from '../../../types/checkout/styling/styling';
2
2
  export declare function useGetStylingSdkDynamic({ accountCode, }: {
3
3
  accountCode: string;
4
4
  }): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Settings, unknown>;
5
- export declare function useGetStylingSettings({ accountCode, environment, }: {
5
+ /**
6
+ * @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
7
+ */
8
+ export declare function useGetStylingTheme({ accountCode }: {
9
+ accountCode: string;
10
+ }): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Theme, unknown>;
11
+ /**
12
+ * @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
13
+ */
14
+ export declare function useGetStylingSettings({ accountCode, }: {
15
+ accountCode: string;
16
+ }): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Settings, unknown>;
17
+ export declare function useGetStylingSettingsV2({ accountCode, environment, }: {
6
18
  accountCode: string;
7
19
  environment?: string;
8
20
  }): import("@tanstack/react-query").UseQueryResult<StylingSettings.UpdateSettingsResponse, unknown>;
@@ -135,3 +135,73 @@ export declare enum VisualizationMode {
135
135
  ONE_STEP = "ONE_STEP",
136
136
  STEP_BY_STEP = "STEP_BY_STEP"
137
137
  }
138
+ /**
139
+ * @deprecated since version 0.36.27. Remove all the code below when new styling section is fully implemented
140
+ */
141
+ type Mode = 'default';
142
+ interface Spacing {
143
+ top: number;
144
+ right: number;
145
+ bottom: number;
146
+ left: number;
147
+ }
148
+ interface BorderRadius {
149
+ top_left: number;
150
+ top_right: number;
151
+ bottom_right: number;
152
+ bottom_left: number;
153
+ }
154
+ interface Decorator {
155
+ hover: StyleProps;
156
+ disabled: StyleProps;
157
+ focused: StyleProps;
158
+ error: StyleProps;
159
+ }
160
+ type StyleProps = {
161
+ color: string;
162
+ font_family: string;
163
+ font_size: number;
164
+ font_weight: string | number;
165
+ line_height: number;
166
+ padding: Spacing;
167
+ margin: Spacing;
168
+ background_color: string;
169
+ border_radius: BorderRadius;
170
+ decorator: Decorator;
171
+ text_align: string;
172
+ width: number;
173
+ height: number;
174
+ weight: number;
175
+ border_color: string;
176
+ border_style: string;
177
+ border_width: number;
178
+ };
179
+ type Style = {
180
+ props: StyleProps;
181
+ ref: string;
182
+ };
183
+ type Variables = {
184
+ color_primary: string;
185
+ background_color: string;
186
+ };
187
+ interface Section {
188
+ mode: Mode;
189
+ variables?: Variables;
190
+ styles: Style[];
191
+ }
192
+ interface Sections {
193
+ general: Section;
194
+ pm_list: Section;
195
+ apm: Section;
196
+ card_one_step: Section;
197
+ card_step_by_step: Section;
198
+ }
199
+ interface ThemeWithPartialSections {
200
+ account_code: string;
201
+ sections: Partial<Sections>;
202
+ }
203
+ export interface UpdateStylingThemeParams {
204
+ accountCode: string;
205
+ theme: ThemeWithPartialSections;
206
+ }
207
+ export {};
package/build/index.d.ts CHANGED
@@ -3903,6 +3903,215 @@ declare function useUpdateCheckoutTemplate(): _tanstack_react_query.UseMutationR
3903
3903
  template: Record<string, string>;
3904
3904
  }, unknown>;
3905
3905
 
3906
+ declare namespace Styling {
3907
+ type Mode = 'default';
3908
+ interface Spacing {
3909
+ top: number;
3910
+ right: number;
3911
+ bottom: number;
3912
+ left: number;
3913
+ }
3914
+ interface BorderRadius {
3915
+ top_left: number;
3916
+ top_right: number;
3917
+ bottom_right: number;
3918
+ bottom_left: number;
3919
+ }
3920
+ interface Decorator {
3921
+ hover: StyleProps;
3922
+ disabled: StyleProps;
3923
+ focused: StyleProps;
3924
+ error: StyleProps;
3925
+ }
3926
+ type StyleProps = {
3927
+ color: string;
3928
+ font_family: string;
3929
+ font_size: number;
3930
+ font_weight: string | number;
3931
+ line_height: number;
3932
+ padding: Spacing;
3933
+ margin: Spacing;
3934
+ background_color: string;
3935
+ border_radius: BorderRadius;
3936
+ decorator: Decorator;
3937
+ text_align: string;
3938
+ width: number;
3939
+ height: number;
3940
+ weight: number;
3941
+ border_color: string;
3942
+ border_style: string;
3943
+ border_width: number;
3944
+ };
3945
+ type Style = {
3946
+ props: StyleProps;
3947
+ ref: string;
3948
+ };
3949
+ type Variables = {
3950
+ color_primary: string;
3951
+ background_color: string;
3952
+ };
3953
+ interface Section {
3954
+ mode: Mode;
3955
+ variables?: Variables;
3956
+ styles: Style[];
3957
+ }
3958
+ interface Sections {
3959
+ general: Section;
3960
+ pm_list: Section;
3961
+ apm: Section;
3962
+ card_one_step: Section;
3963
+ card_step_by_step: Section;
3964
+ }
3965
+ export interface Theme {
3966
+ account_code: string;
3967
+ sections: Sections;
3968
+ }
3969
+ export interface Settings {
3970
+ sdk_dynamic: boolean;
3971
+ }
3972
+ export {};
3973
+ }
3974
+ declare namespace StylingSettings {
3975
+ interface UpdateSettings {
3976
+ styles: {
3977
+ global?: {
3978
+ accent_color?: string;
3979
+ primary_background_color?: string;
3980
+ primary_text_color?: string;
3981
+ primary_button_text_color?: string;
3982
+ secondary_background_color?: string;
3983
+ secondary_text_color?: string;
3984
+ secondary_button_background_color?: string;
3985
+ secondary_button_text_color?: string;
3986
+ font_family?: string;
3987
+ };
3988
+ header?: {
3989
+ logo_border_size?: number;
3990
+ logo_border_color?: string;
3991
+ logo_corner_radius?: number;
3992
+ font_size?: number;
3993
+ font_weight?: number;
3994
+ };
3995
+ button?: {
3996
+ corner_radius?: number;
3997
+ border_size?: number;
3998
+ primary_border_color?: string;
3999
+ secondary_border_color?: string;
4000
+ font_size?: number;
4001
+ font_weight?: number;
4002
+ };
4003
+ };
4004
+ settings: {
4005
+ sdk_type?: {
4006
+ web?: 'SEAMLESS' | 'FULL';
4007
+ mobile?: 'SEAMLESS' | 'FULL';
4008
+ };
4009
+ card?: {
4010
+ save_on_success?: boolean;
4011
+ visualization_mode?: VisualizationMode;
4012
+ };
4013
+ web_sdk?: {
4014
+ hide_pay_button?: boolean;
4015
+ render_mode?: RenderMode;
4016
+ };
4017
+ payment_method_list?: {
4018
+ unfolded_display?: boolean;
4019
+ preselected_payment_method?: boolean;
4020
+ condensed_checkout_view?: boolean;
4021
+ edit_payment_method_list?: boolean;
4022
+ };
4023
+ };
4024
+ }
4025
+ interface UpdateSettingsResponse extends UpdateSettings {
4026
+ external_fonts: {
4027
+ family_name: string;
4028
+ files: {
4029
+ url: string;
4030
+ weight: number;
4031
+ }[];
4032
+ }[];
4033
+ }
4034
+ }
4035
+ declare enum RenderMode {
4036
+ MODAL = "MODAL",
4037
+ RENDER = "RENDER"
4038
+ }
4039
+ declare enum VisualizationMode {
4040
+ ONE_STEP = "ONE_STEP",
4041
+ STEP_BY_STEP = "STEP_BY_STEP"
4042
+ }
4043
+ /**
4044
+ * @deprecated since version 0.36.27. Remove all the code below when new styling section is fully implemented
4045
+ */
4046
+ type Mode = 'default';
4047
+ interface Spacing {
4048
+ top: number;
4049
+ right: number;
4050
+ bottom: number;
4051
+ left: number;
4052
+ }
4053
+ interface BorderRadius {
4054
+ top_left: number;
4055
+ top_right: number;
4056
+ bottom_right: number;
4057
+ bottom_left: number;
4058
+ }
4059
+ interface Decorator {
4060
+ hover: StyleProps;
4061
+ disabled: StyleProps;
4062
+ focused: StyleProps;
4063
+ error: StyleProps;
4064
+ }
4065
+ type StyleProps = {
4066
+ color: string;
4067
+ font_family: string;
4068
+ font_size: number;
4069
+ font_weight: string | number;
4070
+ line_height: number;
4071
+ padding: Spacing;
4072
+ margin: Spacing;
4073
+ background_color: string;
4074
+ border_radius: BorderRadius;
4075
+ decorator: Decorator;
4076
+ text_align: string;
4077
+ width: number;
4078
+ height: number;
4079
+ weight: number;
4080
+ border_color: string;
4081
+ border_style: string;
4082
+ border_width: number;
4083
+ };
4084
+ type Style = {
4085
+ props: StyleProps;
4086
+ ref: string;
4087
+ };
4088
+ type Variables = {
4089
+ color_primary: string;
4090
+ background_color: string;
4091
+ };
4092
+ interface Section {
4093
+ mode: Mode;
4094
+ variables?: Variables;
4095
+ styles: Style[];
4096
+ }
4097
+ interface Sections {
4098
+ general: Section;
4099
+ pm_list: Section;
4100
+ apm: Section;
4101
+ card_one_step: Section;
4102
+ card_step_by_step: Section;
4103
+ }
4104
+ interface ThemeWithPartialSections {
4105
+ account_code: string;
4106
+ sections: Partial<Sections>;
4107
+ }
4108
+ interface UpdateStylingThemeParams {
4109
+ accountCode: string;
4110
+ theme: ThemeWithPartialSections;
4111
+ }
4112
+
4113
+ declare function useUpdateStylingTheme(): _tanstack_react_query.UseMutationResult<unknown, unknown, UpdateStylingThemeParams, unknown>;
4114
+
3906
4115
  declare function useCreateOperationTransaction(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OperationTransaction.Response, any>, unknown, {
3907
4116
  payload: OperationTransaction.Request;
3908
4117
  transactionId: string;
@@ -4399,148 +4608,22 @@ declare const useGetNameAndIcon: ({ paymentMethodType, type }: Checkout.GetNameA
4399
4608
  declare const getQueryKeyRequiredFields: ({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs) => string[];
4400
4609
  declare const useGetRequiredFields: ({ paymentMethodType, type }: Checkout.GetRequiredFieldsArgs, option?: UseQueryOptions<Checkout.GetRequiredFieldsResponse, unknown, Checkout.GetRequiredFieldsResponse>) => UseQueryResult<Checkout.GetRequiredFieldsResponse, unknown>;
4401
4610
 
4402
- declare namespace Styling {
4403
- type Mode = 'default';
4404
- interface Spacing {
4405
- top: number;
4406
- right: number;
4407
- bottom: number;
4408
- left: number;
4409
- }
4410
- interface BorderRadius {
4411
- top_left: number;
4412
- top_right: number;
4413
- bottom_right: number;
4414
- bottom_left: number;
4415
- }
4416
- interface Decorator {
4417
- hover: StyleProps;
4418
- disabled: StyleProps;
4419
- focused: StyleProps;
4420
- error: StyleProps;
4421
- }
4422
- type StyleProps = {
4423
- color: string;
4424
- font_family: string;
4425
- font_size: number;
4426
- font_weight: string | number;
4427
- line_height: number;
4428
- padding: Spacing;
4429
- margin: Spacing;
4430
- background_color: string;
4431
- border_radius: BorderRadius;
4432
- decorator: Decorator;
4433
- text_align: string;
4434
- width: number;
4435
- height: number;
4436
- weight: number;
4437
- border_color: string;
4438
- border_style: string;
4439
- border_width: number;
4440
- };
4441
- type Style = {
4442
- props: StyleProps;
4443
- ref: string;
4444
- };
4445
- type Variables = {
4446
- color_primary: string;
4447
- background_color: string;
4448
- };
4449
- interface Section {
4450
- mode: Mode;
4451
- variables?: Variables;
4452
- styles: Style[];
4453
- }
4454
- interface Sections {
4455
- general: Section;
4456
- pm_list: Section;
4457
- apm: Section;
4458
- card_one_step: Section;
4459
- card_step_by_step: Section;
4460
- }
4461
- export interface Theme {
4462
- account_code: string;
4463
- sections: Sections;
4464
- }
4465
- export interface Settings {
4466
- sdk_dynamic: boolean;
4467
- }
4468
- export {};
4469
- }
4470
- declare namespace StylingSettings {
4471
- interface UpdateSettings {
4472
- styles: {
4473
- global?: {
4474
- accent_color?: string;
4475
- primary_background_color?: string;
4476
- primary_text_color?: string;
4477
- primary_button_text_color?: string;
4478
- secondary_background_color?: string;
4479
- secondary_text_color?: string;
4480
- secondary_button_background_color?: string;
4481
- secondary_button_text_color?: string;
4482
- font_family?: string;
4483
- };
4484
- header?: {
4485
- logo_border_size?: number;
4486
- logo_border_color?: string;
4487
- logo_corner_radius?: number;
4488
- font_size?: number;
4489
- font_weight?: number;
4490
- };
4491
- button?: {
4492
- corner_radius?: number;
4493
- border_size?: number;
4494
- primary_border_color?: string;
4495
- secondary_border_color?: string;
4496
- font_size?: number;
4497
- font_weight?: number;
4498
- };
4499
- };
4500
- settings: {
4501
- sdk_type?: {
4502
- web?: 'SEAMLESS' | 'FULL';
4503
- mobile?: 'SEAMLESS' | 'FULL';
4504
- };
4505
- card?: {
4506
- save_on_success?: boolean;
4507
- visualization_mode?: VisualizationMode;
4508
- };
4509
- web_sdk?: {
4510
- hide_pay_button?: boolean;
4511
- render_mode?: RenderMode;
4512
- };
4513
- payment_method_list?: {
4514
- unfolded_display?: boolean;
4515
- preselected_payment_method?: boolean;
4516
- condensed_checkout_view?: boolean;
4517
- edit_payment_method_list?: boolean;
4518
- };
4519
- };
4520
- }
4521
- interface UpdateSettingsResponse extends UpdateSettings {
4522
- external_fonts: {
4523
- family_name: string;
4524
- files: {
4525
- url: string;
4526
- weight: number;
4527
- }[];
4528
- }[];
4529
- }
4530
- }
4531
- declare enum RenderMode {
4532
- MODAL = "MODAL",
4533
- RENDER = "RENDER"
4534
- }
4535
- declare enum VisualizationMode {
4536
- ONE_STEP = "ONE_STEP",
4537
- STEP_BY_STEP = "STEP_BY_STEP"
4538
- }
4539
-
4540
4611
  declare function useGetStylingSdkDynamic({ accountCode, }: {
4541
4612
  accountCode: string;
4542
4613
  }): _tanstack_react_query.UseQueryResult<Styling.Settings, unknown>;
4543
- declare function useGetStylingSettings({ accountCode, environment, }: {
4614
+ /**
4615
+ * @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
4616
+ */
4617
+ declare function useGetStylingTheme({ accountCode }: {
4618
+ accountCode: string;
4619
+ }): _tanstack_react_query.UseQueryResult<Styling.Theme, unknown>;
4620
+ /**
4621
+ * @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
4622
+ */
4623
+ declare function useGetStylingSettings({ accountCode, }: {
4624
+ accountCode: string;
4625
+ }): _tanstack_react_query.UseQueryResult<Styling.Settings, unknown>;
4626
+ declare function useGetStylingSettingsV2({ accountCode, environment, }: {
4544
4627
  accountCode: string;
4545
4628
  environment?: string;
4546
4629
  }): _tanstack_react_query.UseQueryResult<StylingSettings.UpdateSettingsResponse, unknown>;
@@ -5018,7 +5101,23 @@ declare class Api extends HttpClient {
5018
5101
  getStylingSdkDynamic({ accountCode }: {
5019
5102
  accountCode: any;
5020
5103
  }): Promise<AxiosResponse<Styling.Settings, any>>;
5021
- getStylingSettings({ accountCode, environment, }: {
5104
+ /**
5105
+ * @deprecated since version 0.36.27. use getStylingSettings instead
5106
+ */
5107
+ getStylingTheme({ accountCode }: {
5108
+ accountCode: string;
5109
+ }): Promise<AxiosResponse<Styling.Theme, any>>;
5110
+ /**
5111
+ * @deprecated since version 0.36.27. use changeStylingSettings instead
5112
+ */
5113
+ updateStylingTheme({ accountCode, theme }: UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any>>;
5114
+ /**
5115
+ * @deprecated since version 0.36.27. use getStylingSettingsV2 instead
5116
+ */
5117
+ getStylingSettings({ accountCode }: {
5118
+ accountCode: any;
5119
+ }): Promise<AxiosResponse<Styling.Settings, any>>;
5120
+ getStylingSettingsV2({ accountCode, environment, }: {
5022
5121
  accountCode: string;
5023
5122
  environment?: string;
5024
5123
  }): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
@@ -5319,5 +5418,5 @@ declare enum ApiErrorCodes {
5319
5418
  ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
5320
5419
  }
5321
5420
 
5322
- export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, 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, useCommunicationDetails, useCommunications, useCommunicationsFilters, 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, 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, useIsTesting, useLoginMethods, useNetworkTokensOnboarding, 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, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
5421
+ export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, 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, useCommunicationDetails, useCommunications, useCommunicationsFilters, 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, useGetStylingSettingsV2, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, 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, useIsTesting, useLoginMethods, useNetworkTokensOnboarding, 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 };
5323
5422
  export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, CentralizedColumn, 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, InsightsChargebacksTotalRateAndEvolution, 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/dashboard-api-mfe",
3
- "version": "0.36.42",
3
+ "version": "0.36.43",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",