@yuno-payments/dashboard-api-mfe 0.36.61-CORECM-13617.2 → 0.36.62
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 +3 -19
- package/build/cjs/types/mutations/audit/index.d.ts +0 -1
- package/build/cjs/types/mutations/index.d.ts +0 -1
- package/build/cjs/types/queries/accounts/accounts.query.d.ts +0 -6
- package/build/cjs/types/queries/audit/audit.query.d.ts +0 -6
- package/build/cjs/types/queries/payment-links/payment-links.query.d.ts +0 -1
- package/build/cjs/types/queries/users/users.query.d.ts +3 -2
- package/build/cjs/types/types/audit/audit.d.ts +0 -81
- package/build/cjs/types/types/checkout/styling/styling.d.ts +0 -6
- package/build/cjs/types/types/payment-links/payment-links.d.ts +0 -41
- package/build/cjs/types/types/user/user.d.ts +5 -8
- package/build/esm/index.js +7 -7
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +3 -19
- package/build/esm/types/mutations/audit/index.d.ts +0 -1
- package/build/esm/types/mutations/index.d.ts +0 -1
- package/build/esm/types/queries/accounts/accounts.query.d.ts +0 -6
- package/build/esm/types/queries/audit/audit.query.d.ts +0 -6
- package/build/esm/types/queries/payment-links/payment-links.query.d.ts +0 -1
- package/build/esm/types/queries/users/users.query.d.ts +3 -2
- package/build/esm/types/types/audit/audit.d.ts +0 -81
- package/build/esm/types/types/checkout/styling/styling.d.ts +0 -6
- package/build/esm/types/types/payment-links/payment-links.d.ts +0 -41
- package/build/esm/types/types/user/user.d.ts +5 -8
- package/build/index.d.ts +11 -172
- package/package.json +1 -1
- package/build/cjs/types/mutations/audit/audit-api.mutation.d.ts +0 -5
- package/build/esm/types/mutations/audit/audit-api.mutation.d.ts +0 -5
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
2
2
|
import { HttpClient } from '../lib/http-client';
|
|
3
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,
|
|
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, UserFullResponse } 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';
|
|
@@ -120,15 +120,6 @@ export declare class Api extends HttpClient {
|
|
|
120
120
|
deleteWebhookV2<T>(code: string, accountCode: string): Promise<AxiosResponse<T>>;
|
|
121
121
|
updateWebhookV2<T>(code: string, payload: any, accountCode: string): Promise<AxiosResponse<T>>;
|
|
122
122
|
getMenu<T>(): Promise<AxiosResponse<T>>;
|
|
123
|
-
postWebhookLogs<T>({ payload: { account_code, ...rest }, }: {
|
|
124
|
-
payload: Audit.AuditWebhooksParams;
|
|
125
|
-
}): Promise<AxiosResponse<T>>;
|
|
126
|
-
postResendWebhooks<T>({ codes, }: Audit.AuditWebhooksResendParams): Promise<AxiosResponse<T>>;
|
|
127
|
-
postExportApiLogs<T>(payload: Audit.ExportApiLogsRequest): Promise<AxiosResponse<T>>;
|
|
128
|
-
postApiLogs<T>({ payload: { account_code, ...rest }, }: {
|
|
129
|
-
payload: Audit.AuditApiLogsParams;
|
|
130
|
-
}): Promise<AxiosResponse<T>>;
|
|
131
|
-
getApiLogsDetailByPaymentCode<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
132
123
|
useGetPaymentStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
133
124
|
useGetTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
134
125
|
useGetReconciliationTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
@@ -267,16 +258,10 @@ export declare class Api extends HttpClient {
|
|
|
267
258
|
updateScheduledReport<T>(reportCode: string, payload: IListScheduledReportsResponse): Promise<AxiosResponse<T>>;
|
|
268
259
|
deleteScheduledReport<T>(reportCode: string): Promise<AxiosResponse<T>>;
|
|
269
260
|
getProfile<T>(): Promise<AxiosResponse<T, any>>;
|
|
261
|
+
getUserFull(): Promise<AxiosResponse<UserFullResponse, any>>;
|
|
270
262
|
getImpersonationUsers<T>(): Promise<AxiosResponse<T, any>>;
|
|
271
263
|
getImpersonationEnabled<T>(): Promise<AxiosResponse<T, any>>;
|
|
272
|
-
getUsersToImpersonate(organizationCode: string
|
|
273
|
-
getAccountsForImpersonation(organizationCode: string): Promise<AxiosResponse<{
|
|
274
|
-
response: Array<{
|
|
275
|
-
name: string;
|
|
276
|
-
code_live: string;
|
|
277
|
-
code_testing: string;
|
|
278
|
-
}>;
|
|
279
|
-
}>>;
|
|
264
|
+
getUsersToImpersonate(organizationCode: string): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
|
|
280
265
|
updateProfile<T>(payload: User.UserRequestPayload): Promise<AxiosResponse<T>>;
|
|
281
266
|
inviteUsersMassive<T>(data: UserInviteMultiaccountPayload, organizationCode: string): Promise<AxiosResponse<T>>;
|
|
282
267
|
unInviteUsersV2<T>({ userCode, organizationCode, }: {
|
|
@@ -357,7 +342,6 @@ export declare class Api extends HttpClient {
|
|
|
357
342
|
code: any;
|
|
358
343
|
}): Promise<AxiosResponse<T, any>>;
|
|
359
344
|
getTimezone<T>(organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
360
|
-
getInstallmentPlans(accountCode: string): Promise<AxiosResponse<GetInstallmentPlansResponse>>;
|
|
361
345
|
firebaseUserSubscribe<T>(payload: FirebaseUserSubscribe): Promise<AxiosResponse<T>>;
|
|
362
346
|
postUserSettings<T>(payload: TimeZoneCatalog | PaymentsSettings): Promise<AxiosResponse<T>>;
|
|
363
347
|
postUserSettingsTables<T>(payload: PaymentsSettings, section: string): Promise<AxiosResponse<T>>;
|
|
@@ -21,7 +21,6 @@ export * from './scheduled-reports';
|
|
|
21
21
|
export * from './velocity-rules';
|
|
22
22
|
export * from './developers';
|
|
23
23
|
export * from './audit';
|
|
24
|
-
export * from './audit/audit-api.mutation';
|
|
25
24
|
export * from './reconciliations';
|
|
26
25
|
export * from './insights';
|
|
27
26
|
export * from './saml-config';
|
|
@@ -16,9 +16,3 @@ export declare function useGetAccountsByUser(userCode: string): UseQueryResult<{
|
|
|
16
16
|
accountsV2ByUser: Organization.Account[];
|
|
17
17
|
error?: AxiosError;
|
|
18
18
|
}, unknown>;
|
|
19
|
-
export declare function useGetAccountsForImpersonation(organizationCode?: string, isTesting?: boolean): UseQueryResult<Array<{
|
|
20
|
-
label: string;
|
|
21
|
-
value: string;
|
|
22
|
-
code_live: string;
|
|
23
|
-
code_testing: string;
|
|
24
|
-
}>, unknown>;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
2
|
import { AxiosError } from 'axios';
|
|
3
3
|
import type { Audit } from '../../types';
|
|
4
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
5
4
|
export declare function useGetAuditEvents(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
6
5
|
export declare function useGetAuditMonitorEventDetail(id: number | null): UseQueryResult<Audit.AuditMonitorDetail, AxiosError>;
|
|
7
|
-
export declare function usePostApiLogs(params: Audit.AuditApiLogsParams): UseQueryResult<Audit.AuditApiLogsResponse, BFFErrorResponse>;
|
|
8
|
-
export declare function usePostWebhookLogs({ params, }: {
|
|
9
|
-
params: Audit.AuditWebhooksParams;
|
|
10
|
-
}): UseQueryResult<Audit.AuditWebhooksResponse, BFFErrorResponse>;
|
|
11
|
-
export declare function useGetApiLogsDetailByPaymentCode(code: string | null | undefined): UseQueryResult<unknown, BFFErrorResponse>;
|
|
@@ -5,4 +5,3 @@ export declare function useGetPaymentLinkByCode(paymentLinkCode: any): UseQueryR
|
|
|
5
5
|
export declare function useGetCountriesConfigPaymentLink(enabled?: boolean): UseQueryResult<PaymentLinks.GetCountriesConfig, unknown>;
|
|
6
6
|
export declare function useGetCountriesConfigPaymentLinkV2(acceptLanguage?: string): UseQueryResult<PaymentLinks.GetCountriesConfig, unknown>;
|
|
7
7
|
export declare function useGetTimezonePaymentLink(organizationCode: string): UseQueryResult<any, unknown>;
|
|
8
|
-
export declare function useGetInstallmentPlans(accountCode: string): UseQueryResult<import("../../types").GetInstallmentPlansResponse, unknown>;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
2
|
import { AxiosError } from 'axios';
|
|
3
|
-
import { Accounts, User, AI } from '../../types';
|
|
3
|
+
import { Accounts, User, AI, UserFullResponse } from '../../types';
|
|
4
4
|
export declare function useGetProfile(): UseQueryResult<User.UserResponsePayload, unknown>;
|
|
5
|
+
export declare function useUserFull(): UseQueryResult<UserFullResponse, unknown>;
|
|
5
6
|
export declare function useGetPermissions(organizationCode: any, accountCode: any): UseQueryResult<Accounts.PermissionsResponse[], unknown>;
|
|
6
7
|
export declare function useEmailVerification(email: string): UseQueryResult<User.UserResponseEmailVerification | string, unknown>;
|
|
7
8
|
export declare function useGetLoginMethods(): UseQueryResult<unknown, unknown>;
|
|
8
9
|
export declare function useGetImpersonationUsers(): UseQueryResult<User.ImpersonationUser[], AxiosError>;
|
|
9
10
|
export declare function useGetImpersonationEnabled(): UseQueryResult<User.ImpersonationEnabledResponse, AxiosError>;
|
|
10
|
-
export declare function useGetUsersToImpersonate(organizationCode: string
|
|
11
|
+
export declare function useGetUsersToImpersonate(organizationCode: string): UseQueryResult<User.UsersToImpersonateUser[], AxiosError>;
|
|
11
12
|
export declare function useCommunications(payload: {
|
|
12
13
|
start_date: string;
|
|
13
14
|
end_date: string;
|
|
@@ -107,85 +107,4 @@ export declare namespace Audit {
|
|
|
107
107
|
type: string;
|
|
108
108
|
percentage: number;
|
|
109
109
|
}
|
|
110
|
-
interface ExportApiLogsRequest {
|
|
111
|
-
report_name: string;
|
|
112
|
-
account_code: string[];
|
|
113
|
-
start_date: string;
|
|
114
|
-
end_date: string;
|
|
115
|
-
time_zone: string;
|
|
116
|
-
method?: string[];
|
|
117
|
-
organizationCode?: string;
|
|
118
|
-
}
|
|
119
|
-
interface AuditApiJSON {
|
|
120
|
-
[key: string]: string;
|
|
121
|
-
}
|
|
122
|
-
interface AuditApiLogs {
|
|
123
|
-
code: string;
|
|
124
|
-
url: string;
|
|
125
|
-
method: string;
|
|
126
|
-
source: string;
|
|
127
|
-
headers: AuditApiJSON;
|
|
128
|
-
request: AuditApiJSON;
|
|
129
|
-
response: AuditApiJSON;
|
|
130
|
-
account_name: string;
|
|
131
|
-
account_code: string;
|
|
132
|
-
status_code: number;
|
|
133
|
-
trace_id: string;
|
|
134
|
-
created_at: string;
|
|
135
|
-
}
|
|
136
|
-
interface AuditApiLogsResponse {
|
|
137
|
-
data: AuditApiLogs[];
|
|
138
|
-
page: number;
|
|
139
|
-
size: number;
|
|
140
|
-
total_rows: number;
|
|
141
|
-
total_pages: number;
|
|
142
|
-
}
|
|
143
|
-
interface AuditApiLogsParams {
|
|
144
|
-
page: number;
|
|
145
|
-
size: number;
|
|
146
|
-
periodicity?: string;
|
|
147
|
-
account_code?: string[];
|
|
148
|
-
organizationCode?: string;
|
|
149
|
-
status_codes?: string[];
|
|
150
|
-
methods?: string[];
|
|
151
|
-
}
|
|
152
|
-
interface AuditWebhooksParams {
|
|
153
|
-
page: number;
|
|
154
|
-
size: number;
|
|
155
|
-
organizationCode?: string;
|
|
156
|
-
periodicity?: string;
|
|
157
|
-
account_code?: string[];
|
|
158
|
-
status_codes?: string[];
|
|
159
|
-
methods?: string[];
|
|
160
|
-
}
|
|
161
|
-
interface AuditWebhooks {
|
|
162
|
-
id: number;
|
|
163
|
-
organization_code: string;
|
|
164
|
-
account_code: string;
|
|
165
|
-
type: string;
|
|
166
|
-
created_at: string;
|
|
167
|
-
updated_at: string;
|
|
168
|
-
time: number;
|
|
169
|
-
http_method: string;
|
|
170
|
-
url: string;
|
|
171
|
-
request: string;
|
|
172
|
-
response: string;
|
|
173
|
-
response_status: number;
|
|
174
|
-
connect_timeout: number;
|
|
175
|
-
read_timeout: number;
|
|
176
|
-
exception: string;
|
|
177
|
-
headers: string;
|
|
178
|
-
trace_id: string;
|
|
179
|
-
origin_id: string;
|
|
180
|
-
}
|
|
181
|
-
interface AuditWebhooksResponse {
|
|
182
|
-
data: AuditWebhooks[];
|
|
183
|
-
page: number;
|
|
184
|
-
size: number;
|
|
185
|
-
total_rows: number;
|
|
186
|
-
total_pages: number;
|
|
187
|
-
}
|
|
188
|
-
interface AuditWebhooksResendParams {
|
|
189
|
-
codes: string[];
|
|
190
|
-
}
|
|
191
110
|
}
|
|
@@ -117,12 +117,6 @@ export declare namespace StylingSettings {
|
|
|
117
117
|
condensed_checkout_view?: boolean;
|
|
118
118
|
edit_payment_method_list?: boolean;
|
|
119
119
|
};
|
|
120
|
-
ui?: {
|
|
121
|
-
dark_mode?: boolean;
|
|
122
|
-
};
|
|
123
|
-
};
|
|
124
|
-
flags?: {
|
|
125
|
-
force_default_styles?: boolean;
|
|
126
120
|
};
|
|
127
121
|
}
|
|
128
122
|
interface UpdateSettingsResponse extends UpdateSettings {
|
|
@@ -13,44 +13,3 @@ export declare namespace PaymentLinks {
|
|
|
13
13
|
countries: DataCountries[];
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
export interface InstallmentAmount {
|
|
17
|
-
currency: string;
|
|
18
|
-
value: string;
|
|
19
|
-
total_value: string;
|
|
20
|
-
}
|
|
21
|
-
export interface InstallmentPlanItem {
|
|
22
|
-
id: string;
|
|
23
|
-
installment: number;
|
|
24
|
-
rate: number | null;
|
|
25
|
-
provider_id: string;
|
|
26
|
-
amount?: {
|
|
27
|
-
currency: string;
|
|
28
|
-
value: string;
|
|
29
|
-
total_value: string;
|
|
30
|
-
};
|
|
31
|
-
type?: string;
|
|
32
|
-
}
|
|
33
|
-
export interface PlanAmount {
|
|
34
|
-
currency: string;
|
|
35
|
-
min_value: string;
|
|
36
|
-
max_value: string;
|
|
37
|
-
}
|
|
38
|
-
export interface Availability {
|
|
39
|
-
start_at: string;
|
|
40
|
-
finish_at: string;
|
|
41
|
-
}
|
|
42
|
-
export interface InstallmentPlan {
|
|
43
|
-
id: string;
|
|
44
|
-
code: string;
|
|
45
|
-
name: string;
|
|
46
|
-
account_id: string[];
|
|
47
|
-
merchant_reference: string;
|
|
48
|
-
installments_plan: InstallmentPlanItem[];
|
|
49
|
-
country_code: string;
|
|
50
|
-
amount: PlanAmount;
|
|
51
|
-
availability: Availability;
|
|
52
|
-
types_list?: string[];
|
|
53
|
-
created_at?: string;
|
|
54
|
-
updated_at?: string;
|
|
55
|
-
}
|
|
56
|
-
export type GetInstallmentPlansResponse = InstallmentPlan[];
|
|
@@ -153,16 +153,13 @@ export declare namespace User {
|
|
|
153
153
|
first_name: string;
|
|
154
154
|
last_name: string;
|
|
155
155
|
email: string;
|
|
156
|
-
account_code: string;
|
|
157
|
-
account_code_live: string;
|
|
158
|
-
account_code_testing: string;
|
|
159
|
-
account_name: string;
|
|
160
|
-
role: {
|
|
161
|
-
id: string;
|
|
162
|
-
name: string;
|
|
163
|
-
};
|
|
164
156
|
}
|
|
165
157
|
interface UsersToImpersonateResponse {
|
|
166
158
|
users: UsersToImpersonateUser[];
|
|
167
159
|
}
|
|
168
160
|
}
|
|
161
|
+
export interface UserFullResponse {
|
|
162
|
+
user: User.UserResponsePayload;
|
|
163
|
+
organization: Organization.Organization;
|
|
164
|
+
accounts_user: Organization.Account[];
|
|
165
|
+
}
|
package/build/index.d.ts
CHANGED
|
@@ -1441,19 +1441,16 @@ declare namespace User {
|
|
|
1441
1441
|
first_name: string;
|
|
1442
1442
|
last_name: string;
|
|
1443
1443
|
email: string;
|
|
1444
|
-
account_code: string;
|
|
1445
|
-
account_code_live: string;
|
|
1446
|
-
account_code_testing: string;
|
|
1447
|
-
account_name: string;
|
|
1448
|
-
role: {
|
|
1449
|
-
id: string;
|
|
1450
|
-
name: string;
|
|
1451
|
-
};
|
|
1452
1444
|
}
|
|
1453
1445
|
interface UsersToImpersonateResponse {
|
|
1454
1446
|
users: UsersToImpersonateUser[];
|
|
1455
1447
|
}
|
|
1456
1448
|
}
|
|
1449
|
+
interface UserFullResponse {
|
|
1450
|
+
user: User.UserResponsePayload;
|
|
1451
|
+
organization: Organization.Organization;
|
|
1452
|
+
accounts_user: Organization.Account[];
|
|
1453
|
+
}
|
|
1457
1454
|
|
|
1458
1455
|
declare namespace Country {
|
|
1459
1456
|
enum CountryCode {
|
|
@@ -3630,87 +3627,6 @@ declare namespace Audit {
|
|
|
3630
3627
|
type: string;
|
|
3631
3628
|
percentage: number;
|
|
3632
3629
|
}
|
|
3633
|
-
interface ExportApiLogsRequest {
|
|
3634
|
-
report_name: string;
|
|
3635
|
-
account_code: string[];
|
|
3636
|
-
start_date: string;
|
|
3637
|
-
end_date: string;
|
|
3638
|
-
time_zone: string;
|
|
3639
|
-
method?: string[];
|
|
3640
|
-
organizationCode?: string;
|
|
3641
|
-
}
|
|
3642
|
-
interface AuditApiJSON {
|
|
3643
|
-
[key: string]: string;
|
|
3644
|
-
}
|
|
3645
|
-
interface AuditApiLogs {
|
|
3646
|
-
code: string;
|
|
3647
|
-
url: string;
|
|
3648
|
-
method: string;
|
|
3649
|
-
source: string;
|
|
3650
|
-
headers: AuditApiJSON;
|
|
3651
|
-
request: AuditApiJSON;
|
|
3652
|
-
response: AuditApiJSON;
|
|
3653
|
-
account_name: string;
|
|
3654
|
-
account_code: string;
|
|
3655
|
-
status_code: number;
|
|
3656
|
-
trace_id: string;
|
|
3657
|
-
created_at: string;
|
|
3658
|
-
}
|
|
3659
|
-
interface AuditApiLogsResponse {
|
|
3660
|
-
data: AuditApiLogs[];
|
|
3661
|
-
page: number;
|
|
3662
|
-
size: number;
|
|
3663
|
-
total_rows: number;
|
|
3664
|
-
total_pages: number;
|
|
3665
|
-
}
|
|
3666
|
-
interface AuditApiLogsParams {
|
|
3667
|
-
page: number;
|
|
3668
|
-
size: number;
|
|
3669
|
-
periodicity?: string;
|
|
3670
|
-
account_code?: string[];
|
|
3671
|
-
organizationCode?: string;
|
|
3672
|
-
status_codes?: string[];
|
|
3673
|
-
methods?: string[];
|
|
3674
|
-
}
|
|
3675
|
-
interface AuditWebhooksParams {
|
|
3676
|
-
page: number;
|
|
3677
|
-
size: number;
|
|
3678
|
-
organizationCode?: string;
|
|
3679
|
-
periodicity?: string;
|
|
3680
|
-
account_code?: string[];
|
|
3681
|
-
status_codes?: string[];
|
|
3682
|
-
methods?: string[];
|
|
3683
|
-
}
|
|
3684
|
-
interface AuditWebhooks {
|
|
3685
|
-
id: number;
|
|
3686
|
-
organization_code: string;
|
|
3687
|
-
account_code: string;
|
|
3688
|
-
type: string;
|
|
3689
|
-
created_at: string;
|
|
3690
|
-
updated_at: string;
|
|
3691
|
-
time: number;
|
|
3692
|
-
http_method: string;
|
|
3693
|
-
url: string;
|
|
3694
|
-
request: string;
|
|
3695
|
-
response: string;
|
|
3696
|
-
response_status: number;
|
|
3697
|
-
connect_timeout: number;
|
|
3698
|
-
read_timeout: number;
|
|
3699
|
-
exception: string;
|
|
3700
|
-
headers: string;
|
|
3701
|
-
trace_id: string;
|
|
3702
|
-
origin_id: string;
|
|
3703
|
-
}
|
|
3704
|
-
interface AuditWebhooksResponse {
|
|
3705
|
-
data: AuditWebhooks[];
|
|
3706
|
-
page: number;
|
|
3707
|
-
size: number;
|
|
3708
|
-
total_rows: number;
|
|
3709
|
-
total_pages: number;
|
|
3710
|
-
}
|
|
3711
|
-
interface AuditWebhooksResendParams {
|
|
3712
|
-
codes: string[];
|
|
3713
|
-
}
|
|
3714
3630
|
}
|
|
3715
3631
|
|
|
3716
3632
|
declare namespace PaymentLinks {
|
|
@@ -3728,47 +3644,6 @@ declare namespace PaymentLinks {
|
|
|
3728
3644
|
countries: DataCountries[];
|
|
3729
3645
|
}
|
|
3730
3646
|
}
|
|
3731
|
-
interface InstallmentAmount {
|
|
3732
|
-
currency: string;
|
|
3733
|
-
value: string;
|
|
3734
|
-
total_value: string;
|
|
3735
|
-
}
|
|
3736
|
-
interface InstallmentPlanItem {
|
|
3737
|
-
id: string;
|
|
3738
|
-
installment: number;
|
|
3739
|
-
rate: number | null;
|
|
3740
|
-
provider_id: string;
|
|
3741
|
-
amount?: {
|
|
3742
|
-
currency: string;
|
|
3743
|
-
value: string;
|
|
3744
|
-
total_value: string;
|
|
3745
|
-
};
|
|
3746
|
-
type?: string;
|
|
3747
|
-
}
|
|
3748
|
-
interface PlanAmount {
|
|
3749
|
-
currency: string;
|
|
3750
|
-
min_value: string;
|
|
3751
|
-
max_value: string;
|
|
3752
|
-
}
|
|
3753
|
-
interface Availability {
|
|
3754
|
-
start_at: string;
|
|
3755
|
-
finish_at: string;
|
|
3756
|
-
}
|
|
3757
|
-
interface InstallmentPlan {
|
|
3758
|
-
id: string;
|
|
3759
|
-
code: string;
|
|
3760
|
-
name: string;
|
|
3761
|
-
account_id: string[];
|
|
3762
|
-
merchant_reference: string;
|
|
3763
|
-
installments_plan: InstallmentPlanItem[];
|
|
3764
|
-
country_code: string;
|
|
3765
|
-
amount: PlanAmount;
|
|
3766
|
-
availability: Availability;
|
|
3767
|
-
types_list?: string[];
|
|
3768
|
-
created_at?: string;
|
|
3769
|
-
updated_at?: string;
|
|
3770
|
-
}
|
|
3771
|
-
type GetInstallmentPlansResponse = InstallmentPlan[];
|
|
3772
3647
|
|
|
3773
3648
|
declare namespace SamlConfig {
|
|
3774
3649
|
interface SamlConfigResponse {
|
|
@@ -4169,12 +4044,6 @@ declare namespace StylingSettings {
|
|
|
4169
4044
|
condensed_checkout_view?: boolean;
|
|
4170
4045
|
edit_payment_method_list?: boolean;
|
|
4171
4046
|
};
|
|
4172
|
-
ui?: {
|
|
4173
|
-
dark_mode?: boolean;
|
|
4174
|
-
};
|
|
4175
|
-
};
|
|
4176
|
-
flags?: {
|
|
4177
|
-
force_default_styles?: boolean;
|
|
4178
4047
|
};
|
|
4179
4048
|
}
|
|
4180
4049
|
interface UpdateSettingsResponse extends UpdateSettings {
|
|
@@ -4541,9 +4410,6 @@ declare function usePostAuditMonitors({ onMutate }: {
|
|
|
4541
4410
|
payload: Audit.AuditMonitorsParams;
|
|
4542
4411
|
}, unknown>;
|
|
4543
4412
|
|
|
4544
|
-
declare function useResendWebhooks(): UseMutationResult<void, BFFErrorResponse, Audit.AuditWebhooksResendParams>;
|
|
4545
|
-
declare function useExportApiLogs(): UseMutationResult<Reports.ICreateReportsResponse, BFFErrorResponse, Audit.ExportApiLogsRequest>;
|
|
4546
|
-
|
|
4547
4413
|
declare function useCreateReconciliationReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<Reconciliation.Template, Reconciliation.Error>;
|
|
4548
4414
|
declare function useUpdateReconciliationReportTemplate(payload: Reports.ICreateTemplate): UseMutationResult<unknown, Reconciliation.Error>;
|
|
4549
4415
|
|
|
@@ -4710,12 +4576,6 @@ declare function useGetAccountsByUser(userCode: string): UseQueryResult<{
|
|
|
4710
4576
|
accountsV2ByUser: Organization.Account[];
|
|
4711
4577
|
error?: AxiosError;
|
|
4712
4578
|
}, unknown>;
|
|
4713
|
-
declare function useGetAccountsForImpersonation(organizationCode?: string, isTesting?: boolean): UseQueryResult<Array<{
|
|
4714
|
-
label: string;
|
|
4715
|
-
value: string;
|
|
4716
|
-
code_live: string;
|
|
4717
|
-
code_testing: string;
|
|
4718
|
-
}>, unknown>;
|
|
4719
4579
|
|
|
4720
4580
|
declare function useGetMenu(): UseQueryResult<Cms.Menu, unknown>;
|
|
4721
4581
|
declare function useGetPaymentStatusesStyles(): UseQueryResult<Array<Cms.StatusStyle>, unknown>;
|
|
@@ -4798,12 +4658,13 @@ declare function useChangeStylingSettings(): _tanstack_react_query.UseMutationRe
|
|
|
4798
4658
|
}, unknown>;
|
|
4799
4659
|
|
|
4800
4660
|
declare function useGetProfile(): UseQueryResult<User.UserResponsePayload, unknown>;
|
|
4661
|
+
declare function useUserFull(): UseQueryResult<UserFullResponse, unknown>;
|
|
4801
4662
|
declare function useGetPermissions(organizationCode: any, accountCode: any): UseQueryResult<Accounts.PermissionsResponse[], unknown>;
|
|
4802
4663
|
declare function useEmailVerification(email: string): UseQueryResult<User.UserResponseEmailVerification | string, unknown>;
|
|
4803
4664
|
declare function useGetLoginMethods(): UseQueryResult<unknown, unknown>;
|
|
4804
4665
|
declare function useGetImpersonationUsers(): UseQueryResult<User.ImpersonationUser[], AxiosError>;
|
|
4805
4666
|
declare function useGetImpersonationEnabled(): UseQueryResult<User.ImpersonationEnabledResponse, AxiosError>;
|
|
4806
|
-
declare function useGetUsersToImpersonate(organizationCode: string
|
|
4667
|
+
declare function useGetUsersToImpersonate(organizationCode: string): UseQueryResult<User.UsersToImpersonateUser[], AxiosError>;
|
|
4807
4668
|
declare function useCommunications(payload: {
|
|
4808
4669
|
start_date: string;
|
|
4809
4670
|
end_date: string;
|
|
@@ -4951,18 +4812,12 @@ declare function useCachedFeatureFlag(name: string): UseQueryResult<FeatureFlags
|
|
|
4951
4812
|
|
|
4952
4813
|
declare function useGetAuditEvents(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
4953
4814
|
declare function useGetAuditMonitorEventDetail(id: number | null): UseQueryResult<Audit.AuditMonitorDetail, AxiosError>;
|
|
4954
|
-
declare function usePostApiLogs(params: Audit.AuditApiLogsParams): UseQueryResult<Audit.AuditApiLogsResponse, BFFErrorResponse>;
|
|
4955
|
-
declare function usePostWebhookLogs({ params, }: {
|
|
4956
|
-
params: Audit.AuditWebhooksParams;
|
|
4957
|
-
}): UseQueryResult<Audit.AuditWebhooksResponse, BFFErrorResponse>;
|
|
4958
|
-
declare function useGetApiLogsDetailByPaymentCode(code: string | null | undefined): UseQueryResult<unknown, BFFErrorResponse>;
|
|
4959
4815
|
|
|
4960
4816
|
declare function useGetPaymentLinks(params: any, accountCode: any): UseQueryResult<any, unknown>;
|
|
4961
4817
|
declare function useGetPaymentLinkByCode(paymentLinkCode: any): UseQueryResult<any, unknown>;
|
|
4962
4818
|
declare function useGetCountriesConfigPaymentLink(enabled?: boolean): UseQueryResult<PaymentLinks.GetCountriesConfig, unknown>;
|
|
4963
4819
|
declare function useGetCountriesConfigPaymentLinkV2(acceptLanguage?: string): UseQueryResult<PaymentLinks.GetCountriesConfig, unknown>;
|
|
4964
4820
|
declare function useGetTimezonePaymentLink(organizationCode: string): UseQueryResult<any, unknown>;
|
|
4965
|
-
declare function useGetInstallmentPlans(accountCode: string): UseQueryResult<GetInstallmentPlansResponse, unknown>;
|
|
4966
4821
|
|
|
4967
4822
|
declare function useFirebaseUserSubscribe({ onSuccessCallback, }: {
|
|
4968
4823
|
onSuccessCallback?: (data: any) => void;
|
|
@@ -5190,15 +5045,6 @@ declare class Api extends HttpClient {
|
|
|
5190
5045
|
deleteWebhookV2<T>(code: string, accountCode: string): Promise<AxiosResponse<T>>;
|
|
5191
5046
|
updateWebhookV2<T>(code: string, payload: any, accountCode: string): Promise<AxiosResponse<T>>;
|
|
5192
5047
|
getMenu<T>(): Promise<AxiosResponse<T>>;
|
|
5193
|
-
postWebhookLogs<T>({ payload: { account_code, ...rest }, }: {
|
|
5194
|
-
payload: Audit.AuditWebhooksParams;
|
|
5195
|
-
}): Promise<AxiosResponse<T>>;
|
|
5196
|
-
postResendWebhooks<T>({ codes, }: Audit.AuditWebhooksResendParams): Promise<AxiosResponse<T>>;
|
|
5197
|
-
postExportApiLogs<T>(payload: Audit.ExportApiLogsRequest): Promise<AxiosResponse<T>>;
|
|
5198
|
-
postApiLogs<T>({ payload: { account_code, ...rest }, }: {
|
|
5199
|
-
payload: Audit.AuditApiLogsParams;
|
|
5200
|
-
}): Promise<AxiosResponse<T>>;
|
|
5201
|
-
getApiLogsDetailByPaymentCode<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
5202
5048
|
useGetPaymentStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
5203
5049
|
useGetTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
5204
5050
|
useGetReconciliationTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
|
|
@@ -5337,16 +5183,10 @@ declare class Api extends HttpClient {
|
|
|
5337
5183
|
updateScheduledReport<T>(reportCode: string, payload: IListScheduledReportsResponse): Promise<AxiosResponse<T>>;
|
|
5338
5184
|
deleteScheduledReport<T>(reportCode: string): Promise<AxiosResponse<T>>;
|
|
5339
5185
|
getProfile<T>(): Promise<AxiosResponse<T, any>>;
|
|
5186
|
+
getUserFull(): Promise<AxiosResponse<UserFullResponse, any>>;
|
|
5340
5187
|
getImpersonationUsers<T>(): Promise<AxiosResponse<T, any>>;
|
|
5341
5188
|
getImpersonationEnabled<T>(): Promise<AxiosResponse<T, any>>;
|
|
5342
|
-
getUsersToImpersonate(organizationCode: string
|
|
5343
|
-
getAccountsForImpersonation(organizationCode: string): Promise<AxiosResponse<{
|
|
5344
|
-
response: Array<{
|
|
5345
|
-
name: string;
|
|
5346
|
-
code_live: string;
|
|
5347
|
-
code_testing: string;
|
|
5348
|
-
}>;
|
|
5349
|
-
}>>;
|
|
5189
|
+
getUsersToImpersonate(organizationCode: string): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
|
|
5350
5190
|
updateProfile<T>(payload: User.UserRequestPayload): Promise<AxiosResponse<T>>;
|
|
5351
5191
|
inviteUsersMassive<T>(data: UserInviteMultiaccountPayload, organizationCode: string): Promise<AxiosResponse<T>>;
|
|
5352
5192
|
unInviteUsersV2<T>({ userCode, organizationCode, }: {
|
|
@@ -5427,7 +5267,6 @@ declare class Api extends HttpClient {
|
|
|
5427
5267
|
code: any;
|
|
5428
5268
|
}): Promise<AxiosResponse<T, any>>;
|
|
5429
5269
|
getTimezone<T>(organizationCode: string): Promise<AxiosResponse<T, any>>;
|
|
5430
|
-
getInstallmentPlans(accountCode: string): Promise<AxiosResponse<GetInstallmentPlansResponse>>;
|
|
5431
5270
|
firebaseUserSubscribe<T>(payload: FirebaseUserSubscribe): Promise<AxiosResponse<T>>;
|
|
5432
5271
|
postUserSettings<T>(payload: TimeZoneCatalog | PaymentsSettings): Promise<AxiosResponse<T>>;
|
|
5433
5272
|
postUserSettingsTables<T>(payload: PaymentsSettings, section: string): Promise<AxiosResponse<T>>;
|
|
@@ -5614,5 +5453,5 @@ declare enum ApiErrorCodes {
|
|
|
5614
5453
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
5615
5454
|
}
|
|
5616
5455
|
|
|
5617
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChargebacksUpload, useChartExecute, useCommunicationDetails, useCommunications, useCommunicationsFilters, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers,
|
|
5618
|
-
export type { AccountRoles, AllowlistMultiAccount,
|
|
5456
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChargebacksUpload, useChartExecute, useCommunicationDetails, useCommunications, useCommunicationsFilters, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettings, useGetStylingSettingsV2, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookMultiAccount, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useSaveVersion, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useUserFull, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
5457
|
+
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FirebaseUserSubscribe, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, GetApiLogsParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, IChangePassword, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserFullResponse, UserInviteMultiaccountPayload };
|
package/package.json
CHANGED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
-
import { Audit, Reports } from '../../types';
|
|
3
|
-
import { BFFErrorResponse } from '../smart-routing';
|
|
4
|
-
export declare function useResendWebhooks(): UseMutationResult<void, BFFErrorResponse, Audit.AuditWebhooksResendParams>;
|
|
5
|
-
export declare function useExportApiLogs(): UseMutationResult<Reports.ICreateReportsResponse, BFFErrorResponse, Audit.ExportApiLogsRequest>;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
-
import { Audit, Reports } from '../../types';
|
|
3
|
-
import { BFFErrorResponse } from '../smart-routing';
|
|
4
|
-
export declare function useResendWebhooks(): UseMutationResult<void, BFFErrorResponse, Audit.AuditWebhooksResendParams>;
|
|
5
|
-
export declare function useExportApiLogs(): UseMutationResult<Reports.ICreateReportsResponse, BFFErrorResponse, Audit.ExportApiLogsRequest>;
|