@yuno-payments/dashboard-api-mfe 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +0 -6
- package/build/cjs/types/mutations/audit/audit-api.mutation.d.ts +0 -3
- package/build/cjs/types/queries/audit/audit.query.d.ts +3 -1
- package/build/cjs/types/queries/index.d.ts +0 -2
- package/build/cjs/types/types/audit/audit.d.ts +0 -84
- package/build/esm/index.js +5 -5
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +0 -6
- package/build/esm/types/mutations/audit/audit-api.mutation.d.ts +0 -3
- package/build/esm/types/queries/audit/audit.query.d.ts +3 -1
- package/build/esm/types/queries/index.d.ts +0 -2
- package/build/esm/types/types/audit/audit.d.ts +0 -84
- package/build/index.d.ts +5 -108
- package/package.json +1 -1
- package/build/cjs/types/msw/handlers/api-logs.d.ts +0 -1
- package/build/cjs/types/msw/handlers/webhooks.d.ts +0 -1
- package/build/cjs/types/msw/mocks/api-logs/api-logs-v3.mock.d.ts +0 -2
- package/build/cjs/types/msw/mocks/webhooks/webhook-timeline.mock.d.ts +0 -2
- package/build/cjs/types/queries/api-logs/api-logs-v3.query.d.ts +0 -9
- package/build/cjs/types/queries/api-logs/index.d.ts +0 -1
- package/build/cjs/types/queries/webhooks/index.d.ts +0 -1
- package/build/cjs/types/queries/webhooks/webhook-timeline.query.d.ts +0 -9
- package/build/esm/types/msw/handlers/api-logs.d.ts +0 -1
- package/build/esm/types/msw/handlers/webhooks.d.ts +0 -1
- package/build/esm/types/msw/mocks/api-logs/api-logs-v3.mock.d.ts +0 -2
- package/build/esm/types/msw/mocks/webhooks/webhook-timeline.mock.d.ts +0 -2
- package/build/esm/types/queries/api-logs/api-logs-v3.query.d.ts +0 -9
- package/build/esm/types/queries/api-logs/index.d.ts +0 -1
- package/build/esm/types/queries/webhooks/index.d.ts +0 -1
- package/build/esm/types/queries/webhooks/webhook-timeline.query.d.ts +0 -9
|
@@ -164,11 +164,6 @@ export declare class Api extends HttpClient {
|
|
|
164
164
|
payload: Audit.AuditWebhooksParams;
|
|
165
165
|
}): Promise<AxiosResponse<T>>;
|
|
166
166
|
postResendWebhooks<T>({ codes, }: Audit.AuditWebhooksResendParams): Promise<AxiosResponse<T>>;
|
|
167
|
-
postExportWebhooksLogs<T>(payload: Audit.ExportWebhooksLogsRequest): Promise<AxiosResponse<T>>;
|
|
168
|
-
getApiLogsV3<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
169
|
-
getWebhookTimeline<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
170
|
-
postExportDashboardLogs<T>(payload: Audit.ExportDashboardLogsRequest): Promise<AxiosResponse<T>>;
|
|
171
|
-
postExportMonitorsLogs<T>(payload: Audit.ExportMonitorsLogsRequest): Promise<AxiosResponse<T>>;
|
|
172
167
|
getAuditExportsList<T>(reportType: Audit.AuditExportReportType): Promise<AxiosResponse<T>>;
|
|
173
168
|
getAuditExportDownload<T>(reportId: string): Promise<AxiosResponse<T>>;
|
|
174
169
|
private getUnifiedExportsPath;
|
|
@@ -178,7 +173,6 @@ export declare class Api extends HttpClient {
|
|
|
178
173
|
postApiLogsStatsRequests<T>(payload: Audit.ApiLogsStatsParams): Promise<AxiosResponse<T>>;
|
|
179
174
|
postApiLogsStatsErrors<T>(payload: Audit.ApiLogsStatsParams): Promise<AxiosResponse<T>>;
|
|
180
175
|
postApiLogsStatsErrorsByEndpoint<T>(payload: Audit.ApiLogsStatsParams): Promise<AxiosResponse<T>>;
|
|
181
|
-
postApiLogsList<T>(payload: Audit.ApiLogsListParams): Promise<AxiosResponse<T>>;
|
|
182
176
|
createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
|
|
183
177
|
listAuditSubscriptions<T>(): Promise<AxiosResponse<T>>;
|
|
184
178
|
deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
|
|
@@ -7,6 +7,3 @@ export interface UnifiedExportStartParams {
|
|
|
7
7
|
payload: Audit.UnifiedExportRequest;
|
|
8
8
|
}
|
|
9
9
|
export declare function useUnifiedExportStart(): UseMutationResult<Audit.UnifiedExportStartResponse, BFFErrorResponse, UnifiedExportStartParams>;
|
|
10
|
-
export declare function useExportWebhooksLogs(): UseMutationResult<string, BFFErrorResponse, Audit.ExportWebhooksLogsRequest>;
|
|
11
|
-
export declare function useExportDashboardLogs(): UseMutationResult<Audit.AuditExportResponse, BFFErrorResponse, Audit.ExportDashboardLogsRequest>;
|
|
12
|
-
export declare function useExportMonitorsLogs(): UseMutationResult<Audit.AuditExportResponse, BFFErrorResponse, Audit.ExportMonitorsLogsRequest>;
|
|
@@ -46,4 +46,6 @@ export declare function useGetUnifiedExportsList({ tab, page, size, enabled, }:
|
|
|
46
46
|
export declare function useGetApiLogsStatsRequests(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsStatsResponse, BFFErrorResponse>;
|
|
47
47
|
export declare function useGetApiLogsStatsErrors(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsStatsResponse, BFFErrorResponse>;
|
|
48
48
|
export declare function useGetApiLogsStatsErrorsByEndpoint(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsErrorsByEndpointResponse, BFFErrorResponse>;
|
|
49
|
-
export declare function
|
|
49
|
+
export declare function useGetApiLogsStatsRequestsV2(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsStatsResponse, BFFErrorResponse>;
|
|
50
|
+
export declare function useGetApiLogsStatsErrorsV2(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsStatsResponse, BFFErrorResponse>;
|
|
51
|
+
export declare function useGetApiLogsStatsErrorsByEndpointV2(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsErrorsByEndpointResponse, BFFErrorResponse>;
|
|
@@ -32,8 +32,6 @@ export * from './organization-config';
|
|
|
32
32
|
export * from './onboarding';
|
|
33
33
|
export * from './recipients';
|
|
34
34
|
export * from './installments';
|
|
35
|
-
export * from './api-logs';
|
|
36
|
-
export * from './webhooks';
|
|
37
35
|
export * from './security';
|
|
38
36
|
export * from './concierge';
|
|
39
37
|
export * from './field-visibility';
|
|
@@ -110,18 +110,6 @@ export declare namespace Audit {
|
|
|
110
110
|
type: string;
|
|
111
111
|
percentage: number;
|
|
112
112
|
}
|
|
113
|
-
interface ExportWebhooksLogsRequest {
|
|
114
|
-
report_name: string;
|
|
115
|
-
account_code?: string[];
|
|
116
|
-
start_date: string;
|
|
117
|
-
end_date: string;
|
|
118
|
-
time_zone: string;
|
|
119
|
-
organizationCode?: string;
|
|
120
|
-
status_codes?: string[];
|
|
121
|
-
methods?: string[];
|
|
122
|
-
size?: number;
|
|
123
|
-
page?: number;
|
|
124
|
-
}
|
|
125
113
|
interface AuditApiJSON {
|
|
126
114
|
[key: string]: string;
|
|
127
115
|
}
|
|
@@ -180,28 +168,6 @@ export declare namespace Audit {
|
|
|
180
168
|
payment_code?: string;
|
|
181
169
|
transaction_code?: string;
|
|
182
170
|
}
|
|
183
|
-
interface ApiLogsV3Response {
|
|
184
|
-
data: ApiLogV3[];
|
|
185
|
-
page: number;
|
|
186
|
-
size: number;
|
|
187
|
-
total_rows: number;
|
|
188
|
-
total_pages: number;
|
|
189
|
-
}
|
|
190
|
-
interface ApiLogsV3Params {
|
|
191
|
-
page: number;
|
|
192
|
-
size: number;
|
|
193
|
-
periodicity?: string;
|
|
194
|
-
account_code?: string[];
|
|
195
|
-
organizationCode?: string;
|
|
196
|
-
status_codes?: string[];
|
|
197
|
-
methods?: string[];
|
|
198
|
-
start_date?: string;
|
|
199
|
-
end_date?: string;
|
|
200
|
-
search?: string;
|
|
201
|
-
time_zone?: string;
|
|
202
|
-
now?: string;
|
|
203
|
-
payment_code?: string;
|
|
204
|
-
}
|
|
205
171
|
interface WebhookTimelineItem {
|
|
206
172
|
id: number;
|
|
207
173
|
organization_code: string;
|
|
@@ -224,28 +190,6 @@ export declare namespace Audit {
|
|
|
224
190
|
payment_code?: string;
|
|
225
191
|
transaction_code?: string;
|
|
226
192
|
}
|
|
227
|
-
interface WebhookTimelineResponse {
|
|
228
|
-
data: WebhookTimelineItem[];
|
|
229
|
-
page: number;
|
|
230
|
-
size: number;
|
|
231
|
-
total_rows: number;
|
|
232
|
-
total_pages: number;
|
|
233
|
-
}
|
|
234
|
-
interface WebhookTimelineParams {
|
|
235
|
-
page: number;
|
|
236
|
-
size: number;
|
|
237
|
-
organizationCode?: string;
|
|
238
|
-
periodicity?: string;
|
|
239
|
-
account_code?: string[];
|
|
240
|
-
status_codes?: string[];
|
|
241
|
-
methods?: string[];
|
|
242
|
-
start_date?: string;
|
|
243
|
-
end_date?: string;
|
|
244
|
-
time_zone?: string;
|
|
245
|
-
now?: string;
|
|
246
|
-
payment_code?: string;
|
|
247
|
-
transaction_code?: string;
|
|
248
|
-
}
|
|
249
193
|
enum AuditExportReportType {
|
|
250
194
|
DASHBOARD = "DASHBOARD",
|
|
251
195
|
API = "API",
|
|
@@ -253,27 +197,6 @@ export declare namespace Audit {
|
|
|
253
197
|
MONITORS = "MONITORS"
|
|
254
198
|
}
|
|
255
199
|
type AuditExportStatus = 'PENDING' | 'PROCESSING' | 'COMPLETED' | 'FAILED';
|
|
256
|
-
interface ExportDashboardLogsRequest {
|
|
257
|
-
report_name: string;
|
|
258
|
-
account_code?: string[];
|
|
259
|
-
start_date: string;
|
|
260
|
-
end_date: string;
|
|
261
|
-
time_zone: string;
|
|
262
|
-
event?: string[];
|
|
263
|
-
source?: string[];
|
|
264
|
-
search?: string[];
|
|
265
|
-
}
|
|
266
|
-
interface ExportMonitorsLogsRequest {
|
|
267
|
-
report_name: string;
|
|
268
|
-
account_codes?: string[];
|
|
269
|
-
start_date: string;
|
|
270
|
-
end_date: string;
|
|
271
|
-
time_zone: string;
|
|
272
|
-
status?: string[];
|
|
273
|
-
payment_methods?: string[];
|
|
274
|
-
providers?: string[];
|
|
275
|
-
traffic_redistribution?: boolean;
|
|
276
|
-
}
|
|
277
200
|
type UnifiedExportTabType = 'dashboard-logs' | 'api-logs' | 'webhook-logs' | 'monitor-logs';
|
|
278
201
|
interface UnifiedExportRequest {
|
|
279
202
|
start_date: string;
|
|
@@ -358,13 +281,6 @@ export declare namespace Audit {
|
|
|
358
281
|
search?: string;
|
|
359
282
|
accounts?: string[];
|
|
360
283
|
}
|
|
361
|
-
interface ApiLogsListResponse {
|
|
362
|
-
page: number;
|
|
363
|
-
size: number;
|
|
364
|
-
total_rows: number;
|
|
365
|
-
total_pages: number;
|
|
366
|
-
data: ApiLogItem[];
|
|
367
|
-
}
|
|
368
284
|
interface ApiLogItem {
|
|
369
285
|
code: string;
|
|
370
286
|
url: string;
|
package/build/index.d.ts
CHANGED
|
@@ -4233,18 +4233,6 @@ declare namespace Audit {
|
|
|
4233
4233
|
type: string;
|
|
4234
4234
|
percentage: number;
|
|
4235
4235
|
}
|
|
4236
|
-
interface ExportWebhooksLogsRequest {
|
|
4237
|
-
report_name: string;
|
|
4238
|
-
account_code?: string[];
|
|
4239
|
-
start_date: string;
|
|
4240
|
-
end_date: string;
|
|
4241
|
-
time_zone: string;
|
|
4242
|
-
organizationCode?: string;
|
|
4243
|
-
status_codes?: string[];
|
|
4244
|
-
methods?: string[];
|
|
4245
|
-
size?: number;
|
|
4246
|
-
page?: number;
|
|
4247
|
-
}
|
|
4248
4236
|
interface AuditApiJSON {
|
|
4249
4237
|
[key: string]: string;
|
|
4250
4238
|
}
|
|
@@ -4303,28 +4291,6 @@ declare namespace Audit {
|
|
|
4303
4291
|
payment_code?: string;
|
|
4304
4292
|
transaction_code?: string;
|
|
4305
4293
|
}
|
|
4306
|
-
interface ApiLogsV3Response {
|
|
4307
|
-
data: ApiLogV3[];
|
|
4308
|
-
page: number;
|
|
4309
|
-
size: number;
|
|
4310
|
-
total_rows: number;
|
|
4311
|
-
total_pages: number;
|
|
4312
|
-
}
|
|
4313
|
-
interface ApiLogsV3Params {
|
|
4314
|
-
page: number;
|
|
4315
|
-
size: number;
|
|
4316
|
-
periodicity?: string;
|
|
4317
|
-
account_code?: string[];
|
|
4318
|
-
organizationCode?: string;
|
|
4319
|
-
status_codes?: string[];
|
|
4320
|
-
methods?: string[];
|
|
4321
|
-
start_date?: string;
|
|
4322
|
-
end_date?: string;
|
|
4323
|
-
search?: string;
|
|
4324
|
-
time_zone?: string;
|
|
4325
|
-
now?: string;
|
|
4326
|
-
payment_code?: string;
|
|
4327
|
-
}
|
|
4328
4294
|
interface WebhookTimelineItem {
|
|
4329
4295
|
id: number;
|
|
4330
4296
|
organization_code: string;
|
|
@@ -4347,28 +4313,6 @@ declare namespace Audit {
|
|
|
4347
4313
|
payment_code?: string;
|
|
4348
4314
|
transaction_code?: string;
|
|
4349
4315
|
}
|
|
4350
|
-
interface WebhookTimelineResponse {
|
|
4351
|
-
data: WebhookTimelineItem[];
|
|
4352
|
-
page: number;
|
|
4353
|
-
size: number;
|
|
4354
|
-
total_rows: number;
|
|
4355
|
-
total_pages: number;
|
|
4356
|
-
}
|
|
4357
|
-
interface WebhookTimelineParams {
|
|
4358
|
-
page: number;
|
|
4359
|
-
size: number;
|
|
4360
|
-
organizationCode?: string;
|
|
4361
|
-
periodicity?: string;
|
|
4362
|
-
account_code?: string[];
|
|
4363
|
-
status_codes?: string[];
|
|
4364
|
-
methods?: string[];
|
|
4365
|
-
start_date?: string;
|
|
4366
|
-
end_date?: string;
|
|
4367
|
-
time_zone?: string;
|
|
4368
|
-
now?: string;
|
|
4369
|
-
payment_code?: string;
|
|
4370
|
-
transaction_code?: string;
|
|
4371
|
-
}
|
|
4372
4316
|
enum AuditExportReportType {
|
|
4373
4317
|
DASHBOARD = "DASHBOARD",
|
|
4374
4318
|
API = "API",
|
|
@@ -4376,27 +4320,6 @@ declare namespace Audit {
|
|
|
4376
4320
|
MONITORS = "MONITORS"
|
|
4377
4321
|
}
|
|
4378
4322
|
type AuditExportStatus = 'PENDING' | 'PROCESSING' | 'COMPLETED' | 'FAILED';
|
|
4379
|
-
interface ExportDashboardLogsRequest {
|
|
4380
|
-
report_name: string;
|
|
4381
|
-
account_code?: string[];
|
|
4382
|
-
start_date: string;
|
|
4383
|
-
end_date: string;
|
|
4384
|
-
time_zone: string;
|
|
4385
|
-
event?: string[];
|
|
4386
|
-
source?: string[];
|
|
4387
|
-
search?: string[];
|
|
4388
|
-
}
|
|
4389
|
-
interface ExportMonitorsLogsRequest {
|
|
4390
|
-
report_name: string;
|
|
4391
|
-
account_codes?: string[];
|
|
4392
|
-
start_date: string;
|
|
4393
|
-
end_date: string;
|
|
4394
|
-
time_zone: string;
|
|
4395
|
-
status?: string[];
|
|
4396
|
-
payment_methods?: string[];
|
|
4397
|
-
providers?: string[];
|
|
4398
|
-
traffic_redistribution?: boolean;
|
|
4399
|
-
}
|
|
4400
4323
|
type UnifiedExportTabType = 'dashboard-logs' | 'api-logs' | 'webhook-logs' | 'monitor-logs';
|
|
4401
4324
|
interface UnifiedExportRequest {
|
|
4402
4325
|
start_date: string;
|
|
@@ -4481,13 +4404,6 @@ declare namespace Audit {
|
|
|
4481
4404
|
search?: string;
|
|
4482
4405
|
accounts?: string[];
|
|
4483
4406
|
}
|
|
4484
|
-
interface ApiLogsListResponse {
|
|
4485
|
-
page: number;
|
|
4486
|
-
size: number;
|
|
4487
|
-
total_rows: number;
|
|
4488
|
-
total_pages: number;
|
|
4489
|
-
data: ApiLogItem[];
|
|
4490
|
-
}
|
|
4491
4407
|
interface ApiLogItem {
|
|
4492
4408
|
code: string;
|
|
4493
4409
|
url: string;
|
|
@@ -6454,9 +6370,6 @@ interface UnifiedExportStartParams {
|
|
|
6454
6370
|
payload: Audit.UnifiedExportRequest;
|
|
6455
6371
|
}
|
|
6456
6372
|
declare function useUnifiedExportStart(): UseMutationResult<Audit.UnifiedExportStartResponse, BFFErrorResponse, UnifiedExportStartParams>;
|
|
6457
|
-
declare function useExportWebhooksLogs(): UseMutationResult<string, BFFErrorResponse, Audit.ExportWebhooksLogsRequest>;
|
|
6458
|
-
declare function useExportDashboardLogs(): UseMutationResult<Audit.AuditExportResponse, BFFErrorResponse, Audit.ExportDashboardLogsRequest>;
|
|
6459
|
-
declare function useExportMonitorsLogs(): UseMutationResult<Audit.AuditExportResponse, BFFErrorResponse, Audit.ExportMonitorsLogsRequest>;
|
|
6460
6373
|
|
|
6461
6374
|
/**
|
|
6462
6375
|
* Result of {@link useCreateAuditSubscription}'s `mutateAsync`.
|
|
@@ -7284,7 +7197,9 @@ declare function useGetUnifiedExportsList({ tab, page, size, enabled, }: Unified
|
|
|
7284
7197
|
declare function useGetApiLogsStatsRequests(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsStatsResponse, BFFErrorResponse>;
|
|
7285
7198
|
declare function useGetApiLogsStatsErrors(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsStatsResponse, BFFErrorResponse>;
|
|
7286
7199
|
declare function useGetApiLogsStatsErrorsByEndpoint(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsErrorsByEndpointResponse, BFFErrorResponse>;
|
|
7287
|
-
declare function
|
|
7200
|
+
declare function useGetApiLogsStatsRequestsV2(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsStatsResponse, BFFErrorResponse>;
|
|
7201
|
+
declare function useGetApiLogsStatsErrorsV2(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsStatsResponse, BFFErrorResponse>;
|
|
7202
|
+
declare function useGetApiLogsStatsErrorsByEndpointV2(params: Audit.ApiLogsStatsParams): UseQueryResult<Audit.ApiLogsErrorsByEndpointResponse, BFFErrorResponse>;
|
|
7288
7203
|
|
|
7289
7204
|
/**
|
|
7290
7205
|
* Lists audit-log subscription groups for the current organization.
|
|
@@ -7440,18 +7355,6 @@ declare function useGetRecipientExportDownload(accountCode: string, exportCode:
|
|
|
7440
7355
|
declare function useGetInstallmentsPlans(accountCode: string, enabled?: boolean, params?: Installments.GetInstallmentsPlansParams): UseQueryResult<Installments.GetInstallmentsPlansResponse, Error>;
|
|
7441
7356
|
declare function useSearchInstallmentsPlans(payload: Installments.SearchInstallmentsPlansRequest, enabled?: boolean): UseQueryResult<Installments.SearchInstallmentsPlansResponse, Error>;
|
|
7442
7357
|
|
|
7443
|
-
interface UseGetApiLogsV3Options {
|
|
7444
|
-
paymentCode: string;
|
|
7445
|
-
enabled?: boolean;
|
|
7446
|
-
}
|
|
7447
|
-
declare function useGetApiLogsV3({ paymentCode, enabled, }: UseGetApiLogsV3Options): UseQueryResult<Audit.ApiLogsV3Response, AxiosError<BFFErrorResponse>>;
|
|
7448
|
-
|
|
7449
|
-
interface UseGetWebhookTimelineOptions {
|
|
7450
|
-
paymentCode: string;
|
|
7451
|
-
enabled?: boolean;
|
|
7452
|
-
}
|
|
7453
|
-
declare function useGetWebhookTimeline({ paymentCode, enabled, }: UseGetWebhookTimelineOptions): UseQueryResult<Audit.WebhookTimelineResponse, AxiosError<BFFErrorResponse>>;
|
|
7454
|
-
|
|
7455
7358
|
interface WorkosDomainStatusResponse {
|
|
7456
7359
|
domains: Array<{
|
|
7457
7360
|
domain: string;
|
|
@@ -7863,11 +7766,6 @@ declare class Api extends HttpClient {
|
|
|
7863
7766
|
payload: Audit.AuditWebhooksParams;
|
|
7864
7767
|
}): Promise<AxiosResponse<T>>;
|
|
7865
7768
|
postResendWebhooks<T>({ codes, }: Audit.AuditWebhooksResendParams): Promise<AxiosResponse<T>>;
|
|
7866
|
-
postExportWebhooksLogs<T>(payload: Audit.ExportWebhooksLogsRequest): Promise<AxiosResponse<T>>;
|
|
7867
|
-
getApiLogsV3<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
7868
|
-
getWebhookTimeline<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
7869
|
-
postExportDashboardLogs<T>(payload: Audit.ExportDashboardLogsRequest): Promise<AxiosResponse<T>>;
|
|
7870
|
-
postExportMonitorsLogs<T>(payload: Audit.ExportMonitorsLogsRequest): Promise<AxiosResponse<T>>;
|
|
7871
7769
|
getAuditExportsList<T>(reportType: Audit.AuditExportReportType): Promise<AxiosResponse<T>>;
|
|
7872
7770
|
getAuditExportDownload<T>(reportId: string): Promise<AxiosResponse<T>>;
|
|
7873
7771
|
private getUnifiedExportsPath;
|
|
@@ -7877,7 +7775,6 @@ declare class Api extends HttpClient {
|
|
|
7877
7775
|
postApiLogsStatsRequests<T>(payload: Audit.ApiLogsStatsParams): Promise<AxiosResponse<T>>;
|
|
7878
7776
|
postApiLogsStatsErrors<T>(payload: Audit.ApiLogsStatsParams): Promise<AxiosResponse<T>>;
|
|
7879
7777
|
postApiLogsStatsErrorsByEndpoint<T>(payload: Audit.ApiLogsStatsParams): Promise<AxiosResponse<T>>;
|
|
7880
|
-
postApiLogsList<T>(payload: Audit.ApiLogsListParams): Promise<AxiosResponse<T>>;
|
|
7881
7778
|
createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
|
|
7882
7779
|
listAuditSubscriptions<T>(): Promise<AxiosResponse<T>>;
|
|
7883
7780
|
deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
|
|
@@ -8530,5 +8427,5 @@ declare const SESSION_EXPIRED_MESSAGE_TYPE = "yuno-dashboard:session-expired";
|
|
|
8530
8427
|
declare function emitExpired(): void;
|
|
8531
8428
|
declare function resetExpiredGuard(): void;
|
|
8532
8429
|
|
|
8533
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, CONCIERGE_ACCESS_QUERY_KEY, CONCIERGE_ACCESS_REQUEST_STATUS_QUERY_KEY, Certificates, Checkout, ConciergeAccess, ConciergeAccessRequest, Connection, Country, DataReport, Developer, Domains, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FieldVisibility, FraudScreening, Installments, IntegrationRequest, MFA, Notifications, Onboarding, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Playground, Recipients, RecipientsExport, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SESSION_EXPIRED_MESSAGE_TYPE, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, emitExpired, getDatadogEnvironment, getQueryKeyGetNameAndIcon, getQueryKeyPaymentMethodAccounts, getQueryKeyRequiredFields, queryCache, queryClient, resetExpiredGuard, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBlockOnboarding, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useBulkDisableAccounts, useBulkEnableAccounts, useBulkToggleMethod, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateAuditSubscription, useCreateCertificate, useCreateChart, useCreateChartWithTimezone, useCreateConciergeBrief, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOnboarding, useCreateOperationTransaction, useCreateOrgRole, useCreatePaymentLinks, useCreateRecipient, useCreateRecipientExport, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteAppleDomain, useDeleteAuditSubscription, useDeleteBlackListType, useDeleteBlockListItem, useDeleteCertificate, useDeleteCertificateAccount, useDeleteChart, useDeleteConciergeBrief, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeleteOrgRole, useDeletePaymentLink, useDeleteRecipient, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDownloadCertificate, useDownloadRecipientExport, useDuplicateAccount, useDuplicateVersion, useEditOrgRole, useEditPaymentLinks, useEditRoles, useEmailVerification, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByOrganization, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByPaymentId, useGetApiLogsList, useGetApiLogsStatsErrors, useGetApiLogsStatsErrorsByEndpoint, useGetApiLogsStatsRequests, useGetApiLogsV3, useGetAuditEventByCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetCertificates, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConciergeAccess, useGetConciergeAccessRequestStatus, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetHiddenFields, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrgPermissionsCatalog, useGetOrgRolesPermissions, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipientExportDownload, useGetRecipientExports, useGetRecipients, useGetRecipientsV2, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsSettlementLookup, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhookTimeline, useGetWebhooksV2Detail, useGetWebhooksV3, useGetWorkOsMfaStatus, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetricsV3, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListAppleDomains, useListAuditSubscriptions, useListSubscriptions, useListUserExports, useLocalStorage, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePatchOrganizationKeysNote, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostIntegrationRequest, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostPlaygroundExecuteFlow, usePostSlackFeatureNotification, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookLogsV2, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishCheckout, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRegisterAppleDomains, useRequestConciergeAccess, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useTableOnboarding, useToggleMethod, useUnInviteUsersV2, useUnblockOnboarding, useUnifiedExportStart, useUnrollUserV2, useUpdateCertificateAccounts, useUpdateConciergeAccess, useUpdateConciergeBrief, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateOnboarding, useUpdateOrganizationStatus, useUpdateProfile, useUpdateRecipient, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useUploadPaymentLinkLogo, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosDomainStatus, useWorkosDomainVerificationPortal, useWorkosPasswordReset, useWorkosSsoConfigStatus, useWorkosVerifyMfa };
|
|
8534
|
-
export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, BlockOnboardingParams, BulkToggleResult, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateAuditSubscriptionResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateOnboardingParams, CreateOnboardingPayload, CreateOnboardingProvider, CreateOnboardingTermsOfService, CreateRecipientAddress, CreateRecipientBank, CreateRecipientDocument, CreateRecipientDocumentation, CreateRecipientLegalRepresentative, CreateRecipientParams, CreateRecipientPayload, CreateRecipientPhone, CreateRecipientWithdrawalMethod, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DatadogEnvironment, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteRecipientParams, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientExportsParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, RoleType, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, ToggleMethodItem, TotalTimeline, TransactionHistory, UnblockOnboardingParams, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateOnboardingParams, UpdateOnboardingPayload, UpdateRecipientParams, UpdateRecipientPayload, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps,
|
|
8430
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, CONCIERGE_ACCESS_QUERY_KEY, CONCIERGE_ACCESS_REQUEST_STATUS_QUERY_KEY, Certificates, Checkout, ConciergeAccess, ConciergeAccessRequest, Connection, Country, DataReport, Developer, Domains, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FieldVisibility, FraudScreening, Installments, IntegrationRequest, MFA, Notifications, Onboarding, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Playground, Recipients, RecipientsExport, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SESSION_EXPIRED_MESSAGE_TYPE, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, emitExpired, getDatadogEnvironment, getQueryKeyGetNameAndIcon, getQueryKeyPaymentMethodAccounts, getQueryKeyRequiredFields, queryCache, queryClient, resetExpiredGuard, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBlockOnboarding, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useBulkDisableAccounts, useBulkEnableAccounts, useBulkToggleMethod, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateAuditSubscription, useCreateCertificate, useCreateChart, useCreateChartWithTimezone, useCreateConciergeBrief, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOnboarding, useCreateOperationTransaction, useCreateOrgRole, useCreatePaymentLinks, useCreateRecipient, useCreateRecipientExport, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteAppleDomain, useDeleteAuditSubscription, useDeleteBlackListType, useDeleteBlockListItem, useDeleteCertificate, useDeleteCertificateAccount, useDeleteChart, useDeleteConciergeBrief, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeleteOrgRole, useDeletePaymentLink, useDeleteRecipient, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDownloadCertificate, useDownloadRecipientExport, useDuplicateAccount, useDuplicateVersion, useEditOrgRole, useEditPaymentLinks, useEditRoles, useEmailVerification, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByOrganization, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByPaymentId, useGetApiLogsStatsErrors, useGetApiLogsStatsErrorsByEndpoint, useGetApiLogsStatsErrorsByEndpointV2, useGetApiLogsStatsErrorsV2, useGetApiLogsStatsRequests, useGetApiLogsStatsRequestsV2, useGetAuditEventByCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetCertificates, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConciergeAccess, useGetConciergeAccessRequestStatus, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetHiddenFields, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrgPermissionsCatalog, useGetOrgRolesPermissions, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipientExportDownload, useGetRecipientExports, useGetRecipients, useGetRecipientsV2, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsSettlementLookup, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useGetWorkOsMfaStatus, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetricsV3, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListAppleDomains, useListAuditSubscriptions, useListSubscriptions, useListUserExports, useLocalStorage, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePatchOrganizationKeysNote, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostIntegrationRequest, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostPlaygroundExecuteFlow, usePostSlackFeatureNotification, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookLogsV2, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishCheckout, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRegisterAppleDomains, useRequestConciergeAccess, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useTableOnboarding, useToggleMethod, useUnInviteUsersV2, useUnblockOnboarding, useUnifiedExportStart, useUnrollUserV2, useUpdateCertificateAccounts, useUpdateConciergeAccess, useUpdateConciergeBrief, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateOnboarding, useUpdateOrganizationStatus, useUpdateProfile, useUpdateRecipient, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useUploadPaymentLinkLogo, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosDomainStatus, useWorkosDomainVerificationPortal, useWorkosPasswordReset, useWorkosSsoConfigStatus, useWorkosVerifyMfa };
|
|
8431
|
+
export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, BlockOnboardingParams, BulkToggleResult, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateAuditSubscriptionResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateOnboardingParams, CreateOnboardingPayload, CreateOnboardingProvider, CreateOnboardingTermsOfService, CreateRecipientAddress, CreateRecipientBank, CreateRecipientDocument, CreateRecipientDocumentation, CreateRecipientLegalRepresentative, CreateRecipientParams, CreateRecipientPayload, CreateRecipientPhone, CreateRecipientWithdrawalMethod, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DatadogEnvironment, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteRecipientParams, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientExportsParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, RoleType, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, ToggleMethodItem, TotalTimeline, TransactionHistory, UnblockOnboardingParams, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateOnboardingParams, UpdateOnboardingPayload, UpdateRecipientParams, UpdateRecipientPayload, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetChartFeedbackParams, UseGetOnboardingStatusParams, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage, WorkosDomainStatusResponse, WorkosSsoConfigStatusResponse, WorkosSsoConnection };
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const apiLogsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const webhooksHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import { Audit } from '../../types';
|
|
3
|
-
import { AxiosError } from 'axios';
|
|
4
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
5
|
-
export interface UseGetApiLogsV3Options {
|
|
6
|
-
paymentCode: string;
|
|
7
|
-
enabled?: boolean;
|
|
8
|
-
}
|
|
9
|
-
export declare function useGetApiLogsV3({ paymentCode, enabled, }: UseGetApiLogsV3Options): UseQueryResult<Audit.ApiLogsV3Response, AxiosError<BFFErrorResponse>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './api-logs-v3.query';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './webhook-timeline.query';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import { Audit } from '../../types';
|
|
3
|
-
import { AxiosError } from 'axios';
|
|
4
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
5
|
-
export interface UseGetWebhookTimelineOptions {
|
|
6
|
-
paymentCode: string;
|
|
7
|
-
enabled?: boolean;
|
|
8
|
-
}
|
|
9
|
-
export declare function useGetWebhookTimeline({ paymentCode, enabled, }: UseGetWebhookTimelineOptions): UseQueryResult<Audit.WebhookTimelineResponse, AxiosError<BFFErrorResponse>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const apiLogsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const webhooksHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import { Audit } from '../../types';
|
|
3
|
-
import { AxiosError } from 'axios';
|
|
4
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
5
|
-
export interface UseGetApiLogsV3Options {
|
|
6
|
-
paymentCode: string;
|
|
7
|
-
enabled?: boolean;
|
|
8
|
-
}
|
|
9
|
-
export declare function useGetApiLogsV3({ paymentCode, enabled, }: UseGetApiLogsV3Options): UseQueryResult<Audit.ApiLogsV3Response, AxiosError<BFFErrorResponse>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './api-logs-v3.query';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './webhook-timeline.query';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
import { Audit } from '../../types';
|
|
3
|
-
import { AxiosError } from 'axios';
|
|
4
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
5
|
-
export interface UseGetWebhookTimelineOptions {
|
|
6
|
-
paymentCode: string;
|
|
7
|
-
enabled?: boolean;
|
|
8
|
-
}
|
|
9
|
-
export declare function useGetWebhookTimeline({ paymentCode, enabled, }: UseGetWebhookTimelineOptions): UseQueryResult<Audit.WebhookTimelineResponse, AxiosError<BFFErrorResponse>>;
|