@feedmepos/mf-mdm 1.5.4-beta.178 → 1.5.4-beta.180

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.
@@ -53,4 +53,28 @@ export interface CheckboxOptions {
53
53
  export declare enum FeatureFlagKey {
54
54
  licensePosCreateSubPos = "license_pos_create_subpos"
55
55
  }
56
+ export declare enum F_LOG_REQUEST_STATUS {
57
+ PENDING = "pending",
58
+ PROCESSING = "processing",
59
+ COMPLETED = "completed",
60
+ FAILED = "failed"
61
+ }
62
+ export interface FdoLogs {
63
+ requestId: string;
64
+ status: F_LOG_REQUEST_STATUS;
65
+ downloadUrl?: string;
66
+ error?: string;
67
+ fileSize?: number;
68
+ fileName?: string;
69
+ createdAt: Date;
70
+ expiresAt?: Date;
71
+ completedAt?: Date;
72
+ }
73
+ export interface FdtoLogs {
74
+ status: F_LOG_REQUEST_STATUS;
75
+ downloadUrl?: string;
76
+ error?: string;
77
+ fileSize?: number;
78
+ fileName?: string;
79
+ }
56
80
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmepos/mf-mdm",
3
- "version": "1.5.4-beta.178",
3
+ "version": "1.5.4-beta.180",
4
4
  "files": [
5
5
  "dist"
6
6
  ],