@tap-payments/os-micro-frontend-shared 0.1.371 → 0.1.372

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.
@@ -492,4 +492,5 @@ export const MF_APPS_MAPPER = new Set([
492
492
  APP_CODES.payouts.code,
493
493
  APP_CODES.reports.code,
494
494
  APP_CODES.leads.code,
495
+ APP_CODES.wallet.code,
495
496
  ]);
@@ -4,3 +4,24 @@ export declare enum ReportStatusEnum {
4
4
  PROCESSING = "PROCESSING",
5
5
  INITIATED = "INITIATED"
6
6
  }
7
+ export interface Report {
8
+ id: string;
9
+ object: string;
10
+ live_mode: boolean;
11
+ api_version: string;
12
+ feature_version: string;
13
+ type: string;
14
+ status: string;
15
+ segment_id: string;
16
+ created_at: number;
17
+ started_at: number;
18
+ completed_at: number;
19
+ total_records: number;
20
+ result_file: string;
21
+ download_count: string;
22
+ last_downloaded_at: number;
23
+ response: {
24
+ code: string;
25
+ message: string;
26
+ };
27
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tap-payments/os-micro-frontend-shared",
3
3
  "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.1.371",
4
+ "version": "0.1.372",
5
5
  "testVersion": 0,
6
6
  "type": "module",
7
7
  "main": "build/index.js",