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

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>;
@@ -102,6 +102,7 @@ export declare namespace StylingSettings {
102
102
  mobile?: 'SEAMLESS' | 'FULL';
103
103
  };
104
104
  card?: {
105
+ enable_ocr?: boolean;
105
106
  save_on_success?: boolean;
106
107
  visualization_mode?: VisualizationMode;
107
108
  };
@@ -135,3 +136,73 @@ export declare enum VisualizationMode {
135
136
  ONE_STEP = "ONE_STEP",
136
137
  STEP_BY_STEP = "STEP_BY_STEP"
137
138
  }
139
+ /**
140
+ * @deprecated since version 0.36.27. Remove all the code below when new styling section is fully implemented
141
+ */
142
+ type Mode = 'default';
143
+ interface Spacing {
144
+ top: number;
145
+ right: number;
146
+ bottom: number;
147
+ left: number;
148
+ }
149
+ interface BorderRadius {
150
+ top_left: number;
151
+ top_right: number;
152
+ bottom_right: number;
153
+ bottom_left: number;
154
+ }
155
+ interface Decorator {
156
+ hover: StyleProps;
157
+ disabled: StyleProps;
158
+ focused: StyleProps;
159
+ error: StyleProps;
160
+ }
161
+ type StyleProps = {
162
+ color: string;
163
+ font_family: string;
164
+ font_size: number;
165
+ font_weight: string | number;
166
+ line_height: number;
167
+ padding: Spacing;
168
+ margin: Spacing;
169
+ background_color: string;
170
+ border_radius: BorderRadius;
171
+ decorator: Decorator;
172
+ text_align: string;
173
+ width: number;
174
+ height: number;
175
+ weight: number;
176
+ border_color: string;
177
+ border_style: string;
178
+ border_width: number;
179
+ };
180
+ type Style = {
181
+ props: StyleProps;
182
+ ref: string;
183
+ };
184
+ type Variables = {
185
+ color_primary: string;
186
+ background_color: string;
187
+ };
188
+ interface Section {
189
+ mode: Mode;
190
+ variables?: Variables;
191
+ styles: Style[];
192
+ }
193
+ interface Sections {
194
+ general: Section;
195
+ pm_list: Section;
196
+ apm: Section;
197
+ card_one_step: Section;
198
+ card_step_by_step: Section;
199
+ }
200
+ interface ThemeWithPartialSections {
201
+ account_code: string;
202
+ sections: Partial<Sections>;
203
+ }
204
+ export interface UpdateStylingThemeParams {
205
+ accountCode: string;
206
+ theme: ThemeWithPartialSections;
207
+ }
208
+ export {};
package/build/index.d.ts CHANGED
@@ -3903,6 +3903,216 @@ 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
+ enable_ocr?: boolean;
4011
+ save_on_success?: boolean;
4012
+ visualization_mode?: VisualizationMode;
4013
+ };
4014
+ web_sdk?: {
4015
+ hide_pay_button?: boolean;
4016
+ render_mode?: RenderMode;
4017
+ };
4018
+ payment_method_list?: {
4019
+ unfolded_display?: boolean;
4020
+ preselected_payment_method?: boolean;
4021
+ condensed_checkout_view?: boolean;
4022
+ edit_payment_method_list?: boolean;
4023
+ };
4024
+ };
4025
+ }
4026
+ interface UpdateSettingsResponse extends UpdateSettings {
4027
+ external_fonts: {
4028
+ family_name: string;
4029
+ files: {
4030
+ url: string;
4031
+ weight: number;
4032
+ }[];
4033
+ }[];
4034
+ }
4035
+ }
4036
+ declare enum RenderMode {
4037
+ MODAL = "MODAL",
4038
+ RENDER = "RENDER"
4039
+ }
4040
+ declare enum VisualizationMode {
4041
+ ONE_STEP = "ONE_STEP",
4042
+ STEP_BY_STEP = "STEP_BY_STEP"
4043
+ }
4044
+ /**
4045
+ * @deprecated since version 0.36.27. Remove all the code below when new styling section is fully implemented
4046
+ */
4047
+ type Mode = 'default';
4048
+ interface Spacing {
4049
+ top: number;
4050
+ right: number;
4051
+ bottom: number;
4052
+ left: number;
4053
+ }
4054
+ interface BorderRadius {
4055
+ top_left: number;
4056
+ top_right: number;
4057
+ bottom_right: number;
4058
+ bottom_left: number;
4059
+ }
4060
+ interface Decorator {
4061
+ hover: StyleProps;
4062
+ disabled: StyleProps;
4063
+ focused: StyleProps;
4064
+ error: StyleProps;
4065
+ }
4066
+ type StyleProps = {
4067
+ color: string;
4068
+ font_family: string;
4069
+ font_size: number;
4070
+ font_weight: string | number;
4071
+ line_height: number;
4072
+ padding: Spacing;
4073
+ margin: Spacing;
4074
+ background_color: string;
4075
+ border_radius: BorderRadius;
4076
+ decorator: Decorator;
4077
+ text_align: string;
4078
+ width: number;
4079
+ height: number;
4080
+ weight: number;
4081
+ border_color: string;
4082
+ border_style: string;
4083
+ border_width: number;
4084
+ };
4085
+ type Style = {
4086
+ props: StyleProps;
4087
+ ref: string;
4088
+ };
4089
+ type Variables = {
4090
+ color_primary: string;
4091
+ background_color: string;
4092
+ };
4093
+ interface Section {
4094
+ mode: Mode;
4095
+ variables?: Variables;
4096
+ styles: Style[];
4097
+ }
4098
+ interface Sections {
4099
+ general: Section;
4100
+ pm_list: Section;
4101
+ apm: Section;
4102
+ card_one_step: Section;
4103
+ card_step_by_step: Section;
4104
+ }
4105
+ interface ThemeWithPartialSections {
4106
+ account_code: string;
4107
+ sections: Partial<Sections>;
4108
+ }
4109
+ interface UpdateStylingThemeParams {
4110
+ accountCode: string;
4111
+ theme: ThemeWithPartialSections;
4112
+ }
4113
+
4114
+ declare function useUpdateStylingTheme(): _tanstack_react_query.UseMutationResult<unknown, unknown, UpdateStylingThemeParams, unknown>;
4115
+
3906
4116
  declare function useCreateOperationTransaction(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OperationTransaction.Response, any>, unknown, {
3907
4117
  payload: OperationTransaction.Request;
3908
4118
  transactionId: string;
@@ -4399,148 +4609,22 @@ declare const useGetNameAndIcon: ({ paymentMethodType, type }: Checkout.GetNameA
4399
4609
  declare const getQueryKeyRequiredFields: ({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs) => string[];
4400
4610
  declare const useGetRequiredFields: ({ paymentMethodType, type }: Checkout.GetRequiredFieldsArgs, option?: UseQueryOptions<Checkout.GetRequiredFieldsResponse, unknown, Checkout.GetRequiredFieldsResponse>) => UseQueryResult<Checkout.GetRequiredFieldsResponse, unknown>;
4401
4611
 
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
4612
  declare function useGetStylingSdkDynamic({ accountCode, }: {
4541
4613
  accountCode: string;
4542
4614
  }): _tanstack_react_query.UseQueryResult<Styling.Settings, unknown>;
4543
- declare function useGetStylingSettings({ accountCode, environment, }: {
4615
+ /**
4616
+ * @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
4617
+ */
4618
+ declare function useGetStylingTheme({ accountCode }: {
4619
+ accountCode: string;
4620
+ }): _tanstack_react_query.UseQueryResult<Styling.Theme, unknown>;
4621
+ /**
4622
+ * @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
4623
+ */
4624
+ declare function useGetStylingSettings({ accountCode, }: {
4625
+ accountCode: string;
4626
+ }): _tanstack_react_query.UseQueryResult<Styling.Settings, unknown>;
4627
+ declare function useGetStylingSettingsV2({ accountCode, environment, }: {
4544
4628
  accountCode: string;
4545
4629
  environment?: string;
4546
4630
  }): _tanstack_react_query.UseQueryResult<StylingSettings.UpdateSettingsResponse, unknown>;
@@ -5018,7 +5102,23 @@ declare class Api extends HttpClient {
5018
5102
  getStylingSdkDynamic({ accountCode }: {
5019
5103
  accountCode: any;
5020
5104
  }): Promise<AxiosResponse<Styling.Settings, any>>;
5021
- getStylingSettings({ accountCode, environment, }: {
5105
+ /**
5106
+ * @deprecated since version 0.36.27. use getStylingSettings instead
5107
+ */
5108
+ getStylingTheme({ accountCode }: {
5109
+ accountCode: string;
5110
+ }): Promise<AxiosResponse<Styling.Theme, any>>;
5111
+ /**
5112
+ * @deprecated since version 0.36.27. use changeStylingSettings instead
5113
+ */
5114
+ updateStylingTheme({ accountCode, theme }: UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any>>;
5115
+ /**
5116
+ * @deprecated since version 0.36.27. use getStylingSettingsV2 instead
5117
+ */
5118
+ getStylingSettings({ accountCode }: {
5119
+ accountCode: any;
5120
+ }): Promise<AxiosResponse<Styling.Settings, any>>;
5121
+ getStylingSettingsV2({ accountCode, environment, }: {
5022
5122
  accountCode: string;
5023
5123
  environment?: string;
5024
5124
  }): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
@@ -5319,5 +5419,5 @@ declare enum ApiErrorCodes {
5319
5419
  ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
5320
5420
  }
5321
5421
 
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 };
5422
+ 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
5423
  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.45",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",