@yuno-payments/dashboard-api-mfe 0.43.0-metadata-beta.1 → 0.43.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 +6 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +61 -7
- package/build/cjs/types/api/api.test.d.ts +1 -0
- package/build/cjs/types/api/api.types.d.ts +28 -0
- package/build/cjs/types/msw/handlers/reconciliation-insights.d.ts +1 -0
- package/build/cjs/types/msw/mocks/reconciliation-insights/index.d.ts +22 -0
- package/build/cjs/types/mutations/connections/connections.mutation.d.ts +2 -2
- package/build/cjs/types/mutations/developers/developers.mutation.d.ts +3 -0
- package/build/cjs/types/mutations/developers/index.d.ts +1 -0
- package/build/cjs/types/mutations/developers/types.d.ts +5 -0
- package/build/cjs/types/mutations/index.d.ts +2 -0
- package/build/cjs/types/mutations/organization-config/index.d.ts +1 -0
- package/build/cjs/types/mutations/organization-config/organization-config.mutation.d.ts +6 -0
- package/build/cjs/types/mutations/reports/reports.mutation.d.ts +1 -0
- package/build/cjs/types/mutations/subscriptions/index.d.ts +1 -0
- package/build/cjs/types/mutations/subscriptions/subscriptions.mutation.d.ts +19 -0
- package/build/cjs/types/queries/audit/audit.query.d.ts +1 -0
- package/build/cjs/types/queries/developers/developers.query.d.ts +3 -1
- package/build/cjs/types/queries/index.d.ts +3 -0
- package/build/cjs/types/queries/network-tokens/network-tokens.query.d.ts +2 -3
- package/build/cjs/types/queries/organization-config/index.d.ts +1 -0
- package/build/cjs/types/queries/organization-config/organization-config.query.d.ts +4 -0
- package/build/cjs/types/queries/payments/payouts-timeline.query.test.d.ts +1 -0
- package/build/cjs/types/queries/payments/payouts.query.d.ts +1 -0
- package/build/cjs/types/queries/recipients/index.d.ts +1 -0
- package/build/cjs/types/queries/recipients/recipients.query.d.ts +8 -0
- package/build/cjs/types/queries/reconciliations/index.d.ts +1 -0
- package/build/cjs/types/queries/reconciliations/reconciliation-insights.query.d.ts +23 -0
- package/build/cjs/types/queries/reconciliations/reconciliation-insights.query.test.d.ts +1 -0
- package/build/cjs/types/queries/subscriptions/index.d.ts +1 -0
- package/build/cjs/types/queries/subscriptions/subscriptions.query.d.ts +3 -0
- package/build/cjs/types/types/audit/audit.d.ts +14 -0
- package/build/cjs/types/types/connection/connection.d.ts +23 -15
- package/build/cjs/types/types/data-report/data-report.d.ts +23 -8
- package/build/cjs/types/types/data-report/fraud.types.d.ts +1 -0
- package/build/cjs/types/types/index.d.ts +2 -0
- package/build/cjs/types/types/organization-config/index.d.ts +1 -0
- package/build/cjs/types/types/organization-config/organization-config.d.ts +34 -0
- package/build/cjs/types/types/payouts/payouts.d.ts +20 -0
- package/build/cjs/types/types/recipients/index.d.ts +1 -0
- package/build/cjs/types/types/recipients/recipients.d.ts +216 -0
- package/build/cjs/types/types/reconciliation/index.d.ts +1 -0
- package/build/cjs/types/types/reconciliation/reconciliation-insights.d.ts +172 -0
- package/build/cjs/types/types/reports/reports.d.ts +4 -0
- package/build/cjs/types/types/webhook/webhook.d.ts +6 -0
- package/build/esm/index.js +6 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +61 -7
- package/build/esm/types/api/api.test.d.ts +1 -0
- package/build/esm/types/api/api.types.d.ts +28 -0
- package/build/esm/types/msw/handlers/reconciliation-insights.d.ts +1 -0
- package/build/esm/types/msw/mocks/reconciliation-insights/index.d.ts +22 -0
- package/build/esm/types/mutations/connections/connections.mutation.d.ts +2 -2
- package/build/esm/types/mutations/developers/developers.mutation.d.ts +3 -0
- package/build/esm/types/mutations/developers/index.d.ts +1 -0
- package/build/esm/types/mutations/developers/types.d.ts +5 -0
- package/build/esm/types/mutations/index.d.ts +2 -0
- package/build/esm/types/mutations/organization-config/index.d.ts +1 -0
- package/build/esm/types/mutations/organization-config/organization-config.mutation.d.ts +6 -0
- package/build/esm/types/mutations/reports/reports.mutation.d.ts +1 -0
- package/build/esm/types/mutations/subscriptions/index.d.ts +1 -0
- package/build/esm/types/mutations/subscriptions/subscriptions.mutation.d.ts +19 -0
- package/build/esm/types/queries/audit/audit.query.d.ts +1 -0
- package/build/esm/types/queries/developers/developers.query.d.ts +3 -1
- package/build/esm/types/queries/index.d.ts +3 -0
- package/build/esm/types/queries/network-tokens/network-tokens.query.d.ts +2 -3
- package/build/esm/types/queries/organization-config/index.d.ts +1 -0
- package/build/esm/types/queries/organization-config/organization-config.query.d.ts +4 -0
- package/build/esm/types/queries/payments/payouts-timeline.query.test.d.ts +1 -0
- package/build/esm/types/queries/payments/payouts.query.d.ts +1 -0
- package/build/esm/types/queries/recipients/index.d.ts +1 -0
- package/build/esm/types/queries/recipients/recipients.query.d.ts +8 -0
- package/build/esm/types/queries/reconciliations/index.d.ts +1 -0
- package/build/esm/types/queries/reconciliations/reconciliation-insights.query.d.ts +23 -0
- package/build/esm/types/queries/reconciliations/reconciliation-insights.query.test.d.ts +1 -0
- package/build/esm/types/queries/subscriptions/index.d.ts +1 -0
- package/build/esm/types/queries/subscriptions/subscriptions.query.d.ts +3 -0
- package/build/esm/types/types/audit/audit.d.ts +14 -0
- package/build/esm/types/types/connection/connection.d.ts +23 -15
- package/build/esm/types/types/data-report/data-report.d.ts +23 -8
- package/build/esm/types/types/data-report/fraud.types.d.ts +1 -0
- package/build/esm/types/types/index.d.ts +2 -0
- package/build/esm/types/types/organization-config/index.d.ts +1 -0
- package/build/esm/types/types/organization-config/organization-config.d.ts +34 -0
- package/build/esm/types/types/payouts/payouts.d.ts +20 -0
- package/build/esm/types/types/recipients/index.d.ts +1 -0
- package/build/esm/types/types/recipients/recipients.d.ts +216 -0
- package/build/esm/types/types/reconciliation/index.d.ts +1 -0
- package/build/esm/types/types/reconciliation/reconciliation-insights.d.ts +172 -0
- package/build/esm/types/types/reports/reports.d.ts +4 -0
- package/build/esm/types/types/webhook/webhook.d.ts +6 -0
- package/build/index.d.ts +676 -34
- package/package.json +4 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
2
2
|
import { HttpClient } from '../lib/http-client';
|
|
3
|
-
import { GetPaymentsParams, GetReconciliationMetricParams, FirebaseUserSubscribe, PathNotification, TimeZoneCatalog, GetTransactionDetailsV2Params, MfaUserSubscribe, UserInviteMultiaccountPayload, GetTransactionsParams, PaymentsSettings, GetPayoutDetail, GetPayoutTransactionDetail, PinnedSections, ThemeSettings } from './api.types';
|
|
4
|
-
import { Audit, OperationTransaction, Organization, SmartRouting, User, Webhook, Reports, ReportType, TemplateType, OrganizationSettings, IListScheduledReportsResponse, DataReport, Reconciliation, Checkout, ReconciliationReportType, SendPaymentNotification, ReconciliationAlerts, ReconciliationAgenda, ReconciliationSales, ReconciliationAdvancements, ReconciliationFees, Payment, InsightsFraudParams, InsightsFraudBody, AI, PaymentFiltersSection, GetInstallmentPlansResponse, Connection, TemplateReporting, GetUserFullResponse } from '../types';
|
|
3
|
+
import { GetPaymentsParams, GetReconciliationMetricParams, FirebaseUserSubscribe, PathNotification, TimeZoneCatalog, GetTransactionDetailsV2Params, MfaUserSubscribe, UserInviteMultiaccountPayload, GetTransactionsParams, PaymentsSettings, GetPayoutDetail, GetPayoutTransactionDetail, PinnedSections, ThemeSettings, ListSubscriptionsParams } from './api.types';
|
|
4
|
+
import { Audit, OperationTransaction, Organization, OrganizationConfig, SmartRouting, User, Webhook, Reports, ReportType, TemplateType, OrganizationSettings, IListScheduledReportsResponse, DataReport, Reconciliation, Checkout, ReconciliationReportType, SendPaymentNotification, ReconciliationAlerts, ReconciliationAgenda, ReconciliationSales, ReconciliationAdvancements, ReconciliationFees, ReconciliationInsights, Payment, InsightsFraudParams, InsightsFraudBody, AI, PaymentFiltersSection, GetInstallmentPlansResponse, Connection, TemplateReporting, GetUserFullResponse } from '../types';
|
|
5
5
|
import { ConversionRateParams, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds } from '../types/data-report/conversion-rate.types';
|
|
6
6
|
import { RoutingMonitors } from '../types/routing-monitors';
|
|
7
7
|
import { ChangePaymentsWebhook } from '../mutations';
|
|
@@ -39,6 +39,27 @@ export declare class Api extends HttpClient {
|
|
|
39
39
|
getReconciliationSales<T>(body: ReconciliationSales.FiltersRequestBody, params: ReconciliationSales.FiltersRequestParams): Promise<AxiosResponse<T>>;
|
|
40
40
|
getReconciliationAdvancements<T>(body: ReconciliationAdvancements.FiltersRequestBody, params: ReconciliationAdvancements.FiltersRequestParams): Promise<AxiosResponse<T>>;
|
|
41
41
|
getReconciliationFees<T>(body: ReconciliationFees.FiltersRequestBody, params: ReconciliationFees.FiltersRequestParams): Promise<AxiosResponse<T>>;
|
|
42
|
+
getReconciliationInsightsConflictsSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
43
|
+
getReconciliationInsightsNotReconciledAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
44
|
+
getReconciliationInsightsNotReconciledList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
45
|
+
getReconciliationInsightsStatusConflictAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
46
|
+
getReconciliationInsightsStatusConflictList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
47
|
+
getReconciliationInsightsAmountConflictAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
48
|
+
getReconciliationInsightsAmountConflictList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
49
|
+
getReconciliationInsightsConflictDateSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
50
|
+
getReconciliationInsightsConflictDateAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
51
|
+
getReconciliationInsightsConflictDateList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
52
|
+
getReconciliationInsightsIncorrectFeesSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
|
|
53
|
+
getReconciliationInsightsIncorrectFeesAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
|
|
54
|
+
getReconciliationInsightsIncorrectFeesList<T>(body: ReconciliationInsights.ListFiltersWithProvider, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
|
|
55
|
+
getReconciliationInsightsFeesChargedSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
|
|
56
|
+
getReconciliationInsightsReconciledSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
|
|
57
|
+
getReconciliationInsightsReconciledAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
58
|
+
getReconciliationInsightsReconciledList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
59
|
+
getReconciliationInsightsNotConfirmSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
60
|
+
getReconciliationInsightsNotConfirmAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
61
|
+
getReconciliationInsightsNotConfirmList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer): Promise<AxiosResponse<T>>;
|
|
62
|
+
getReconciliationInsightsAmountToBeSettledSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
|
|
42
63
|
postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
43
64
|
postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
|
|
44
65
|
getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
|
|
@@ -49,6 +70,7 @@ export declare class Api extends HttpClient {
|
|
|
49
70
|
getPayoutDetails<T>(params: GetPayoutDetail): Promise<AxiosResponse<T, any>>;
|
|
50
71
|
getPayoutTransactionDetails<T>(params: GetPayoutTransactionDetail): Promise<AxiosResponse<T, any>>;
|
|
51
72
|
getPayoutHistoryDetails<T>(params: GetPayoutDetail, organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
73
|
+
getPayoutTimeline<T>(payoutCode: string, organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
52
74
|
getPaymentMethodsByCountry<T>({ provider_id, country }: Organization.PaymentMethods, organizationCodeFromAccount: any): Promise<AxiosResponse<T, any>>;
|
|
53
75
|
getOrgByName<T>(name: any): Promise<AxiosResponse<T, any>>;
|
|
54
76
|
createOperationTransaction<T>(payload: OperationTransaction.Request, transactionId: string, paymentId: string, action: OperationTransaction.Actions): Promise<AxiosResponse<T, any>>;
|
|
@@ -63,8 +85,9 @@ export declare class Api extends HttpClient {
|
|
|
63
85
|
getTransactionHistoryByPaymentCode<T>({ payment_code, }: {
|
|
64
86
|
payment_code: any;
|
|
65
87
|
}): Promise<AxiosResponse<T, any>>;
|
|
66
|
-
getDeveloperCredentials<T>(password: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
88
|
+
getDeveloperCredentials<T>(password: any, accountCode: any, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
67
89
|
getDeveloperCredentialsValidatePassword<T>(password: any): Promise<AxiosResponse<T, any>>;
|
|
90
|
+
getDeveloperCredentialsValidatePasswordRegularUser<T>(password: any): Promise<AxiosResponse<T, any>>;
|
|
68
91
|
getAllowedIps<T>(): Promise<AxiosResponse<T, any>>;
|
|
69
92
|
patchAllowedIps<T>(request: AllowedList.Request): Promise<AxiosResponse<T, any>>;
|
|
70
93
|
getOrganization<T>(): Promise<AxiosResponse<T, any>>;
|
|
@@ -79,6 +102,9 @@ export declare class Api extends HttpClient {
|
|
|
79
102
|
costs: Cost[];
|
|
80
103
|
}): Promise<AxiosResponse<T>>;
|
|
81
104
|
updateOrganizationStatus<T>(): Promise<AxiosResponse<T>>;
|
|
105
|
+
getOrganizationConfigs<T>(): Promise<AxiosResponse<T, any>>;
|
|
106
|
+
postOrganizationConfigs<T>(payload: OrganizationConfig.PostConfigsRequest): Promise<AxiosResponse<T, any>>;
|
|
107
|
+
putOrganizationConfigsByAccount<T>(payload: OrganizationConfig.PutConfigsByAccountRequest): Promise<AxiosResponse<T, any>>;
|
|
82
108
|
getIntegrationParams<T>({ accountCode, integration_code, }: {
|
|
83
109
|
accountCode: any;
|
|
84
110
|
integration_code: any;
|
|
@@ -133,6 +159,7 @@ export declare class Api extends HttpClient {
|
|
|
133
159
|
payload: Audit.AuditApiLogsParams;
|
|
134
160
|
}): Promise<AxiosResponse<T>>;
|
|
135
161
|
getApiLogsDetailByPaymentCode<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
162
|
+
getApiLogsByTransactionCode<T>(transactionCode: string, accountCode: string): Promise<AxiosResponse<T>>;
|
|
136
163
|
useGetPaymentStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
137
164
|
useGetTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
138
165
|
useGetReconciliationTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
@@ -263,6 +290,7 @@ export declare class Api extends HttpClient {
|
|
|
263
290
|
getReportTemplates<T>(): Promise<AxiosResponse<T>>;
|
|
264
291
|
createReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
265
292
|
updateReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
|
|
293
|
+
deletePaymentsReportTemplate<T>(payload: Reports.IDeletePaymentsReportTemplate): Promise<AxiosResponse<T>>;
|
|
266
294
|
getReportColumns<T>(templateType: TemplateType, reportType: ReportType): Promise<any>;
|
|
267
295
|
searchReportTemplates<T>(payload: TemplateReporting.SearchTemplatesRequest): Promise<AxiosResponse<T>>;
|
|
268
296
|
searchReportTemplateById<T>(templateId: number, payload: TemplateReporting.SearchTemplateByIdRequest): Promise<AxiosResponse<T>>;
|
|
@@ -386,6 +414,15 @@ export declare class Api extends HttpClient {
|
|
|
386
414
|
postDeletePaymentLink<T>({ code }: {
|
|
387
415
|
code: any;
|
|
388
416
|
}): Promise<AxiosResponse<T, any>>;
|
|
417
|
+
postSubscription<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
418
|
+
getSubscriptionByCode<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
|
|
419
|
+
postPauseSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
|
|
420
|
+
postResumeSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
|
|
421
|
+
postCancelSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
|
|
422
|
+
patchSubscription<T>(subscriptionCode: string, payload: any): Promise<AxiosResponse<T, any>>;
|
|
423
|
+
postRescheduleSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
|
|
424
|
+
getSubscriptionPayments<T>(subscriptionCode: string, page?: number, size?: number): Promise<AxiosResponse<T, any>>;
|
|
425
|
+
postListSubscriptions<T>(payload: ListSubscriptionsParams): Promise<AxiosResponse<T, any>>;
|
|
389
426
|
getTimezone<T>(organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
390
427
|
getInstallmentPlans(accountCode: string): Promise<AxiosResponse<GetInstallmentPlansResponse>>;
|
|
391
428
|
firebaseUserSubscribe<T>(payload: FirebaseUserSubscribe): Promise<AxiosResponse<T>>;
|
|
@@ -491,14 +528,14 @@ export declare class Api extends HttpClient {
|
|
|
491
528
|
postCreateRuleMultiAccount<T>(payload: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
492
529
|
postEditRule<T>(payload: any, ruleId: any, accountCode: any): Promise<AxiosResponse<T, any>>;
|
|
493
530
|
postApiKeysRoll<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
494
|
-
patchApiKeysEditNote<T>(payload: any, keyCode: any): Promise<AxiosResponse<T, any>>;
|
|
531
|
+
patchApiKeysEditNote<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
|
|
495
532
|
getCustomizedApiKeysMembers<T>(): Promise<AxiosResponse<T, any>>;
|
|
496
533
|
getCustomizedApiKeysAccounts<T>(): Promise<AxiosResponse<T, any>>;
|
|
497
534
|
postCreateCustomizedApiKeys<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
498
535
|
pathCreateCustomizedApiKeys<T>(payload: any, code: any): Promise<AxiosResponse<T, any>>;
|
|
499
536
|
postCustomizedApiKeys<T>(accountCodes: string[]): Promise<AxiosResponse<T, any>>;
|
|
500
537
|
getCustomizedApiKeysProducts<T>(): Promise<AxiosResponse<T, any>>;
|
|
501
|
-
getCustomizedApiKeysToken<T>(code:
|
|
538
|
+
getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
|
|
502
539
|
validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
|
|
503
540
|
deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
|
|
504
541
|
postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
|
|
@@ -528,8 +565,8 @@ export declare class Api extends HttpClient {
|
|
|
528
565
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
529
566
|
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
530
567
|
getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
531
|
-
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<
|
|
532
|
-
postNetworkTokensOnboarding(payload: Connection.
|
|
568
|
+
getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
|
|
569
|
+
postNetworkTokensOnboarding(payload: Connection.NetworkTokensOnboardingMerchantRequest): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
|
|
533
570
|
createChartGPTChart<T>(payload: {
|
|
534
571
|
user_prompt: string;
|
|
535
572
|
timezone?: string;
|
|
@@ -554,5 +591,22 @@ export declare class Api extends HttpClient {
|
|
|
554
591
|
}): Promise<AxiosResponse<T, any>>;
|
|
555
592
|
getCommunicationsFilters<T>(): Promise<AxiosResponse<T, any>>;
|
|
556
593
|
getCommunicationDetails<T>(communicationId: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
594
|
+
getRecipients<T>(organizationCode: string, params: {
|
|
595
|
+
account_ids?: string;
|
|
596
|
+
countries?: string;
|
|
597
|
+
national_entities?: string;
|
|
598
|
+
entity_types?: string;
|
|
599
|
+
start_date?: string;
|
|
600
|
+
end_date?: string;
|
|
601
|
+
search_type?: string;
|
|
602
|
+
search_value?: string;
|
|
603
|
+
page?: number;
|
|
604
|
+
page_size?: number;
|
|
605
|
+
sort_by?: string;
|
|
606
|
+
sort_order?: string;
|
|
607
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
608
|
+
getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
|
|
609
|
+
getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
610
|
+
getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
|
|
557
611
|
}
|
|
558
612
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -6,6 +6,12 @@ export interface GetPaymentsParams {
|
|
|
6
6
|
enabled?: boolean;
|
|
7
7
|
account_code?: string;
|
|
8
8
|
payment_link_code?: string;
|
|
9
|
+
metadata?: Array<{
|
|
10
|
+
field: string;
|
|
11
|
+
formatType: 'TEXT' | 'NUMBER';
|
|
12
|
+
type: string;
|
|
13
|
+
values: string | string[];
|
|
14
|
+
}>;
|
|
9
15
|
}
|
|
10
16
|
export interface GetPaymentsEvaluatedParams {
|
|
11
17
|
start_date: string | Date;
|
|
@@ -127,6 +133,12 @@ export interface GetTransactionsParams {
|
|
|
127
133
|
page?: number;
|
|
128
134
|
size?: number;
|
|
129
135
|
account_code?: string;
|
|
136
|
+
metadata?: Array<{
|
|
137
|
+
field: string;
|
|
138
|
+
formatType: 'TEXT' | 'NUMBER';
|
|
139
|
+
type: string;
|
|
140
|
+
values: string | string[];
|
|
141
|
+
}>;
|
|
130
142
|
}
|
|
131
143
|
export interface GetPayoutDetail {
|
|
132
144
|
payout_code: string;
|
|
@@ -196,4 +208,20 @@ export interface PinnedSections {
|
|
|
196
208
|
sections: string[];
|
|
197
209
|
};
|
|
198
210
|
}
|
|
211
|
+
export interface ListSubscriptionsParams {
|
|
212
|
+
organization_code: string;
|
|
213
|
+
account_codes?: string[];
|
|
214
|
+
start_date?: string;
|
|
215
|
+
end_date?: string;
|
|
216
|
+
statuses?: string[];
|
|
217
|
+
countries?: string[];
|
|
218
|
+
payment_method_types?: string[];
|
|
219
|
+
page?: number;
|
|
220
|
+
size?: number;
|
|
221
|
+
merchant_reference?: string;
|
|
222
|
+
subscription_id?: string;
|
|
223
|
+
payment_id?: string;
|
|
224
|
+
customer_search?: string;
|
|
225
|
+
timezone?: string;
|
|
226
|
+
}
|
|
199
227
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const reconciliationInsightsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ReconciliationInsights } from '../../../types';
|
|
2
|
+
export declare const CONFLICTS_SUMMARY_MOCK: ReconciliationInsights.ConflictsSummary;
|
|
3
|
+
export declare const NOT_RECONCILED_AGGREGATORS_MOCK: ReconciliationInsights.Aggregators;
|
|
4
|
+
export declare const NOT_RECONCILED_LIST_MOCK: ReconciliationInsights.ReconciliationOverviewList;
|
|
5
|
+
export declare const STATUS_CONFLICT_AGGREGATORS_MOCK: ReconciliationInsights.Aggregators;
|
|
6
|
+
export declare const STATUS_CONFLICT_LIST_MOCK: ReconciliationInsights.ReconciliationOverviewList;
|
|
7
|
+
export declare const AMOUNT_CONFLICT_AGGREGATORS_MOCK: ReconciliationInsights.Aggregators;
|
|
8
|
+
export declare const AMOUNT_CONFLICT_LIST_MOCK: ReconciliationInsights.ReconciliationOverviewList;
|
|
9
|
+
export declare const CONFLICT_DATE_SUMMARY_MOCK: ReconciliationInsights.GenericChartSummary;
|
|
10
|
+
export declare const CONFLICT_DATE_AGGREGATORS_MOCK: ReconciliationInsights.ConflictDateAggregators;
|
|
11
|
+
export declare const CONFLICT_DATE_LIST_MOCK: ReconciliationInsights.ReconciliationOverviewList;
|
|
12
|
+
export declare const INCORRECT_FEES_SUMMARY_MOCK: ReconciliationInsights.GenericChartSummary;
|
|
13
|
+
export declare const INCORRECT_FEES_AGGREGATORS_MOCK: ReconciliationInsights.Aggregators;
|
|
14
|
+
export declare const INCORRECT_FEES_LIST_MOCK: ReconciliationInsights.SettlementAndFeeList;
|
|
15
|
+
export declare const FEES_CHARGED_SUMMARY_MOCK: ReconciliationInsights.ChartWithGraph;
|
|
16
|
+
export declare const RECONCILED_SUMMARY_MOCK: ReconciliationInsights.GenericChartSummary;
|
|
17
|
+
export declare const RECONCILED_AGGREGATORS_MOCK: ReconciliationInsights.Aggregators;
|
|
18
|
+
export declare const RECONCILED_LIST_MOCK: ReconciliationInsights.SettlementAndFeeList;
|
|
19
|
+
export declare const NOT_CONFIRM_SUMMARY_MOCK: ReconciliationInsights.GenericChartSummary;
|
|
20
|
+
export declare const NOT_CONFIRM_AGGREGATORS_MOCK: ReconciliationInsights.Aggregators;
|
|
21
|
+
export declare const NOT_CONFIRM_LIST_MOCK: ReconciliationInsights.ProcessedTransactionList;
|
|
22
|
+
export declare const AMOUNT_TO_BE_SETTLED_SUMMARY_MOCK: ReconciliationInsights.ChartWithGraph;
|
|
@@ -34,7 +34,7 @@ export declare function useValidateCredentials(): import("@tanstack/react-query"
|
|
|
34
34
|
country_code?: string;
|
|
35
35
|
};
|
|
36
36
|
}, unknown>;
|
|
37
|
-
export declare function usePostNetworkTokensOnboarding(): import("@tanstack/react-query").UseMutationResult<Connection.
|
|
38
|
-
payload: Connection.
|
|
37
|
+
export declare function usePostNetworkTokensOnboarding(): import("@tanstack/react-query").UseMutationResult<Connection.NetworkTokensOnboardingMerchantData, unknown, {
|
|
38
|
+
payload: Connection.NetworkTokensOnboardingMerchantRequest;
|
|
39
39
|
}, unknown>;
|
|
40
40
|
export {};
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
+
import { ResponseValidatePasswordRegularUser } from './types';
|
|
2
3
|
export declare function usePostCreateCustomizedApiKeys(): UseMutationResult<unknown>;
|
|
3
4
|
export declare function usePathCreateCustomizedApiKeys(): UseMutationResult<unknown>;
|
|
4
5
|
export declare function useGetCustomizedApiKeysToken(): UseMutationResult<unknown>;
|
|
5
6
|
export declare function usePostCredentialsValidatePassword(): UseMutationResult<unknown>;
|
|
7
|
+
export declare function usePostCredentialsValidatePasswordRegularUser(): UseMutationResult<ResponseValidatePasswordRegularUser>;
|
|
6
8
|
export declare function useDeleteCustomizedApiKeys(): UseMutationResult<unknown>;
|
|
7
9
|
export declare function usePatchApiKeysEditNote(): UseMutationResult<unknown>;
|
|
8
10
|
export declare function usePostApiKeysRoll(): UseMutationResult<unknown>;
|
|
@@ -19,3 +21,4 @@ export declare function useGetCredentialsMFA(): UseMutationResult<{
|
|
|
19
21
|
password?: string | undefined;
|
|
20
22
|
accountCode?: string | undefined;
|
|
21
23
|
}, unknown>;
|
|
24
|
+
export declare function usePostCredentialsWithOtpMfa(): UseMutationResult<unknown>;
|
|
@@ -11,6 +11,7 @@ export * from './routing-monitors';
|
|
|
11
11
|
export * from './notifications';
|
|
12
12
|
export * from './team';
|
|
13
13
|
export * from './payment-links';
|
|
14
|
+
export * from './subscriptions';
|
|
14
15
|
export * from './settings';
|
|
15
16
|
export * from './multi-factor-authentication';
|
|
16
17
|
export * from './fraud-screening';
|
|
@@ -28,3 +29,4 @@ export * from './saml-config';
|
|
|
28
29
|
export * from './ai';
|
|
29
30
|
export * from './chartgpt';
|
|
30
31
|
export * from './template-reporting';
|
|
32
|
+
export * from './organization-config';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './organization-config.mutation';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
+
import { OrganizationConfig } from '../../types';
|
|
3
|
+
import { AxiosResponse } from 'axios';
|
|
4
|
+
import { BFFErrorResponse } from '../smart-routing';
|
|
5
|
+
export declare function usePostOrganizationConfigs(): UseMutationResult<AxiosResponse<OrganizationConfig.PostConfigsResponse>, BFFErrorResponse, OrganizationConfig.PostConfigsRequest>;
|
|
6
|
+
export declare function usePutOrganizationConfigsByAccount(): UseMutationResult<AxiosResponse<OrganizationConfig.PutConfigsByAccountResponse>, BFFErrorResponse, OrganizationConfig.PutConfigsByAccountRequest>;
|
|
@@ -7,3 +7,4 @@ export declare function useCountRowsForReport(): UseMutationResult<Reports.Count
|
|
|
7
7
|
export declare function useCancelReport(): UseMutationResult<string, unknown>;
|
|
8
8
|
export declare function useCreateReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<Reports.ICreateTemplate>;
|
|
9
9
|
export declare function useUpdateReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<unknown>;
|
|
10
|
+
export declare function useDeleteReportTemplate(): UseMutationResult<unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './subscriptions.mutation';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ListSubscriptionsParams } from '../../api/api.types';
|
|
2
|
+
export declare function useCreateSubscription(): import("@tanstack/react-query").UseMutationResult<any, unknown, any, unknown>;
|
|
3
|
+
export declare function usePauseSubscription(): import("@tanstack/react-query").UseMutationResult<any, unknown, {
|
|
4
|
+
subscriptionCode: string;
|
|
5
|
+
}, unknown>;
|
|
6
|
+
export declare function useResumeSubscription(): import("@tanstack/react-query").UseMutationResult<any, unknown, {
|
|
7
|
+
subscriptionCode: string;
|
|
8
|
+
}, unknown>;
|
|
9
|
+
export declare function useCancelSubscription(): import("@tanstack/react-query").UseMutationResult<any, unknown, {
|
|
10
|
+
subscriptionCode: string;
|
|
11
|
+
}, unknown>;
|
|
12
|
+
export declare function useUpdateSubscription(): import("@tanstack/react-query").UseMutationResult<any, unknown, {
|
|
13
|
+
subscriptionCode: string;
|
|
14
|
+
payload: any;
|
|
15
|
+
}, unknown>;
|
|
16
|
+
export declare function useRescheduleSubscription(): import("@tanstack/react-query").UseMutationResult<any, unknown, {
|
|
17
|
+
subscriptionCode: string;
|
|
18
|
+
}, unknown>;
|
|
19
|
+
export declare function useListSubscriptions(): import("@tanstack/react-query").UseMutationResult<any, unknown, ListSubscriptionsParams, unknown>;
|
|
@@ -9,3 +9,4 @@ export declare function usePostWebhookLogs({ params, }: {
|
|
|
9
9
|
params: Audit.AuditWebhooksParams;
|
|
10
10
|
}): UseQueryResult<Audit.AuditWebhooksResponse, BFFErrorResponse>;
|
|
11
11
|
export declare function useGetApiLogsDetailByPaymentCode(code: string | null | undefined): UseQueryResult<unknown, BFFErrorResponse>;
|
|
12
|
+
export declare function useGetApiLogsByTransactionCode(transactionCode: string | null | undefined, accountCode: string | null | undefined): UseQueryResult<Audit.ApiLogByTransactionCode, BFFErrorResponse>;
|
|
@@ -2,9 +2,11 @@ import { UseMutationResult, UseQueryResult } from '@tanstack/react-query';
|
|
|
2
2
|
import type { Developer, User } from '../../types';
|
|
3
3
|
import { CustomizedApiKeys } from '../../types/customized-api-keys';
|
|
4
4
|
import { AllowedList } from '../../types/allowed-list';
|
|
5
|
-
export declare function useGetCredentials({ password, accountCode, }: {
|
|
5
|
+
export declare function useGetCredentials({ password, accountCode, otp, mfaToken, }: {
|
|
6
6
|
password: string;
|
|
7
7
|
accountCode: string;
|
|
8
|
+
otp?: string;
|
|
9
|
+
mfaToken?: string;
|
|
8
10
|
}): UseQueryResult<Developer.DeveloperCredentials, unknown>;
|
|
9
11
|
export declare function useGetCustomizedApiKeysMembers(): UseQueryResult<User.ICustomizedApiKeysMembers, unknown>;
|
|
10
12
|
export declare function useGetAllowedIps(): UseQueryResult<AllowedList.Response, unknown>;
|
|
@@ -17,6 +17,7 @@ export * from './reconciliations';
|
|
|
17
17
|
export * from './feature-flags';
|
|
18
18
|
export * from './audit';
|
|
19
19
|
export * from './payment-links';
|
|
20
|
+
export * from './subscriptions';
|
|
20
21
|
export * from './firebase';
|
|
21
22
|
export * from './fraud-screening';
|
|
22
23
|
export * from './batch-refunds';
|
|
@@ -29,3 +30,5 @@ export * from './network-tokens';
|
|
|
29
30
|
export * from './smart-recovery';
|
|
30
31
|
export * from './network-tokens';
|
|
31
32
|
export * from './template-reporting';
|
|
33
|
+
export * from './organization-config';
|
|
34
|
+
export * from './recipients';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import { AxiosError } from 'axios';
|
|
3
2
|
import { Connection } from '../../types';
|
|
4
|
-
import {
|
|
5
|
-
export declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.
|
|
3
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
4
|
+
export declare function useGetNetworkTokensOnboardingByOrganization(organizationCode: string): UseQueryResult<Connection.NetworkTokensOnboardingMerchantData, BFFErrorResponse>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './organization-config.query';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { OrganizationConfig } from '../../types';
|
|
3
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
4
|
+
export declare function useGetOrganizationConfigs(): UseQueryResult<OrganizationConfig.GetConfigsResponse, BFFErrorResponse>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -4,3 +4,4 @@ import { Payouts } from '../../types/payouts';
|
|
|
4
4
|
import { AxiosError } from 'axios';
|
|
5
5
|
export declare function usePayoutsList(params: GetPaymentsParams | null): UseQueryResult<Payouts.List | AxiosError>;
|
|
6
6
|
export declare function usePayoutsFilters(enabled?: boolean): UseQueryResult<Payouts.Filters>;
|
|
7
|
+
export declare function useGetPayoutTimeline(payoutCode: string | null, enabled?: boolean): UseQueryResult<Payouts.Timeline | AxiosError>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './recipients.query';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AxiosError } from 'axios';
|
|
2
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
3
|
+
import { Recipients, GetRecipientsParams, GetRecipientByIdParams, GetOnboardingDetailParams, GetOnboardingTimelineParams } from '../../types/recipients';
|
|
4
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
5
|
+
export declare function useGetRecipients(organizationCode: string, params: GetRecipientsParams, enabled?: boolean): UseQueryResult<Recipients.RecipientListResponse, AxiosError<BFFErrorResponse>>;
|
|
6
|
+
export declare function useGetRecipientById(organizationCode: string, params: GetRecipientByIdParams, enabled?: boolean): UseQueryResult<Recipients.RecipientDetail, AxiosError<BFFErrorResponse>>;
|
|
7
|
+
export declare function useGetOnboardingDetail(organizationCode: string, params: GetOnboardingDetailParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingDetail, AxiosError<BFFErrorResponse>>;
|
|
8
|
+
export declare function useGetOnboardingTimeline(organizationCode: string, params: GetOnboardingTimelineParams, enabled?: boolean): UseQueryResult<Recipients.OnboardingTimeline, AxiosError<BFFErrorResponse>>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { ReconciliationInsights } from '../../types';
|
|
3
|
+
export declare function useGetReconciliationInsightsConflictsSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ConflictsSummary, ReconciliationInsights.Error>;
|
|
4
|
+
export declare function useGetReconciliationInsightsNotReconciledAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
|
|
5
|
+
export declare function useGetReconciliationInsightsNotReconciledList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationOverviewList, ReconciliationInsights.Error>;
|
|
6
|
+
export declare function useGetReconciliationInsightsStatusConflictAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
|
|
7
|
+
export declare function useGetReconciliationInsightsStatusConflictList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationOverviewList, ReconciliationInsights.Error>;
|
|
8
|
+
export declare function useGetReconciliationInsightsAmountConflictAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
|
|
9
|
+
export declare function useGetReconciliationInsightsAmountConflictList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationOverviewList, ReconciliationInsights.Error>;
|
|
10
|
+
export declare function useGetReconciliationInsightsConflictDateSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.GenericChartSummary, ReconciliationInsights.Error>;
|
|
11
|
+
export declare function useGetReconciliationInsightsConflictDateAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ConflictDateAggregators, ReconciliationInsights.Error>;
|
|
12
|
+
export declare function useGetReconciliationInsightsConflictDateList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationOverviewList, ReconciliationInsights.Error>;
|
|
13
|
+
export declare function useGetReconciliationInsightsIncorrectFeesSummary({ body, dateFilter, enabled, }: ReconciliationInsights.UseInsightsQueryWithDateFilterProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.GenericChartSummary, ReconciliationInsights.Error>;
|
|
14
|
+
export declare function useGetReconciliationInsightsIncorrectFeesAggregators({ body, dateFilter, enabled, }: ReconciliationInsights.UseInsightsQueryWithDateFilterProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
|
|
15
|
+
export declare function useGetReconciliationInsightsIncorrectFeesList({ body, dateFilter, enabled, }: ReconciliationInsights.UseInsightsQueryWithDateFilterProps<ReconciliationInsights.ListFiltersWithProvider>): UseQueryResult<ReconciliationInsights.SettlementAndFeeList, ReconciliationInsights.Error>;
|
|
16
|
+
export declare function useGetReconciliationInsightsFeesChargedSummary({ body, dateFilter, enabled, }: ReconciliationInsights.UseInsightsQueryWithDateFilterProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ChartWithGraph, ReconciliationInsights.Error>;
|
|
17
|
+
export declare function useGetReconciliationInsightsReconciledSummary({ body, dateFilter, enabled, }: ReconciliationInsights.UseInsightsQueryWithDateFilterProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.GenericChartSummary<ReconciliationInsights.ReconciledSummaryItem>, ReconciliationInsights.Error>;
|
|
18
|
+
export declare function useGetReconciliationInsightsReconciledAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
|
|
19
|
+
export declare function useGetReconciliationInsightsReconciledList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.SettlementAndFeeList, ReconciliationInsights.Error>;
|
|
20
|
+
export declare function useGetReconciliationInsightsNotConfirmSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.GenericChartSummary, ReconciliationInsights.Error>;
|
|
21
|
+
export declare function useGetReconciliationInsightsNotConfirmAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
|
|
22
|
+
export declare function useGetReconciliationInsightsNotConfirmList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.ProcessedTransactionList, ReconciliationInsights.Error>;
|
|
23
|
+
export declare function useGetReconciliationInsightsAmountToBeSettledSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ChartWithGraph, ReconciliationInsights.Error>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './subscriptions.query';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
export declare function useGetSubscriptionByCode(subscriptionCode: string, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
3
|
+
export declare function useGetSubscriptionPayments(subscriptionCode: string, page?: number, size?: number, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
@@ -203,4 +203,18 @@ export declare namespace Audit {
|
|
|
203
203
|
interface AuditWebhooksResendParams {
|
|
204
204
|
codes: string[];
|
|
205
205
|
}
|
|
206
|
+
interface ApiLogByTransactionCode {
|
|
207
|
+
code: string;
|
|
208
|
+
url: string;
|
|
209
|
+
method: string;
|
|
210
|
+
source: string;
|
|
211
|
+
headers: AuditApiJSON;
|
|
212
|
+
request: AuditApiJSON;
|
|
213
|
+
response: AuditApiJSON;
|
|
214
|
+
account_name: string;
|
|
215
|
+
account_code: string;
|
|
216
|
+
status_code: number;
|
|
217
|
+
trace_id: string;
|
|
218
|
+
created_at: string;
|
|
219
|
+
}
|
|
206
220
|
}
|
|
@@ -51,22 +51,30 @@ export declare namespace Connection {
|
|
|
51
51
|
}
|
|
52
52
|
];
|
|
53
53
|
};
|
|
54
|
+
interface NetworkTokensOnboardingMerchantData {
|
|
55
|
+
network_token: NetworkTokensOnboardingData | null;
|
|
56
|
+
account_codes: string[];
|
|
57
|
+
}
|
|
54
58
|
interface NetworkTokensOnboardingData {
|
|
55
|
-
name: string;
|
|
56
|
-
legal_name: string;
|
|
57
|
-
website: string;
|
|
58
|
-
identification_type: string;
|
|
59
|
-
identification_number: string;
|
|
60
|
-
address_line_1: string;
|
|
61
|
-
address_line_2: string;
|
|
62
|
-
city: string;
|
|
63
|
-
state: string;
|
|
64
|
-
country: string;
|
|
65
|
-
zip_code: string;
|
|
66
|
-
phone: string;
|
|
67
|
-
contact_first_name: string;
|
|
68
|
-
contact_last_name: string;
|
|
69
|
-
contact_email: string;
|
|
59
|
+
name: string | null;
|
|
60
|
+
legal_name: string | null;
|
|
61
|
+
website: string | null;
|
|
62
|
+
identification_type: string | null;
|
|
63
|
+
identification_number: string | null;
|
|
64
|
+
address_line_1: string | null;
|
|
65
|
+
address_line_2: string | null;
|
|
66
|
+
city: string | null;
|
|
67
|
+
state: string | null;
|
|
68
|
+
country: string | null;
|
|
69
|
+
zip_code: string | null;
|
|
70
|
+
phone: string | null;
|
|
71
|
+
contact_first_name: string | null;
|
|
72
|
+
contact_last_name: string | null;
|
|
73
|
+
contact_email: string | null;
|
|
74
|
+
merchant_category_code: string | null;
|
|
75
|
+
country_code: string | null;
|
|
76
|
+
}
|
|
77
|
+
interface NetworkTokensOnboardingMerchantRequest extends NetworkTokensOnboardingData {
|
|
70
78
|
account_codes: string[];
|
|
71
79
|
}
|
|
72
80
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare namespace DataReport {
|
|
2
|
-
enum InsightsVolumeMetricsV2Path {
|
|
2
|
+
export enum InsightsVolumeMetricsV2Path {
|
|
3
3
|
REFUNDS_AND_CHARGEBACKS = "refunds-and-chargebacks",
|
|
4
4
|
APPROVED_PAYMENTS = "approved-payments",
|
|
5
5
|
PAYMENT_METHODS = "payment-methods",
|
|
@@ -8,7 +8,7 @@ export declare namespace DataReport {
|
|
|
8
8
|
UNIQUE_CUSTOMER_PAYMENTS = "unique-customer-payments",
|
|
9
9
|
TOTAL_PAYMENTS = "total-payments"
|
|
10
10
|
}
|
|
11
|
-
interface SmartRouting {
|
|
11
|
+
export interface SmartRouting {
|
|
12
12
|
version: string;
|
|
13
13
|
code_integration: string;
|
|
14
14
|
Conditions: {
|
|
@@ -21,31 +21,46 @@ export declare namespace DataReport {
|
|
|
21
21
|
cost: number;
|
|
22
22
|
}[];
|
|
23
23
|
}
|
|
24
|
-
enum OverviewMetricType {
|
|
24
|
+
export enum OverviewMetricType {
|
|
25
25
|
GENERAL = "volume-and-total-payments",
|
|
26
26
|
LATENCY = "provider-latency",
|
|
27
27
|
STATUS = "status",
|
|
28
28
|
SUBSCRIPTIONS = "subscriptions"
|
|
29
29
|
}
|
|
30
|
-
interface
|
|
31
|
-
|
|
30
|
+
interface MetadataField {
|
|
31
|
+
field: string;
|
|
32
|
+
formatType: 'TEXT' | 'NUMBER';
|
|
33
|
+
type: string;
|
|
34
|
+
values: string | string[];
|
|
35
|
+
}
|
|
36
|
+
interface MetadataFieldFilter {
|
|
37
|
+
key: string;
|
|
38
|
+
conditional: string;
|
|
39
|
+
values: string | string[];
|
|
40
|
+
}
|
|
41
|
+
export interface InsightMetricParams {
|
|
42
|
+
[a: string]: string | boolean | number | string[] | MetadataField[] | undefined;
|
|
32
43
|
account_code?: string;
|
|
33
44
|
connection_name?: string;
|
|
45
|
+
metadata?: MetadataField[];
|
|
34
46
|
}
|
|
35
|
-
interface InsightMetricBody {
|
|
47
|
+
export interface InsightMetricBody {
|
|
36
48
|
account_codes?: string[];
|
|
37
49
|
account_code?: string[];
|
|
38
50
|
connection_name?: string[];
|
|
51
|
+
metadata_filters?: MetadataFieldFilter[];
|
|
52
|
+
metadata?: MetadataField[];
|
|
39
53
|
}
|
|
40
|
-
interface InsightExportParams {
|
|
54
|
+
export interface InsightExportParams {
|
|
41
55
|
type?: string;
|
|
42
56
|
code?: string;
|
|
43
57
|
}
|
|
44
|
-
interface InsightsHomeMetrics {
|
|
58
|
+
export interface InsightsHomeMetrics {
|
|
45
59
|
account_codes?: string[];
|
|
46
60
|
organization_code?: string;
|
|
47
61
|
currency_code?: string;
|
|
48
62
|
timezone?: string;
|
|
49
63
|
isLiveMode?: boolean;
|
|
50
64
|
}
|
|
65
|
+
export {};
|
|
51
66
|
}
|
|
@@ -157,6 +157,7 @@ export interface InsightsChargebacksByCardBrand {
|
|
|
157
157
|
card_brand: string;
|
|
158
158
|
total_payments: number;
|
|
159
159
|
total_amount: number;
|
|
160
|
+
total_amount_chargeback: number;
|
|
160
161
|
total_payments_succeeded: number;
|
|
161
162
|
total_chargeback: number;
|
|
162
163
|
chargeback_rate: number;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './organization-config';
|