@yuno-payments/dashboard-api-mfe 0.35.0-beta.11 → 0.35.0-beta.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +1 -0
- package/build/cjs/types/mutations/chartgpt/chartgpt.mutation.d.ts +11 -0
- package/build/cjs/types/queries/chartgpt/chartgpt.query.d.ts +2 -0
- package/build/esm/index.js +7 -7
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +1 -0
- package/build/esm/types/mutations/chartgpt/chartgpt.mutation.d.ts +11 -0
- package/build/esm/types/queries/chartgpt/chartgpt.query.d.ts +2 -0
- package/build/index.d.ts +62 -49
- package/package.json +1 -1
|
@@ -582,6 +582,7 @@ export declare class Api extends HttpClient {
|
|
|
582
582
|
user_prompt: string;
|
|
583
583
|
}): Promise<AxiosResponse<T, any>>;
|
|
584
584
|
deleteChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
585
|
+
getChartById<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
585
586
|
patchChartGPTChart<T>(chartgpt_id: string, payload: {
|
|
586
587
|
type: string;
|
|
587
588
|
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,16 @@ export interface PatchChartGPTChartPayload {
|
|
|
19
20
|
type: string;
|
|
20
21
|
name: string;
|
|
21
22
|
}
|
|
23
|
+
export interface CreateAndExecuteChartPayload {
|
|
24
|
+
type: string;
|
|
25
|
+
name: string;
|
|
26
|
+
user_prompt: string;
|
|
27
|
+
}
|
|
28
|
+
export interface CreateAndExecuteChartResult {
|
|
29
|
+
chart: ChartGPTChart;
|
|
30
|
+
execution: ChartGPTExecuteResponse;
|
|
31
|
+
}
|
|
22
32
|
export declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
|
|
23
33
|
export declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
|
|
24
34
|
export declare function usePatchChartName(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, PatchChartGPTChartPayload>;
|
|
35
|
+
export declare function useCreateAndExecuteChart(): UseMutationResult<CreateAndExecuteChartResult, AxiosError<ErrorChartGPTResponse>, CreateAndExecuteChartPayload>;
|
|
@@ -4,12 +4,14 @@ export interface ChartGPTResult {
|
|
|
4
4
|
value: string;
|
|
5
5
|
}
|
|
6
6
|
export interface ChartGPTExecuteResponse {
|
|
7
|
+
available_types?: string[];
|
|
7
8
|
results: ChartGPTResult[];
|
|
8
9
|
}
|
|
9
10
|
export interface ChartGPTChart {
|
|
10
11
|
chartgpt_id: string;
|
|
11
12
|
name: string;
|
|
12
13
|
type: string;
|
|
14
|
+
user_prompt: string;
|
|
13
15
|
summary: string;
|
|
14
16
|
status: string;
|
|
15
17
|
}
|
package/build/index.d.ts
CHANGED
|
@@ -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;
|
|
@@ -4500,6 +4463,20 @@ type UseGetAllReconciliationsFeesProps = {
|
|
|
4500
4463
|
};
|
|
4501
4464
|
declare function useGetAllReconciliationsFees({ body, params, enabled, }: UseGetAllReconciliationsFeesProps): UseQueryResult<ReconciliationFees.GetAllReconciliationsFeesResponse, Reconciliation.Error>;
|
|
4502
4465
|
|
|
4466
|
+
declare namespace FeatureFlags {
|
|
4467
|
+
interface Request {
|
|
4468
|
+
account_code: string;
|
|
4469
|
+
organization_code: string;
|
|
4470
|
+
name: string;
|
|
4471
|
+
[key: string]: string;
|
|
4472
|
+
}
|
|
4473
|
+
interface RequestAll {
|
|
4474
|
+
account_code: string;
|
|
4475
|
+
organization_code: string;
|
|
4476
|
+
email: string;
|
|
4477
|
+
}
|
|
4478
|
+
}
|
|
4479
|
+
|
|
4503
4480
|
interface FeatureFlagsResult {
|
|
4504
4481
|
result: boolean;
|
|
4505
4482
|
}
|
|
@@ -4565,12 +4542,14 @@ interface ChartGPTResult {
|
|
|
4565
4542
|
value: string;
|
|
4566
4543
|
}
|
|
4567
4544
|
interface ChartGPTExecuteResponse {
|
|
4545
|
+
available_types?: string[];
|
|
4568
4546
|
results: ChartGPTResult[];
|
|
4569
4547
|
}
|
|
4570
4548
|
interface ChartGPTChart {
|
|
4571
4549
|
chartgpt_id: string;
|
|
4572
4550
|
name: string;
|
|
4573
4551
|
type: string;
|
|
4552
|
+
user_prompt: string;
|
|
4574
4553
|
summary: string;
|
|
4575
4554
|
status: string;
|
|
4576
4555
|
}
|
|
@@ -4581,6 +4560,39 @@ declare function useChartExecute(chartgpt_id: string): UseQueryResult<ChartGPTEx
|
|
|
4581
4560
|
declare function useGetChartsByUser(): UseQueryResult<ChartGPTChart[], unknown>;
|
|
4582
4561
|
declare function useGetChartsByUserWithResults(): UseQueryResult<ChartGPTChartWithResults[], unknown>;
|
|
4583
4562
|
|
|
4563
|
+
interface CreateChartGPTChartPayload {
|
|
4564
|
+
user_prompt: string;
|
|
4565
|
+
}
|
|
4566
|
+
interface CreateChartGPTChartResponse {
|
|
4567
|
+
[key: string]: any;
|
|
4568
|
+
}
|
|
4569
|
+
interface ErrorChartGPTResponse {
|
|
4570
|
+
errors: {
|
|
4571
|
+
message: string;
|
|
4572
|
+
code: string;
|
|
4573
|
+
params?: string[];
|
|
4574
|
+
param?: string;
|
|
4575
|
+
}[];
|
|
4576
|
+
}
|
|
4577
|
+
interface PatchChartGPTChartPayload {
|
|
4578
|
+
chartgpt_id: string;
|
|
4579
|
+
type: string;
|
|
4580
|
+
name: string;
|
|
4581
|
+
}
|
|
4582
|
+
interface CreateAndExecuteChartPayload {
|
|
4583
|
+
type: string;
|
|
4584
|
+
name: string;
|
|
4585
|
+
user_prompt: string;
|
|
4586
|
+
}
|
|
4587
|
+
interface CreateAndExecuteChartResult {
|
|
4588
|
+
chart: ChartGPTChart;
|
|
4589
|
+
execution: ChartGPTExecuteResponse;
|
|
4590
|
+
}
|
|
4591
|
+
declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
|
|
4592
|
+
declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
|
|
4593
|
+
declare function usePatchChartName(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, PatchChartGPTChartPayload>;
|
|
4594
|
+
declare function useCreateAndExecuteChart(): UseMutationResult<CreateAndExecuteChartResult, AxiosError<ErrorChartGPTResponse>, CreateAndExecuteChartPayload>;
|
|
4595
|
+
|
|
4584
4596
|
interface S3Payload {
|
|
4585
4597
|
payload: S3Client.PayloadV2;
|
|
4586
4598
|
handleSetProgress?: (progress: number) => void;
|
|
@@ -5152,6 +5164,7 @@ declare class Api extends HttpClient {
|
|
|
5152
5164
|
user_prompt: string;
|
|
5153
5165
|
}): Promise<AxiosResponse<T, any>>;
|
|
5154
5166
|
deleteChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
5167
|
+
getChartById<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
5155
5168
|
patchChartGPTChart<T>(chartgpt_id: string, payload: {
|
|
5156
5169
|
type: string;
|
|
5157
5170
|
name: string;
|
|
@@ -5181,5 +5194,5 @@ declare enum ApiErrorCodes {
|
|
|
5181
5194
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
5182
5195
|
}
|
|
5183
5196
|
|
|
5184
|
-
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, 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, 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 };
|
|
5185
|
-
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, 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 };
|
|
5197
|
+
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, 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 };
|
|
5198
|
+
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, PatchChartGPTChartPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload };
|