@vini-wine/admin-core-models 1.1.62 → 1.1.64

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
@@ -482,8 +482,9 @@ interface ChatMessageModel extends UUID {
482
482
  };
483
483
  messagePreview: string;
484
484
  sendAt: Date;
485
+ totalOfSubChatMessages: number;
485
486
  chatConversation?: ChatConversationModel;
486
- message?: string;
487
+ content?: string;
487
488
  createdByUserOrganisation?: UserOrganisationModel;
488
489
  }
489
490
 
@@ -529,7 +530,7 @@ interface ExportModel extends UUID {
529
530
  type: {
530
531
  id: ExportTypeEnum;
531
532
  };
532
- path: string;
533
+ url: string;
533
534
  mime: MimeTypeEnum | null;
534
535
  size: number | null;
535
536
  createdAt: Date;
package/dist/index.d.ts CHANGED
@@ -482,8 +482,9 @@ interface ChatMessageModel extends UUID {
482
482
  };
483
483
  messagePreview: string;
484
484
  sendAt: Date;
485
+ totalOfSubChatMessages: number;
485
486
  chatConversation?: ChatConversationModel;
486
- message?: string;
487
+ content?: string;
487
488
  createdByUserOrganisation?: UserOrganisationModel;
488
489
  }
489
490
 
@@ -529,7 +530,7 @@ interface ExportModel extends UUID {
529
530
  type: {
530
531
  id: ExportTypeEnum;
531
532
  };
532
- path: string;
533
+ url: string;
533
534
  mime: MimeTypeEnum | null;
534
535
  size: number | null;
535
536
  createdAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vini-wine/admin-core-models",
3
- "version": "1.1.62",
3
+ "version": "1.1.64",
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",