@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 CHANGED
@@ -226,7 +226,7 @@ interface UploadVisibilityTypeModel {
226
226
  interface UploadModel extends UUID {
227
227
  status: {
228
228
  id: UploadStatusEnum;
229
- name: string;
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
- name: string;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vini-wine/admin-core-models",
3
- "version": "1.1.13",
3
+ "version": "1.1.14",
4
4
  "description": "Core package for Vini models related to the admin API.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",