@goldenhippo/builder-cart-schemas 0.5.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.
@@ -1321,6 +1321,14 @@ var createFeatureConfig = (gridFilterModelId) => {
1321
1321
  type: "boolean",
1322
1322
  localized: false,
1323
1323
  defaultCollapsed: true
1324
+ },
1325
+ {
1326
+ name: "cartDrawerEnabled",
1327
+ friendlyName: "Enable Cart Drawer",
1328
+ helperText: "Enable or disable the cart drawer experience for the brand",
1329
+ type: "boolean",
1330
+ localized: false,
1331
+ defaultCollapsed: true
1324
1332
  }
1325
1333
  ]
1326
1334
  };
@@ -2675,6 +2683,11 @@ var createBlogCommentModel = (pageModelId) => {
2675
2683
  };
2676
2684
 
2677
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 || {});
2678
2691
  var createProductGroupModel = (productModelId) => {
2679
2692
  return {
2680
2693
  name: "product-group",
@@ -2822,6 +2835,11 @@ var createProductGroupModel = (productModelId) => {
2822
2835
  };
2823
2836
 
2824
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 || {});
2825
2843
  var createProductGridConfigModel = (models) => {
2826
2844
  return {
2827
2845
  name: "product-grid-filter-group",
@@ -2955,6 +2973,8 @@ Object.defineProperty(exports, "createProductUseCaseModel", {
2955
2973
  enumerable: true,
2956
2974
  get: function () { return builderSharedSchemas.createProductUseCaseModel; }
2957
2975
  });
2976
+ exports.FilterApplicationType = FilterApplicationType;
2977
+ exports.ProductGroupType = ProductGroupType;
2958
2978
  exports.createBlogCategoryModel = createBlogCategoryModel;
2959
2979
  exports.createBlogCommentModel = createBlogCommentModel;
2960
2980
  exports.createBrandConfigModel = createBrandConfigModel;