@yuno-payments/dashboard-api-mfe 2.3.0 → 2.3.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 -3
- package/build/cjs/types/mutations/audit/index.d.ts +0 -1
- package/build/cjs/types/queries/audit/index.d.ts +0 -1
- package/build/cjs/types/types/audit/audit.d.ts +0 -22
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +0 -3
- package/build/esm/types/mutations/audit/index.d.ts +0 -1
- package/build/esm/types/queries/audit/index.d.ts +0 -1
- package/build/esm/types/types/audit/audit.d.ts +0 -22
- package/build/index.d.ts +2 -78
- package/package.json +1 -1
- package/build/cjs/types/mutations/audit/audit-subscriptions.mutation.d.ts +0 -41
- package/build/cjs/types/queries/audit/audit-subscriptions.query.d.ts +0 -15
- package/build/esm/types/mutations/audit/audit-subscriptions.mutation.d.ts +0 -41
- package/build/esm/types/queries/audit/audit-subscriptions.query.d.ts +0 -15
|
@@ -167,9 +167,6 @@ export declare class Api extends HttpClient {
|
|
|
167
167
|
postUnifiedExport<T>(tab: Audit.UnifiedExportTabType, payload: Audit.UnifiedExportRequest): Promise<AxiosResponse<T>>;
|
|
168
168
|
getUnifiedExportStatus<T>(tab: Audit.UnifiedExportTabType, exportId: string): Promise<AxiosResponse<T>>;
|
|
169
169
|
getUnifiedExportsList<T>(tab: Audit.UnifiedExportTabType, page?: number, size?: number): Promise<AxiosResponse<T>>;
|
|
170
|
-
createAuditSubscription<T>(payload: Audit.CreateAuditSubscriptionPayload): Promise<AxiosResponse<T>>;
|
|
171
|
-
listAuditSubscriptions<T>(): Promise<AxiosResponse<T>>;
|
|
172
|
-
deleteAuditSubscription<T>(code: string): Promise<AxiosResponse<T>>;
|
|
173
170
|
createAuditSubscriptionV2<T>(payload: Audit.CreateAuditSubscriptionV2Payload): Promise<AxiosResponse<T>>;
|
|
174
171
|
listAuditSubscriptionsV2<T>(params?: Audit.ListAuditSubscriptionsV2Params): Promise<AxiosResponse<T>>;
|
|
175
172
|
deleteAuditSubscriptionV2<T>(code: string): Promise<AxiosResponse<T>>;
|
|
@@ -312,28 +312,6 @@ export declare namespace Audit {
|
|
|
312
312
|
total_pages: number;
|
|
313
313
|
data: ApiLogV3Item[];
|
|
314
314
|
}
|
|
315
|
-
interface SourceSpec {
|
|
316
|
-
events: string[];
|
|
317
|
-
}
|
|
318
|
-
interface AuditSubscriptionGroup {
|
|
319
|
-
code: string;
|
|
320
|
-
user_code: string;
|
|
321
|
-
user_email: string;
|
|
322
|
-
organization_code: string;
|
|
323
|
-
sources: Record<string, SourceSpec>;
|
|
324
|
-
account_codes: string[];
|
|
325
|
-
enabled: boolean;
|
|
326
|
-
created_at: string;
|
|
327
|
-
updated_at: string;
|
|
328
|
-
last_fired_at?: string | null;
|
|
329
|
-
}
|
|
330
|
-
type CreateAuditSubscriptionPayload = {
|
|
331
|
-
sources: Record<string, SourceSpec>;
|
|
332
|
-
account_codes: string[];
|
|
333
|
-
};
|
|
334
|
-
interface ListAuditSubscriptionsResponse {
|
|
335
|
-
data: AuditSubscriptionGroup[];
|
|
336
|
-
}
|
|
337
315
|
interface AuditSubscriptionGroupV2 {
|
|
338
316
|
code: string;
|
|
339
317
|
user_code: string;
|