@vini-wine/admin-core-models 1.1.87 → 1.1.89

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
@@ -680,6 +680,14 @@ interface IntegrationWineLabsModel extends UUID {
680
680
  usage?: IntegrationWineLabsUsageModel;
681
681
  }
682
682
 
683
+ interface IntegrationWineLabsRetailerModel extends UUID {
684
+ retailerId: number;
685
+ name: string;
686
+ website: string;
687
+ supplier?: SupplierModel;
688
+ createdByUser?: UserAccountModel;
689
+ }
690
+
683
691
  interface IntegrationWineLabsListingModel extends UUID {
684
692
  shopName: string;
685
693
  shopPhone: string;
@@ -707,6 +715,11 @@ interface IntegrationWineLabsListingModel extends UUID {
707
715
  continent: string;
708
716
  retailerId: string;
709
717
  createdAt: string;
718
+ existsVintageProduct: boolean;
719
+ wine?: WineModel | null;
720
+ vintageProduct?: VintageProductModel | null;
721
+ integrationWineLabsRetailer?: IntegrationWineLabsRetailerModel | null;
722
+ price?: PriceModel;
710
723
  }
711
724
 
712
725
  interface MarginMarketModel {
@@ -770,6 +783,7 @@ interface OfferAlertModel extends UUID {
770
783
  filterCriteria?: FilterCriteriaModel[];
771
784
  timeline?: OfferAlertTimelineModel;
772
785
  meta?: any;
786
+ sharedWithCustomer?: CustomerModel | null;
773
787
  }
774
788
 
775
789
  interface OrganisationUserInvitationStatusModel {
package/dist/index.d.ts CHANGED
@@ -680,6 +680,14 @@ interface IntegrationWineLabsModel extends UUID {
680
680
  usage?: IntegrationWineLabsUsageModel;
681
681
  }
682
682
 
683
+ interface IntegrationWineLabsRetailerModel extends UUID {
684
+ retailerId: number;
685
+ name: string;
686
+ website: string;
687
+ supplier?: SupplierModel;
688
+ createdByUser?: UserAccountModel;
689
+ }
690
+
683
691
  interface IntegrationWineLabsListingModel extends UUID {
684
692
  shopName: string;
685
693
  shopPhone: string;
@@ -707,6 +715,11 @@ interface IntegrationWineLabsListingModel extends UUID {
707
715
  continent: string;
708
716
  retailerId: string;
709
717
  createdAt: string;
718
+ existsVintageProduct: boolean;
719
+ wine?: WineModel | null;
720
+ vintageProduct?: VintageProductModel | null;
721
+ integrationWineLabsRetailer?: IntegrationWineLabsRetailerModel | null;
722
+ price?: PriceModel;
710
723
  }
711
724
 
712
725
  interface MarginMarketModel {
@@ -770,6 +783,7 @@ interface OfferAlertModel extends UUID {
770
783
  filterCriteria?: FilterCriteriaModel[];
771
784
  timeline?: OfferAlertTimelineModel;
772
785
  meta?: any;
786
+ sharedWithCustomer?: CustomerModel | null;
773
787
  }
774
788
 
775
789
  interface OrganisationUserInvitationStatusModel {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vini-wine/admin-core-models",
3
- "version": "1.1.87",
3
+ "version": "1.1.89",
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",