@yuno-payments/dashboard-api-mfe 0.35.0-beta.6 → 0.35.1-beta.1

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.
@@ -94,7 +94,8 @@ export declare class Api extends HttpClient {
94
94
  costs: Cost[];
95
95
  }): Promise<AxiosResponse<T>>;
96
96
  updateOrganizationStatus<T>(): Promise<AxiosResponse<T>>;
97
- getIntegrationParams<T>({ integration_code, }: {
97
+ getIntegrationParams<T>({ accountCode, integration_code, }: {
98
+ accountCode: any;
98
99
  integration_code: any;
99
100
  }): Promise<AxiosResponse<T, any>>;
100
101
  getConnectionsByPaymentMethod<T>(accountCode: string, paymentMethod: string): Promise<AxiosResponse<T>>;
@@ -582,6 +583,7 @@ export declare class Api extends HttpClient {
582
583
  user_prompt: string;
583
584
  }): Promise<AxiosResponse<T, any>>;
584
585
  deleteChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
586
+ getChartById<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
585
587
  patchChartGPTChart<T>(chartgpt_id: string, payload: {
586
588
  type: string;
587
589
  name: string;
@@ -1,5 +1,6 @@
1
1
  import { UseMutationResult } from '@tanstack/react-query';
2
2
  import { AxiosError } from 'axios';
3
+ import { ChartGPTChart, ChartGPTExecuteResponse } from '../../queries';
3
4
  export interface CreateChartGPTChartPayload {
4
5
  user_prompt: string;
5
6
  }
@@ -19,6 +20,15 @@ export interface PatchChartGPTChartPayload {
19
20
  type: string;
20
21
  name: string;
21
22
  }
23
+ export interface CreateAndExecuteChartPayload {
24
+ user_prompt: string;
25
+ }
26
+ export interface CreateAndExecuteChartResult {
27
+ chart: ChartGPTChart;
28
+ execution: ChartGPTExecuteResponse;
29
+ chartgpt_id: string;
30
+ }
22
31
  export declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
23
32
  export declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
24
33
  export declare function usePatchChartName(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, PatchChartGPTChartPayload>;
34
+ export declare function useCreateAndExecuteChart(): UseMutationResult<CreateAndExecuteChartResult, AxiosError<ErrorChartGPTResponse>, CreateAndExecuteChartPayload>;
@@ -1,3 +1,34 @@
1
1
  import { UseQueryResult } from '@tanstack/react-query';
2
- export declare function useChartExecute(chartgpt_id: string): UseQueryResult<any, unknown>;
3
- export declare function useGetChartsByUser(): UseQueryResult<any, unknown>;
2
+ export interface ChartGPTResult {
3
+ key: string;
4
+ value: string;
5
+ }
6
+ export interface ChartGPTExecuteResponse {
7
+ status: string;
8
+ summary: string;
9
+ available_types?: string[];
10
+ results: ChartGPTResult[];
11
+ }
12
+ export interface ChartGPTChart {
13
+ chartgpt_id: string;
14
+ name: string;
15
+ type: string;
16
+ user_prompt: string;
17
+ summary: string;
18
+ status: string;
19
+ }
20
+ export interface ChartGPTChartWithResults extends ChartGPTChart {
21
+ results: ChartGPTResult[];
22
+ }
23
+ export interface PatchChartGPTPayload {
24
+ type: string;
25
+ name: string;
26
+ }
27
+ export interface PatchAndExecuteChartResult {
28
+ chart: ChartGPTChart;
29
+ execution: ChartGPTExecuteResponse;
30
+ }
31
+ export declare function useChartExecute(chartgpt_id: string): UseQueryResult<ChartGPTExecuteResponse, unknown>;
32
+ export declare function useGetChartsByUser(): UseQueryResult<ChartGPTChart[], unknown>;
33
+ export declare function useGetChartsByUserWithResults(): UseQueryResult<ChartGPTChartWithResults[], unknown>;
34
+ export declare function usePatchAndExecuteChart(chartgpt_id: string, patchPayload: PatchChartGPTPayload, enabled?: boolean): UseQueryResult<PatchAndExecuteChartResult, unknown>;
@@ -23,3 +23,4 @@ export * from './batch-refunds';
23
23
  export * from './velocity-rules';
24
24
  export * from './mfa';
25
25
  export * from './saml-config';
26
+ export * from './chartgpt';
@@ -8,9 +8,10 @@ export declare function useGetAllOrganizations(): UseQueryResult<Organization.Or
8
8
  export declare function useGetProviderParams(params: {
9
9
  id: string;
10
10
  }): UseQueryResult<Organization.ProviderParams, CustomAxiosResponse<null>>;
11
- export declare function useGetIntegrationParams({ integration_code, enabled, }: {
11
+ export declare function useGetIntegrationParams({ integration_code, enabled, accountCode, }: {
12
12
  integration_code: string;
13
13
  enabled: boolean;
14
+ accountCode?: string;
14
15
  }): UseQueryResult<Organization.IntegrationParams, {
15
16
  code: string;
16
17
  }>;
@@ -1,5 +1,4 @@
1
1
  import type { Request } from 'express';
2
- import { Country } from '../country';
3
2
  import { Cost } from '../connection/costs';
4
3
  import { Connection } from '../connection';
5
4
  export declare namespace Organization {
@@ -47,7 +46,7 @@ export declare namespace Organization {
47
46
  email: string;
48
47
  legal_name: string;
49
48
  phone: string;
50
- country_code: Country.CountryCode;
49
+ country_code: string;
51
50
  updated_at: string;
52
51
  account_code_live: string;
53
52
  account_code_testing: string;
package/build/index.d.ts CHANGED
@@ -840,19 +840,6 @@ declare namespace OperationTransaction {
840
840
  }
841
841
  }
842
842
 
843
- declare namespace Country {
844
- enum CountryCode {
845
- COLOMBIA = "CO",
846
- MEXICO = "MX",
847
- BRAZIL = "BR",
848
- ARGENTINA = "AR",
849
- CHILE = "CL",
850
- PERU = "PE",
851
- URUGUAY = "UR",
852
- ECUADOR = "EC"
853
- }
854
- }
855
-
856
843
  interface Condition {
857
844
  condition_name: string;
858
845
  condition_type: string;
@@ -978,7 +965,7 @@ declare namespace Organization {
978
965
  email: string;
979
966
  legal_name: string;
980
967
  phone: string;
981
- country_code: Country.CountryCode;
968
+ country_code: string;
982
969
  updated_at: string;
983
970
  account_code_live: string;
984
971
  account_code_testing: string;
@@ -1270,6 +1257,19 @@ declare namespace User {
1270
1257
  }
1271
1258
  }
1272
1259
 
1260
+ declare namespace Country {
1261
+ enum CountryCode {
1262
+ COLOMBIA = "CO",
1263
+ MEXICO = "MX",
1264
+ BRAZIL = "BR",
1265
+ ARGENTINA = "AR",
1266
+ CHILE = "CL",
1267
+ PERU = "PE",
1268
+ URUGUAY = "UR",
1269
+ ECUADOR = "EC"
1270
+ }
1271
+ }
1272
+
1273
1273
  declare namespace Cms {
1274
1274
  enum Locale {
1275
1275
  EN = "en",
@@ -4105,53 +4105,6 @@ interface ErrorRoutingAIResponse {
4105
4105
  }
4106
4106
  declare function useAICreateWorkflow(organizationCode: string, options?: Omit<UseMutationOptions<CreateAIsResponse, AxiosError<ErrorRoutingAIResponse>, SmartRouting.PayloadAIWorkflowCreate, unknown> | undefined, 'mutationKey' | 'mutationFn'>): UseMutationResult<CreateAIsResponse, AxiosError<ErrorRoutingAIResponse>, SmartRouting.PayloadAIWorkflowCreate>;
4107
4107
 
4108
- interface CreateChartGPTChartPayload {
4109
- user_prompt: string;
4110
- }
4111
- interface CreateChartGPTChartResponse {
4112
- [key: string]: any;
4113
- }
4114
- interface ErrorChartGPTResponse {
4115
- errors: {
4116
- message: string;
4117
- code: string;
4118
- params?: string[];
4119
- param?: string;
4120
- }[];
4121
- }
4122
- interface PatchChartGPTChartPayload {
4123
- chartgpt_id: string;
4124
- type: string;
4125
- name: string;
4126
- }
4127
- declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
4128
- declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
4129
- declare function usePatchChartName(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, PatchChartGPTChartPayload>;
4130
-
4131
- declare namespace AllowedList {
4132
- interface Request {
4133
- ip_address: string;
4134
- }
4135
- interface Response {
4136
- ip_address: string;
4137
- isValid: boolean;
4138
- }
4139
- }
4140
-
4141
- declare namespace FeatureFlags {
4142
- interface Request {
4143
- account_code: string;
4144
- organization_code: string;
4145
- name: string;
4146
- [key: string]: string;
4147
- }
4148
- interface RequestAll {
4149
- account_code: string;
4150
- organization_code: string;
4151
- email: string;
4152
- }
4153
- }
4154
-
4155
4108
  declare function usePostPaymentsLazy(params: GetPaymentsParams): UseQueryResult<Payment.PaymentList | AxiosError>;
4156
4109
  declare function usePostPaymentsEvaluated(params: GetPaymentsEvaluatedParams): UseQueryResult<Payment.PaymentList, unknown>;
4157
4110
  declare function useGetPayment({ enabled, ...params }: GetPaymentParams): UseQueryResult<Payment.Payment, unknown>;
@@ -4228,6 +4181,16 @@ declare namespace CustomizedApiKeys {
4228
4181
  }
4229
4182
  }
4230
4183
 
4184
+ declare namespace AllowedList {
4185
+ interface Request {
4186
+ ip_address: string;
4187
+ }
4188
+ interface Response {
4189
+ ip_address: string;
4190
+ isValid: boolean;
4191
+ }
4192
+ }
4193
+
4231
4194
  declare function useGetCredentials({ password, accountCode, }: {
4232
4195
  password: string;
4233
4196
  accountCode: string;
@@ -4247,9 +4210,10 @@ declare function useGetAllOrganizations(): UseQueryResult<Organization.Organizat
4247
4210
  declare function useGetProviderParams(params: {
4248
4211
  id: string;
4249
4212
  }): UseQueryResult<Organization.ProviderParams, CustomAxiosResponse<null>>;
4250
- declare function useGetIntegrationParams({ integration_code, enabled, }: {
4213
+ declare function useGetIntegrationParams({ integration_code, enabled, accountCode, }: {
4251
4214
  integration_code: string;
4252
4215
  enabled: boolean;
4216
+ accountCode?: string;
4253
4217
  }): UseQueryResult<Organization.IntegrationParams, {
4254
4218
  code: string;
4255
4219
  }>;
@@ -4500,6 +4464,20 @@ type UseGetAllReconciliationsFeesProps = {
4500
4464
  };
4501
4465
  declare function useGetAllReconciliationsFees({ body, params, enabled, }: UseGetAllReconciliationsFeesProps): UseQueryResult<ReconciliationFees.GetAllReconciliationsFeesResponse, Reconciliation.Error>;
4502
4466
 
4467
+ declare namespace FeatureFlags {
4468
+ interface Request {
4469
+ account_code: string;
4470
+ organization_code: string;
4471
+ name: string;
4472
+ [key: string]: string;
4473
+ }
4474
+ interface RequestAll {
4475
+ account_code: string;
4476
+ organization_code: string;
4477
+ email: string;
4478
+ }
4479
+ }
4480
+
4503
4481
  interface FeatureFlagsResult {
4504
4482
  result: boolean;
4505
4483
  }
@@ -4560,6 +4538,72 @@ declare function useGetMFAStatus({ accountCode, }: {
4560
4538
 
4561
4539
  declare function useGetSamlConfig(organizationCode: string): UseQueryResult<SamlConfig.SamlConfigResponse, AxiosError>;
4562
4540
 
4541
+ interface ChartGPTResult {
4542
+ key: string;
4543
+ value: string;
4544
+ }
4545
+ interface ChartGPTExecuteResponse {
4546
+ status: string;
4547
+ summary: string;
4548
+ available_types?: string[];
4549
+ results: ChartGPTResult[];
4550
+ }
4551
+ interface ChartGPTChart {
4552
+ chartgpt_id: string;
4553
+ name: string;
4554
+ type: string;
4555
+ user_prompt: string;
4556
+ summary: string;
4557
+ status: string;
4558
+ }
4559
+ interface ChartGPTChartWithResults extends ChartGPTChart {
4560
+ results: ChartGPTResult[];
4561
+ }
4562
+ interface PatchChartGPTPayload {
4563
+ type: string;
4564
+ name: string;
4565
+ }
4566
+ interface PatchAndExecuteChartResult {
4567
+ chart: ChartGPTChart;
4568
+ execution: ChartGPTExecuteResponse;
4569
+ }
4570
+ declare function useChartExecute(chartgpt_id: string): UseQueryResult<ChartGPTExecuteResponse, unknown>;
4571
+ declare function useGetChartsByUser(): UseQueryResult<ChartGPTChart[], unknown>;
4572
+ declare function useGetChartsByUserWithResults(): UseQueryResult<ChartGPTChartWithResults[], unknown>;
4573
+ declare function usePatchAndExecuteChart(chartgpt_id: string, patchPayload: PatchChartGPTPayload, enabled?: boolean): UseQueryResult<PatchAndExecuteChartResult, unknown>;
4574
+
4575
+ interface CreateChartGPTChartPayload {
4576
+ user_prompt: string;
4577
+ }
4578
+ interface CreateChartGPTChartResponse {
4579
+ [key: string]: any;
4580
+ }
4581
+ interface ErrorChartGPTResponse {
4582
+ errors: {
4583
+ message: string;
4584
+ code: string;
4585
+ params?: string[];
4586
+ param?: string;
4587
+ }[];
4588
+ }
4589
+ interface PatchChartGPTChartPayload {
4590
+ chartgpt_id: string;
4591
+ type: string;
4592
+ name: string;
4593
+ }
4594
+ interface CreateAndExecuteChartPayload {
4595
+ user_prompt: string;
4596
+ }
4597
+ interface CreateAndExecuteChartResult {
4598
+ chart: ChartGPTChart;
4599
+ execution: ChartGPTExecuteResponse;
4600
+ chartgpt_id: string;
4601
+ }
4602
+ declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
4603
+ declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
4604
+ declare function usePatchChartName(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, PatchChartGPTChartPayload>;
4605
+ declare function useCreateAndExecuteChart(): UseMutationResult<CreateAndExecuteChartResult, AxiosError<ErrorChartGPTResponse>, CreateAndExecuteChartPayload>;
4606
+
4563
4607
  interface S3Payload {
4564
4608
  payload: S3Client.PayloadV2;
4565
4609
  handleSetProgress?: (progress: number) => void;
@@ -4643,7 +4687,8 @@ declare class Api extends HttpClient {
4643
4687
  costs: Cost[];
4644
4688
  }): Promise<AxiosResponse<T>>;
4645
4689
  updateOrganizationStatus<T>(): Promise<AxiosResponse<T>>;
4646
- getIntegrationParams<T>({ integration_code, }: {
4690
+ getIntegrationParams<T>({ accountCode, integration_code, }: {
4691
+ accountCode: any;
4647
4692
  integration_code: any;
4648
4693
  }): Promise<AxiosResponse<T, any>>;
4649
4694
  getConnectionsByPaymentMethod<T>(accountCode: string, paymentMethod: string): Promise<AxiosResponse<T>>;
@@ -5131,6 +5176,7 @@ declare class Api extends HttpClient {
5131
5176
  user_prompt: string;
5132
5177
  }): Promise<AxiosResponse<T, any>>;
5133
5178
  deleteChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
5179
+ getChartById<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
5134
5180
  patchChartGPTChart<T>(chartgpt_id: string, payload: {
5135
5181
  type: string;
5136
5182
  name: string;
@@ -5160,5 +5206,5 @@ declare enum ApiErrorCodes {
5160
5206
  ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
5161
5207
  }
5162
5208
 
5163
- export { ALL_FEATURE_FLAGS, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useArchiveConnection, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePassword, useChangePasswordV2, useChangePaymentsWebhook, useChangeState, useChangeStatusBlackList, useChangeStatusItemBlackList, useChargebacksUpload, useConfirmedOtpForEnrollment, useConfirmedOtpMfa, useConversionRateOverview, useConversionRateOverviewFraud3ds, useCountRowsForReport, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateNotification, useCreateOperationTransaction, useCreatePaymentLinks, useCreateProductsByAccount, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReport, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDashboardInsights, useDashboardInsightsIsolated, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteConnection, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeam, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhook, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCredentials, useGetCredentialsMFA, useGetCredentialsValidatePassword, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysShowToken, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetIndividualMFAStatus, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccount, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMembers, useGetMembersV3, useGetMembersV4, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsAccount, useGetNotificationsCustomer, useGetNotificationsNumber, useGetNotificationsNumberMutation, useGetOrganization, useGetPayment, useGetPaymentAndTrxStatuses, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMethodsAndProvidersActive, useGetPaymentMethodsByProvider, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactions, useGetPaymentTransactionsDetails, useGetPaymentTransactionsLazy, useGetPaymentV2, useGetPaymentsByPaymentLink, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProductsByAccount, useGetProfile, useGetProofOfCancel, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSettlementsBody, useGetSettlementsHeader, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingTutorial, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSettings, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenForEnrollment, useGetTokenValidation, useGetTransactionDetails, useGetTransactionDetailsV2, useGetTransactionHistory, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTransactions, useGetValidateOpsgenieKey, useGetWebhookParams, useGetWebhookParamsV2, useGetWebhooks, useGetWebhooksV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetrics, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsers, useInviteUsersMultiaccount, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useLoginSSO, useNewPostConnection, useNewPostConnectionValidate, useOneBlackList, usePatchAccount, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlackListType, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRule, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginated, usePostMembersPaginatedV2, usePostMembersV4, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValidateOtp, usePostValidatePassword, usePostValideStatusConnection, usePostVelocityRules, usePostWebhook, usePostWebhookMultiAccount, usePostWebhookV2, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUser, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useSaveVersion, useSendOTPForMFA, useSendPaymentNotification, useSetCustodian, useSetRoles, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useSmartRoutingUpdateTutorial, useToggleMethod, useUnInviteUsers, useUnInviteUsersV2, useUnrollUser, useUnrollUserV2, useUpdateCheckoutPaymentMethods, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhook, useUpdateWebhookV2, useUploadBatchRefundsFile, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateConnection, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
5164
- export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateChartGPTChartPayload, CreateChartGPTChartResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FirebaseUserSubscribe, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, GetApiLogsParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, IChangePassword, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchChartGPTChartPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload };
5209
+ export { ALL_FEATURE_FLAGS, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useArchiveConnection, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePassword, useChangePasswordV2, useChangePaymentsWebhook, useChangeState, useChangeStatusBlackList, useChangeStatusItemBlackList, useChargebacksUpload, useChartExecute, useConfirmedOtpForEnrollment, useConfirmedOtpMfa, useConversionRateOverview, useConversionRateOverviewFraud3ds, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateNotification, useCreateOperationTransaction, useCreatePaymentLinks, useCreateProductsByAccount, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReport, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDashboardInsights, useDashboardInsightsIsolated, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteConnection, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeam, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhook, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, 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, useGetCredentials, useGetCredentialsMFA, useGetCredentialsValidatePassword, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysShowToken, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetIndividualMFAStatus, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccount, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMembers, useGetMembersV3, useGetMembersV4, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsAccount, useGetNotificationsCustomer, useGetNotificationsNumber, useGetNotificationsNumberMutation, useGetOrganization, useGetPayment, useGetPaymentAndTrxStatuses, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMethodsAndProvidersActive, useGetPaymentMethodsByProvider, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactions, useGetPaymentTransactionsDetails, useGetPaymentTransactionsLazy, useGetPaymentV2, useGetPaymentsByPaymentLink, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProductsByAccount, useGetProfile, useGetProofOfCancel, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSettlementsBody, useGetSettlementsHeader, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingTutorial, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSettings, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenForEnrollment, useGetTokenValidation, useGetTransactionDetails, useGetTransactionDetailsV2, useGetTransactionHistory, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTransactions, useGetValidateOpsgenieKey, useGetWebhookParams, useGetWebhookParamsV2, useGetWebhooks, useGetWebhooksV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetrics, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsers, useInviteUsersMultiaccount, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useLoginSSO, useNewPostConnection, useNewPostConnectionValidate, useOneBlackList, usePatchAccount, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlackListType, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRule, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginated, usePostMembersPaginatedV2, usePostMembersV4, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValidateOtp, usePostValidatePassword, usePostValideStatusConnection, usePostVelocityRules, usePostWebhook, usePostWebhookMultiAccount, usePostWebhookV2, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUser, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useSaveVersion, useSendOTPForMFA, useSendPaymentNotification, useSetCustodian, useSetRoles, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useSmartRoutingUpdateTutorial, useToggleMethod, useUnInviteUsers, useUnInviteUsersV2, useUnrollUser, useUnrollUserV2, useUpdateCheckoutPaymentMethods, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhook, useUpdateWebhookV2, useUploadBatchRefundsFile, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateConnection, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
5210
+ export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FirebaseUserSubscribe, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, GetApiLogsParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, IChangePassword, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/dashboard-api-mfe",
3
- "version": "0.35.0-beta.6",
3
+ "version": "0.35.1-beta.1",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",
@@ -105,4 +105,4 @@
105
105
  "ts-loader": "^9.4.4",
106
106
  "uuid": "^11.1.0"
107
107
  }
108
- }
108
+ }