@goldenhippo/builder-cart-schemas 0.6.0 → 0.7.0

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.
@@ -2683,6 +2683,11 @@ var createBlogCommentModel = (pageModelId) => {
2683
2683
  };
2684
2684
 
2685
2685
  // src/data/product-group.model.ts
2686
+ var ProductGroupType = /* @__PURE__ */ ((ProductGroupType2) => {
2687
+ ProductGroupType2["FlavorOptionGroup"] = "Flavor/Option Group";
2688
+ ProductGroupType2["TrialGroup"] = "Trial Group";
2689
+ return ProductGroupType2;
2690
+ })(ProductGroupType || {});
2686
2691
  var createProductGroupModel = (productModelId) => {
2687
2692
  return {
2688
2693
  name: "product-group",
@@ -2830,6 +2835,11 @@ var createProductGroupModel = (productModelId) => {
2830
2835
  };
2831
2836
 
2832
2837
  // src/data/product-grid-filter-group.model.ts
2838
+ var FilterApplicationType = /* @__PURE__ */ ((FilterApplicationType2) => {
2839
+ FilterApplicationType2["Inclusive"] = "Inclusive";
2840
+ FilterApplicationType2["Exclusive"] = "Exclusive";
2841
+ return FilterApplicationType2;
2842
+ })(FilterApplicationType || {});
2833
2843
  var createProductGridConfigModel = (models) => {
2834
2844
  return {
2835
2845
  name: "product-grid-filter-group",
@@ -2963,6 +2973,8 @@ Object.defineProperty(exports, "createProductUseCaseModel", {
2963
2973
  enumerable: true,
2964
2974
  get: function () { return builderSharedSchemas.createProductUseCaseModel; }
2965
2975
  });
2976
+ exports.FilterApplicationType = FilterApplicationType;
2977
+ exports.ProductGroupType = ProductGroupType;
2966
2978
  exports.createBlogCategoryModel = createBlogCategoryModel;
2967
2979
  exports.createBlogCommentModel = createBlogCommentModel;
2968
2980
  exports.createBrandConfigModel = createBrandConfigModel;