@vini-wine/admin-core-models 1.1.13 → 1.1.14
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/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -226,7 +226,7 @@ interface UploadVisibilityTypeModel {
|
|
|
226
226
|
interface UploadModel extends UUID {
|
|
227
227
|
status: {
|
|
228
228
|
id: UploadStatusEnum;
|
|
229
|
-
|
|
229
|
+
statusUpdatedAt: Date;
|
|
230
230
|
};
|
|
231
231
|
type: {
|
|
232
232
|
id: UploadTypeEnum;
|
|
@@ -242,6 +242,7 @@ interface UploadModel extends UUID {
|
|
|
242
242
|
createdUser?: UserAccountModel;
|
|
243
243
|
visibilityTypes?: UploadVisibilityTypeModel[];
|
|
244
244
|
importFileHeaders?: ImportFileHeaderModel[];
|
|
245
|
+
statusUpdatedBy?: UserAccountModel | null;
|
|
245
246
|
}
|
|
246
247
|
|
|
247
248
|
interface ImportFileHeaderModel {
|
package/dist/index.d.ts
CHANGED
|
@@ -226,7 +226,7 @@ interface UploadVisibilityTypeModel {
|
|
|
226
226
|
interface UploadModel extends UUID {
|
|
227
227
|
status: {
|
|
228
228
|
id: UploadStatusEnum;
|
|
229
|
-
|
|
229
|
+
statusUpdatedAt: Date;
|
|
230
230
|
};
|
|
231
231
|
type: {
|
|
232
232
|
id: UploadTypeEnum;
|
|
@@ -242,6 +242,7 @@ interface UploadModel extends UUID {
|
|
|
242
242
|
createdUser?: UserAccountModel;
|
|
243
243
|
visibilityTypes?: UploadVisibilityTypeModel[];
|
|
244
244
|
importFileHeaders?: ImportFileHeaderModel[];
|
|
245
|
+
statusUpdatedBy?: UserAccountModel | null;
|
|
245
246
|
}
|
|
246
247
|
|
|
247
248
|
interface ImportFileHeaderModel {
|