@yuno-payments/dashboard-api-mfe 1.6.7 → 1.6.8
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.map +1 -1
- package/build/cjs/types/queries/audit/audit.query.d.ts +1 -1
- package/build/cjs/types/types/audit/audit.d.ts +7 -0
- package/build/cjs/types/types/webhook/webhook.d.ts +2 -0
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/queries/audit/audit.query.d.ts +1 -1
- package/build/esm/types/types/audit/audit.d.ts +7 -0
- package/build/esm/types/types/webhook/webhook.d.ts +2 -0
- package/build/index.d.ts +10 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ export declare function usePostApiLogs(params: Audit.AuditApiLogsParams): UseQue
|
|
|
8
8
|
export declare function usePostWebhookLogs({ params, }: {
|
|
9
9
|
params: Audit.AuditWebhooksParams;
|
|
10
10
|
}): UseQueryResult<Audit.AuditWebhooksResponse, BFFErrorResponse>;
|
|
11
|
-
export declare function useGetApiLogsDetailByPaymentCode(code: string | null | undefined): UseQueryResult<
|
|
11
|
+
export declare function useGetApiLogsDetailByPaymentCode(code: string | null | undefined): UseQueryResult<Audit.ApiLogsDetailByPaymentCode, BFFErrorResponse>;
|
|
12
12
|
export declare function useGetApiLogsByTransactionCode(transactionCode: string | null | undefined, accountCode: string | null | undefined): UseQueryResult<Audit.ApiLogByTransactionCode, BFFErrorResponse>;
|
|
13
13
|
export declare function useGetAuditExportsList(reportType: Audit.AuditExportReportType, enabled?: boolean): UseQueryResult<Audit.AuditExportResponse[], BFFErrorResponse>;
|
|
14
14
|
export declare function useGetAuditExportDownload(reportId: string, enabled?: boolean, onSuccess?: (data: Audit.AuditExportDownloadResponse) => void): UseQueryResult<Audit.AuditExportDownloadResponse, BFFErrorResponse>;
|
|
@@ -46,6 +46,7 @@ export declare namespace Webhook {
|
|
|
46
46
|
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
47
47
|
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
48
48
|
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
49
|
+
renewal_days?: number;
|
|
49
50
|
created_at: string;
|
|
50
51
|
updated_at?: string;
|
|
51
52
|
}
|
|
@@ -65,6 +66,7 @@ export declare namespace Webhook {
|
|
|
65
66
|
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
66
67
|
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
67
68
|
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
69
|
+
renewal_days?: number;
|
|
68
70
|
created_at: string;
|
|
69
71
|
updated_at?: string;
|
|
70
72
|
}
|
package/build/index.d.ts
CHANGED
|
@@ -1380,6 +1380,7 @@ declare namespace Webhook {
|
|
|
1380
1380
|
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
1381
1381
|
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
1382
1382
|
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
1383
|
+
renewal_days?: number;
|
|
1383
1384
|
created_at: string;
|
|
1384
1385
|
updated_at?: string;
|
|
1385
1386
|
}
|
|
@@ -1399,6 +1400,7 @@ declare namespace Webhook {
|
|
|
1399
1400
|
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
1400
1401
|
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
1401
1402
|
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
1403
|
+
renewal_days?: number;
|
|
1402
1404
|
created_at: string;
|
|
1403
1405
|
updated_at?: string;
|
|
1404
1406
|
}
|
|
@@ -4086,6 +4088,13 @@ declare namespace Payouts {
|
|
|
4086
4088
|
}
|
|
4087
4089
|
|
|
4088
4090
|
declare namespace Audit {
|
|
4091
|
+
interface ApiLogsDetailByPaymentCode {
|
|
4092
|
+
data: ApiLogByTransactionCode[];
|
|
4093
|
+
page: number;
|
|
4094
|
+
size: number;
|
|
4095
|
+
total_rows: number;
|
|
4096
|
+
total_pages: number;
|
|
4097
|
+
}
|
|
4089
4098
|
interface AuditEventsParams {
|
|
4090
4099
|
page: number;
|
|
4091
4100
|
size: number;
|
|
@@ -6528,7 +6537,7 @@ declare function usePostApiLogs(params: Audit.AuditApiLogsParams): UseQueryResul
|
|
|
6528
6537
|
declare function usePostWebhookLogs({ params, }: {
|
|
6529
6538
|
params: Audit.AuditWebhooksParams;
|
|
6530
6539
|
}): UseQueryResult<Audit.AuditWebhooksResponse, BFFErrorResponse>;
|
|
6531
|
-
declare function useGetApiLogsDetailByPaymentCode(code: string | null | undefined): UseQueryResult<
|
|
6540
|
+
declare function useGetApiLogsDetailByPaymentCode(code: string | null | undefined): UseQueryResult<Audit.ApiLogsDetailByPaymentCode, BFFErrorResponse>;
|
|
6532
6541
|
declare function useGetApiLogsByTransactionCode(transactionCode: string | null | undefined, accountCode: string | null | undefined): UseQueryResult<Audit.ApiLogByTransactionCode, BFFErrorResponse>;
|
|
6533
6542
|
declare function useGetAuditExportsList(reportType: Audit.AuditExportReportType, enabled?: boolean): UseQueryResult<Audit.AuditExportResponse[], BFFErrorResponse>;
|
|
6534
6543
|
declare function useGetAuditExportDownload(reportId: string, enabled?: boolean, onSuccess?: (data: Audit.AuditExportDownloadResponse) => void): UseQueryResult<Audit.AuditExportDownloadResponse, BFFErrorResponse>;
|