@yuno-payments/dashboard-api-mfe 2.3.0 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +1 -3
- package/build/cjs/types/mutations/audit/index.d.ts +0 -1
- package/build/cjs/types/queries/audit/audit.query.d.ts +1 -0
- package/build/cjs/types/queries/audit/index.d.ts +0 -1
- package/build/cjs/types/types/audit/audit.d.ts +0 -22
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +1 -3
- package/build/esm/types/mutations/audit/index.d.ts +0 -1
- package/build/esm/types/queries/audit/audit.query.d.ts +1 -0
- package/build/esm/types/queries/audit/index.d.ts +0 -1
- package/build/esm/types/types/audit/audit.d.ts +0 -22
- package/build/index.d.ts +4 -78
- package/package.json +1 -1
- package/build/cjs/types/mutations/audit/audit-subscriptions.mutation.d.ts +0 -41
- package/build/cjs/types/queries/audit/audit-subscriptions.query.d.ts +0 -15
- package/build/esm/types/mutations/audit/audit-subscriptions.mutation.d.ts +0 -41
- package/build/esm/types/queries/audit/audit-subscriptions.query.d.ts +0 -15
|
@@ -167,9 +167,6 @@ export declare class Api extends HttpClient {
|
|
|
167
167
|
postUnifiedExport<T>(tab: Audit.UnifiedExportTabType, payload: Audit.UnifiedExportRequest): Promise<AxiosResponse<T>>;
|
|
168
168
|
getUnifiedExportStatus<T>(tab: Audit.UnifiedExportTabType, exportId: string): Promise<AxiosResponse<T>>;
|
|
169
169
|
getUnifiedExportsList<T>(tab: Audit.UnifiedExportTabType, page?: number, size?: number): Promise<AxiosResponse<T>>;
|
|
170
|
-
createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
|
|
171
|
-
listAuditSubscriptions<T>(): Promise<AxiosResponse<T>>;
|
|
172
|
-
deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
|
|
173
170
|
createAuditSubscriptionV2<T>(payload: Audit.CreateAuditSubscriptionV2Payload): Promise<AxiosResponse<T>>;
|
|
174
171
|
listAuditSubscriptionsV2<T>(params?: Audit.ListAuditSubscriptionsV2Params): Promise<AxiosResponse<T>>;
|
|
175
172
|
deleteAuditSubscriptionV2<T>(code: string): Promise<AxiosResponse<T>>;
|
|
@@ -424,6 +421,7 @@ export declare class Api extends HttpClient {
|
|
|
424
421
|
postAuditMonitors<T>(payload: Audit.AuditMonitorsParams): Promise<AxiosResponse<T, any>>;
|
|
425
422
|
getAuditMonitorDetail<T>(id: number | null): Promise<AxiosResponse<T, any>>;
|
|
426
423
|
getAuditEvents<T>(params: Audit.AuditEventsParams): Promise<AxiosResponse<T, any>>;
|
|
424
|
+
postDashboardLogs<T>(params: Audit.AuditEventsParams): Promise<AxiosResponse<T, any>>;
|
|
427
425
|
/**
|
|
428
426
|
* Fetches one audit event by its unique code. Powers the dashboard
|
|
429
427
|
* notification deep-link (DAS-15765): a bell card carries only the event
|
|
@@ -3,6 +3,7 @@ import { AxiosError } from 'axios';
|
|
|
3
3
|
import type { Audit } from '../../types';
|
|
4
4
|
import { BFFErrorResponse } from '../../mutations';
|
|
5
5
|
export declare function useGetAuditEvents(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
6
|
+
export declare function useGetDashboardLogs(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
6
7
|
/**
|
|
7
8
|
* Fetches one audit event by its unique code. Powers the dashboard
|
|
8
9
|
* notification deep-link (DAS-15765): clicking "View in audit log" on a bell
|
|
@@ -312,28 +312,6 @@ export declare namespace Audit {
|
|
|
312
312
|
total_pages: number;
|
|
313
313
|
data: ApiLogV3Item[];
|
|
314
314
|
}
|
|
315
|
-
interface SourceSpec {
|
|
316
|
-
events: string[];
|
|
317
|
-
}
|
|
318
|
-
interface AuditSubscriptionGroup {
|
|
319
|
-
code: string;
|
|
320
|
-
user_code: string;
|
|
321
|
-
user_email: string;
|
|
322
|
-
organization_code: string;
|
|
323
|
-
sources: Record<string, SourceSpec>;
|
|
324
|
-
account_codes: string[];
|
|
325
|
-
enabled: boolean;
|
|
326
|
-
created_at: string;
|
|
327
|
-
updated_at: string;
|
|
328
|
-
last_fired_at?: string | null;
|
|
329
|
-
}
|
|
330
|
-
type CreateAuditSubscriptionPayload = {
|
|
331
|
-
sources: Record<string, SourceSpec>;
|
|
332
|
-
account_codes: string[];
|
|
333
|
-
};
|
|
334
|
-
interface ListAuditSubscriptionsResponse {
|
|
335
|
-
data: AuditSubscriptionGroup[];
|
|
336
|
-
}
|
|
337
315
|
interface AuditSubscriptionGroupV2 {
|
|
338
316
|
code: string;
|
|
339
317
|
user_code: string;
|
package/build/index.d.ts
CHANGED
|
@@ -4435,28 +4435,6 @@ declare namespace Audit {
|
|
|
4435
4435
|
total_pages: number;
|
|
4436
4436
|
data: ApiLogV3Item[];
|
|
4437
4437
|
}
|
|
4438
|
-
interface SourceSpec {
|
|
4439
|
-
events: string[];
|
|
4440
|
-
}
|
|
4441
|
-
interface AuditSubscriptionGroup {
|
|
4442
|
-
code: string;
|
|
4443
|
-
user_code: string;
|
|
4444
|
-
user_email: string;
|
|
4445
|
-
organization_code: string;
|
|
4446
|
-
sources: Record<string, SourceSpec>;
|
|
4447
|
-
account_codes: string[];
|
|
4448
|
-
enabled: boolean;
|
|
4449
|
-
created_at: string;
|
|
4450
|
-
updated_at: string;
|
|
4451
|
-
last_fired_at?: string | null;
|
|
4452
|
-
}
|
|
4453
|
-
type CreateAuditSubscriptionPayload = {
|
|
4454
|
-
sources: Record<string, SourceSpec>;
|
|
4455
|
-
account_codes: string[];
|
|
4456
|
-
};
|
|
4457
|
-
interface ListAuditSubscriptionsResponse {
|
|
4458
|
-
data: AuditSubscriptionGroup[];
|
|
4459
|
-
}
|
|
4460
4438
|
interface AuditSubscriptionGroupV2 {
|
|
4461
4439
|
code: string;
|
|
4462
4440
|
user_code: string;
|
|
@@ -6395,44 +6373,6 @@ interface UnifiedExportStartParams {
|
|
|
6395
6373
|
}
|
|
6396
6374
|
declare function useUnifiedExportStart(): UseMutationResult<Audit.UnifiedExportStartResponse, BFFErrorResponse, UnifiedExportStartParams>;
|
|
6397
6375
|
|
|
6398
|
-
/**
|
|
6399
|
-
* Result of {@link useCreateAuditSubscription}'s `mutateAsync`.
|
|
6400
|
-
*
|
|
6401
|
-
* A `409 subscription_already_exists` response is treated as success
|
|
6402
|
-
* (idempotent create) and resolves with `{ alreadyExists: true }` rather
|
|
6403
|
-
* than rejecting — the caller treats an already-existing subscription as a
|
|
6404
|
-
* successful no-op.
|
|
6405
|
-
*/
|
|
6406
|
-
type CreateAuditSubscriptionResult = {
|
|
6407
|
-
alreadyExists: false;
|
|
6408
|
-
subscription: Audit.AuditSubscriptionGroup;
|
|
6409
|
-
} | {
|
|
6410
|
-
alreadyExists: true;
|
|
6411
|
-
};
|
|
6412
|
-
/**
|
|
6413
|
-
* Creates an audit-log subscription.
|
|
6414
|
-
*
|
|
6415
|
-
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions`. A `409`
|
|
6416
|
-
* `subscription_already_exists` response RESOLVES successfully as
|
|
6417
|
-
* `{ alreadyExists: true }` (idempotent create); a `201` resolves as
|
|
6418
|
-
* `{ alreadyExists: false, subscription }`. Any other error rejects.
|
|
6419
|
-
*
|
|
6420
|
-
* On success (including the idempotent 409), the `['audit-subscriptions']`
|
|
6421
|
-
* query key is invalidated.
|
|
6422
|
-
*/
|
|
6423
|
-
declare function useCreateAuditSubscription(): UseMutationResult<CreateAuditSubscriptionResult, AxiosError<BFFErrorResponse>, Audit.CreateAuditSubscriptionPayload>;
|
|
6424
|
-
/**
|
|
6425
|
-
* Deletes an audit-log subscription by its code.
|
|
6426
|
-
*
|
|
6427
|
-
* Hits `DELETE /dashboard-bff/api/audit-logs/subscriptions/{code}`. A `404`
|
|
6428
|
-
* `subscription_not_found` response RESOLVES successfully (idempotent delete —
|
|
6429
|
-
* the subscription is already gone). Any other error rejects.
|
|
6430
|
-
*
|
|
6431
|
-
* On success (including the idempotent 404), the `['audit-subscriptions']`
|
|
6432
|
-
* query key is invalidated.
|
|
6433
|
-
*/
|
|
6434
|
-
declare function useDeleteAuditSubscription(): UseMutationResult<void, AxiosError<BFFErrorResponse>, string>;
|
|
6435
|
-
|
|
6436
6376
|
type CreateAuditSubscriptionV2Result = {
|
|
6437
6377
|
alreadyExists: false;
|
|
6438
6378
|
subscription: Audit.AuditSubscriptionGroupV2;
|
|
@@ -7187,6 +7127,7 @@ declare const useAllFeatureFlags: typeof useAllFeatureFlags$1;
|
|
|
7187
7127
|
declare const useCachedFeatureFlag: typeof useCachedFeatureFlag$1;
|
|
7188
7128
|
|
|
7189
7129
|
declare function useGetAuditEvents(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
7130
|
+
declare function useGetDashboardLogs(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
7190
7131
|
/**
|
|
7191
7132
|
* Fetches one audit event by its unique code. Powers the dashboard
|
|
7192
7133
|
* notification deep-link (DAS-15765): clicking "View in audit log" on a bell
|
|
@@ -7228,19 +7169,6 @@ declare function useGetApiLogsStatsRequestsV2(params: Audit.ApiLogsStatsParams):
|
|
|
7228
7169
|
declare function useGetApiLogsStatsErrorsV2(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsStatsResponse, BFFErrorResponse>;
|
|
7229
7170
|
declare function useGetApiLogsStatsErrorsByEndpointV2(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsErrorsByEndpointResponse, BFFErrorResponse>;
|
|
7230
7171
|
|
|
7231
|
-
/**
|
|
7232
|
-
* Lists audit-log subscription groups for the current organization.
|
|
7233
|
-
*
|
|
7234
|
-
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions/list` with an empty
|
|
7235
|
-
* JSON body and unwraps the `{ data: [...] }` envelope so consumers receive a
|
|
7236
|
-
* flat `Audit.AuditSubscriptionGroup[]`. Each group's `sources` is a nested
|
|
7237
|
-
* per-source map (`Record<string, SourceSpec>`).
|
|
7238
|
-
*
|
|
7239
|
-
* v2.0 breaking change: filter params (source/event/account_codes) were
|
|
7240
|
-
* removed — the BFF now returns all groups for the current user.
|
|
7241
|
-
*/
|
|
7242
|
-
declare function useListAuditSubscriptions(): UseQueryResult<Audit.AuditSubscriptionGroup[], BFFErrorResponse>;
|
|
7243
|
-
|
|
7244
7172
|
declare function useListAuditSubscriptionsV2(params?: Audit.ListAuditSubscriptionsV2Params): UseQueryResult<Audit.AuditSubscriptionGroupV2[], BFFErrorResponse>;
|
|
7245
7173
|
|
|
7246
7174
|
declare function useGetPaymentLinks(params: any, accountCode: any): UseQueryResult<any, unknown>;
|
|
@@ -7798,9 +7726,6 @@ declare class Api extends HttpClient {
|
|
|
7798
7726
|
postUnifiedExport<T>(tab: Audit.UnifiedExportTabType, payload: Audit.UnifiedExportRequest): Promise<AxiosResponse<T>>;
|
|
7799
7727
|
getUnifiedExportStatus<T>(tab: Audit.UnifiedExportTabType, exportId: string): Promise<AxiosResponse<T>>;
|
|
7800
7728
|
getUnifiedExportsList<T>(tab: Audit.UnifiedExportTabType, page?: number, size?: number): Promise<AxiosResponse<T>>;
|
|
7801
|
-
createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
|
|
7802
|
-
listAuditSubscriptions<T>(): Promise<AxiosResponse<T>>;
|
|
7803
|
-
deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
|
|
7804
7729
|
createAuditSubscriptionV2<T>(payload: Audit.CreateAuditSubscriptionV2Payload): Promise<AxiosResponse<T>>;
|
|
7805
7730
|
listAuditSubscriptionsV2<T>(params?: Audit.ListAuditSubscriptionsV2Params): Promise<AxiosResponse<T>>;
|
|
7806
7731
|
deleteAuditSubscriptionV2<T>(code: string): Promise<AxiosResponse<T>>;
|
|
@@ -8055,6 +7980,7 @@ declare class Api extends HttpClient {
|
|
|
8055
7980
|
postAuditMonitors<T>(payload: Audit.AuditMonitorsParams): Promise<AxiosResponse<T, any>>;
|
|
8056
7981
|
getAuditMonitorDetail<T>(id: number | null): Promise<AxiosResponse<T, any>>;
|
|
8057
7982
|
getAuditEvents<T>(params: Audit.AuditEventsParams): Promise<AxiosResponse<T, any>>;
|
|
7983
|
+
postDashboardLogs<T>(params: Audit.AuditEventsParams): Promise<AxiosResponse<T, any>>;
|
|
8058
7984
|
/**
|
|
8059
7985
|
* Fetches one audit event by its unique code. Powers the dashboard
|
|
8060
7986
|
* notification deep-link (DAS-15765): a bell card carries only the event
|
|
@@ -8453,5 +8379,5 @@ declare const SESSION_EXPIRED_MESSAGE_TYPE = "yuno-dashboard:session-expired";
|
|
|
8453
8379
|
declare function emitExpired(): void;
|
|
8454
8380
|
declare function resetExpiredGuard(): void;
|
|
8455
8381
|
|
|
8456
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, CONCIERGE_ACCESS_QUERY_KEY, CONCIERGE_ACCESS_REQUEST_STATUS_QUERY_KEY, Certificates, Checkout, ConciergeAccess, ConciergeAccessRequest, Connection, Country, DataReport, Developer, Domains, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FieldVisibility, FraudScreening, Installments, IntegrationRequest, MFA, Notifications, Onboarding, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Playground, Recipients, RecipientsExport, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SESSION_EXPIRED_MESSAGE_TYPE, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, emitExpired, getDatadogEnvironment, getQueryKeyGetNameAndIcon, getQueryKeyPaymentMethodAccounts, getQueryKeyRequiredFields, queryCache, queryClient, resetExpiredGuard, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBlockOnboarding, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useBulkDisableAccounts, useBulkEnableAccounts, useBulkToggleMethod, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateAuditSubscription, useCreateAuditSubscriptionV2, useCreateCertificate, useCreateChart, useCreateChartWithTimezone, useCreateConciergeBrief, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOnboarding, useCreateOperationTransaction, useCreateOrgRole, useCreatePaymentLinks, useCreateRecipient, useCreateRecipientExport, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteAppleDomain, useDeleteAuditSubscription, useDeleteAuditSubscriptionV2, useDeleteBlackListType, useDeleteBlockListItem, useDeleteCertificate, useDeleteCertificateAccount, useDeleteChart, useDeleteConciergeBrief, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeleteOrgRole, useDeletePaymentLink, useDeleteRecipient, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDownloadCertificate, useDownloadRecipientExport, useDuplicateAccount, useDuplicateVersion, useEditOrgRole, useEditPaymentLinks, useEditRoles, useEmailVerification, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByOrganization, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByPaymentId, useGetApiLogsStatsErrorsByEndpointV2, useGetApiLogsStatsErrorsV2, useGetApiLogsStatsRequestsV2, useGetAuditEventByCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetCertificates, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConciergeAccess, useGetConciergeAccessRequestStatus, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetHiddenFields, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrgPermissionsCatalog, useGetOrgRolesPermissions, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipientExportDownload, useGetRecipientExports, useGetRecipients, useGetRecipientsV2, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsSettlementLookup, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useGetWorkOsMfaStatus, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetricsV3, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListAppleDomains, useListAuditSubscriptions, useListAuditSubscriptionsV2, useListSubscriptions, useListUserExports, useLocalStorage, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePatchOrganizationKeysNote, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostIntegrationRequest, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostPlaygroundExecuteFlow, usePostSlackFeatureNotification, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogsV2, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishCheckout, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRegisterAppleDomains, useRequestConciergeAccess, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useTableOnboarding, useToggleMethod, useUnInviteUsersV2, useUnblockOnboarding, useUnifiedExportStart, useUnrollUserV2, useUpdateCertificateAccounts, useUpdateConciergeAccess, useUpdateConciergeBrief, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateOnboarding, useUpdateOrganizationStatus, useUpdateProfile, useUpdateRecipient, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useUploadPaymentLinkLogo, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosDomainStatus, useWorkosDomainVerificationPortal, useWorkosPasswordReset, useWorkosSsoConfigStatus, useWorkosVerifyMfa };
|
|
8457
|
-
export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, BlockOnboardingParams, BulkToggleResult, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult,
|
|
8382
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, CONCIERGE_ACCESS_QUERY_KEY, CONCIERGE_ACCESS_REQUEST_STATUS_QUERY_KEY, Certificates, Checkout, ConciergeAccess, ConciergeAccessRequest, Connection, Country, DataReport, Developer, Domains, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FieldVisibility, FraudScreening, Installments, IntegrationRequest, MFA, Notifications, Onboarding, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Playground, Recipients, RecipientsExport, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SESSION_EXPIRED_MESSAGE_TYPE, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, emitExpired, getDatadogEnvironment, getQueryKeyGetNameAndIcon, getQueryKeyPaymentMethodAccounts, getQueryKeyRequiredFields, queryCache, queryClient, resetExpiredGuard, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBlockOnboarding, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useBulkDisableAccounts, useBulkEnableAccounts, useBulkToggleMethod, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateAuditSubscriptionV2, useCreateCertificate, useCreateChart, useCreateChartWithTimezone, useCreateConciergeBrief, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOnboarding, useCreateOperationTransaction, useCreateOrgRole, useCreatePaymentLinks, useCreateRecipient, useCreateRecipientExport, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteAppleDomain, useDeleteAuditSubscriptionV2, useDeleteBlackListType, useDeleteBlockListItem, useDeleteCertificate, useDeleteCertificateAccount, useDeleteChart, useDeleteConciergeBrief, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeleteOrgRole, useDeletePaymentLink, useDeleteRecipient, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDownloadCertificate, useDownloadRecipientExport, useDuplicateAccount, useDuplicateVersion, useEditOrgRole, useEditPaymentLinks, useEditRoles, useEmailVerification, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByOrganization, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByPaymentId, useGetApiLogsStatsErrorsByEndpointV2, useGetApiLogsStatsErrorsV2, useGetApiLogsStatsRequestsV2, useGetAuditEventByCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetCertificates, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConciergeAccess, useGetConciergeAccessRequestStatus, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardLogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetHiddenFields, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrgPermissionsCatalog, useGetOrgRolesPermissions, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipientExportDownload, useGetRecipientExports, useGetRecipients, useGetRecipientsV2, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsSettlementLookup, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useGetWorkOsMfaStatus, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetricsV3, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListAppleDomains, useListAuditSubscriptionsV2, useListSubscriptions, useListUserExports, useLocalStorage, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePatchOrganizationKeysNote, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostIntegrationRequest, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostPlaygroundExecuteFlow, usePostSlackFeatureNotification, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogsV2, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishCheckout, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRegisterAppleDomains, useRequestConciergeAccess, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useTableOnboarding, useToggleMethod, useUnInviteUsersV2, useUnblockOnboarding, useUnifiedExportStart, useUnrollUserV2, useUpdateCertificateAccounts, useUpdateConciergeAccess, useUpdateConciergeBrief, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateOnboarding, useUpdateOrganizationStatus, useUpdateProfile, useUpdateRecipient, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useUploadPaymentLinkLogo, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosDomainStatus, useWorkosDomainVerificationPortal, useWorkosPasswordReset, useWorkosSsoConfigStatus, useWorkosVerifyMfa };
|
|
8383
|
+
export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, BlockOnboardingParams, BulkToggleResult, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateAuditSubscriptionV2Result, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateOnboardingParams, CreateOnboardingPayload, CreateOnboardingProvider, CreateOnboardingTermsOfService, CreateRecipientAddress, CreateRecipientBank, CreateRecipientDocument, CreateRecipientDocumentation, CreateRecipientLegalRepresentative, CreateRecipientParams, CreateRecipientPayload, CreateRecipientPhone, CreateRecipientWithdrawalMethod, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DatadogEnvironment, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteRecipientParams, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientExportsParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, RoleType, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, ToggleMethodItem, TotalTimeline, TransactionHistory, UnblockOnboardingParams, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateOnboardingParams, UpdateOnboardingPayload, UpdateRecipientParams, UpdateRecipientPayload, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetChartFeedbackParams, UseGetOnboardingStatusParams, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage, WorkosDomainStatusResponse, WorkosSsoConfigStatusResponse, WorkosSsoConnection };
|
package/package.json
CHANGED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
-
import { AxiosError } from 'axios';
|
|
3
|
-
import type { Audit } from '../../types';
|
|
4
|
-
import { BFFErrorResponse } from '../smart-routing';
|
|
5
|
-
/**
|
|
6
|
-
* Result of {@link useCreateAuditSubscription}'s `mutateAsync`.
|
|
7
|
-
*
|
|
8
|
-
* A `409 subscription_already_exists` response is treated as success
|
|
9
|
-
* (idempotent create) and resolves with `{ alreadyExists: true }` rather
|
|
10
|
-
* than rejecting — the caller treats an already-existing subscription as a
|
|
11
|
-
* successful no-op.
|
|
12
|
-
*/
|
|
13
|
-
export type CreateAuditSubscriptionResult = {
|
|
14
|
-
alreadyExists: false;
|
|
15
|
-
subscription: Audit.AuditSubscriptionGroup;
|
|
16
|
-
} | {
|
|
17
|
-
alreadyExists: true;
|
|
18
|
-
};
|
|
19
|
-
/**
|
|
20
|
-
* Creates an audit-log subscription.
|
|
21
|
-
*
|
|
22
|
-
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions`. A `409`
|
|
23
|
-
* `subscription_already_exists` response RESOLVES successfully as
|
|
24
|
-
* `{ alreadyExists: true }` (idempotent create); a `201` resolves as
|
|
25
|
-
* `{ alreadyExists: false, subscription }`. Any other error rejects.
|
|
26
|
-
*
|
|
27
|
-
* On success (including the idempotent 409), the `['audit-subscriptions']`
|
|
28
|
-
* query key is invalidated.
|
|
29
|
-
*/
|
|
30
|
-
export declare function useCreateAuditSubscription(): UseMutationResult<CreateAuditSubscriptionResult, AxiosError<BFFErrorResponse>, Audit.CreateAuditSubscriptionPayload>;
|
|
31
|
-
/**
|
|
32
|
-
* Deletes an audit-log subscription by its code.
|
|
33
|
-
*
|
|
34
|
-
* Hits `DELETE /dashboard-bff/api/audit-logs/subscriptions/{code}`. A `404`
|
|
35
|
-
* `subscription_not_found` response RESOLVES successfully (idempotent delete —
|
|
36
|
-
* the subscription is already gone). Any other error rejects.
|
|
37
|
-
*
|
|
38
|
-
* On success (including the idempotent 404), the `['audit-subscriptions']`
|
|
39
|
-
* query key is invalidated.
|
|
40
|
-
*/
|
|
41
|
-
export declare function useDeleteAuditSubscription(): UseMutationResult<void, AxiosError<BFFErrorResponse>, string>;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import type { Audit } from '../../types';
|
|
3
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
4
|
-
/**
|
|
5
|
-
* Lists audit-log subscription groups for the current organization.
|
|
6
|
-
*
|
|
7
|
-
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions/list` with an empty
|
|
8
|
-
* JSON body and unwraps the `{ data: [...] }` envelope so consumers receive a
|
|
9
|
-
* flat `Audit.AuditSubscriptionGroup[]`. Each group's `sources` is a nested
|
|
10
|
-
* per-source map (`Record<string, SourceSpec>`).
|
|
11
|
-
*
|
|
12
|
-
* v2.0 breaking change: filter params (source/event/account_codes) were
|
|
13
|
-
* removed — the BFF now returns all groups for the current user.
|
|
14
|
-
*/
|
|
15
|
-
export declare function useListAuditSubscriptions(): UseQueryResult<Audit.AuditSubscriptionGroup[], BFFErrorResponse>;
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
-
import { AxiosError } from 'axios';
|
|
3
|
-
import type { Audit } from '../../types';
|
|
4
|
-
import { BFFErrorResponse } from '../smart-routing';
|
|
5
|
-
/**
|
|
6
|
-
* Result of {@link useCreateAuditSubscription}'s `mutateAsync`.
|
|
7
|
-
*
|
|
8
|
-
* A `409 subscription_already_exists` response is treated as success
|
|
9
|
-
* (idempotent create) and resolves with `{ alreadyExists: true }` rather
|
|
10
|
-
* than rejecting — the caller treats an already-existing subscription as a
|
|
11
|
-
* successful no-op.
|
|
12
|
-
*/
|
|
13
|
-
export type CreateAuditSubscriptionResult = {
|
|
14
|
-
alreadyExists: false;
|
|
15
|
-
subscription: Audit.AuditSubscriptionGroup;
|
|
16
|
-
} | {
|
|
17
|
-
alreadyExists: true;
|
|
18
|
-
};
|
|
19
|
-
/**
|
|
20
|
-
* Creates an audit-log subscription.
|
|
21
|
-
*
|
|
22
|
-
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions`. A `409`
|
|
23
|
-
* `subscription_already_exists` response RESOLVES successfully as
|
|
24
|
-
* `{ alreadyExists: true }` (idempotent create); a `201` resolves as
|
|
25
|
-
* `{ alreadyExists: false, subscription }`. Any other error rejects.
|
|
26
|
-
*
|
|
27
|
-
* On success (including the idempotent 409), the `['audit-subscriptions']`
|
|
28
|
-
* query key is invalidated.
|
|
29
|
-
*/
|
|
30
|
-
export declare function useCreateAuditSubscription(): UseMutationResult<CreateAuditSubscriptionResult, AxiosError<BFFErrorResponse>, Audit.CreateAuditSubscriptionPayload>;
|
|
31
|
-
/**
|
|
32
|
-
* Deletes an audit-log subscription by its code.
|
|
33
|
-
*
|
|
34
|
-
* Hits `DELETE /dashboard-bff/api/audit-logs/subscriptions/{code}`. A `404`
|
|
35
|
-
* `subscription_not_found` response RESOLVES successfully (idempotent delete —
|
|
36
|
-
* the subscription is already gone). Any other error rejects.
|
|
37
|
-
*
|
|
38
|
-
* On success (including the idempotent 404), the `['audit-subscriptions']`
|
|
39
|
-
* query key is invalidated.
|
|
40
|
-
*/
|
|
41
|
-
export declare function useDeleteAuditSubscription(): UseMutationResult<void, AxiosError<BFFErrorResponse>, string>;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import type { Audit } from '../../types';
|
|
3
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
4
|
-
/**
|
|
5
|
-
* Lists audit-log subscription groups for the current organization.
|
|
6
|
-
*
|
|
7
|
-
* Hits `POST /dashboard-bff/api/audit-logs/subscriptions/list` with an empty
|
|
8
|
-
* JSON body and unwraps the `{ data: [...] }` envelope so consumers receive a
|
|
9
|
-
* flat `Audit.AuditSubscriptionGroup[]`. Each group's `sources` is a nested
|
|
10
|
-
* per-source map (`Record<string, SourceSpec>`).
|
|
11
|
-
*
|
|
12
|
-
* v2.0 breaking change: filter params (source/event/account_codes) were
|
|
13
|
-
* removed — the BFF now returns all groups for the current user.
|
|
14
|
-
*/
|
|
15
|
-
export declare function useListAuditSubscriptions(): UseQueryResult<Audit.AuditSubscriptionGroup[], BFFErrorResponse>;
|