@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.
- package/dist/data/index.cjs +12 -0
- package/dist/data/index.cjs.map +1 -1
- package/dist/data/index.d.cts +12 -73
- package/dist/data/index.d.ts +12 -73
- package/dist/data/index.js +11 -1
- package/dist/data/index.js.map +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js.map +1 -1
- package/dist/page/index.cjs +38 -0
- package/dist/page/index.cjs.map +1 -1
- package/dist/page/index.d.cts +5 -147
- package/dist/page/index.d.ts +5 -147
- package/dist/page/index.js +33 -1
- package/dist/page/index.js.map +1 -1
- package/dist/product-group.model-0r2YM_Rk.d.ts +175 -0
- package/dist/product-group.model-BnT_AtdD.d.cts +175 -0
- package/dist/section/index.d.cts +2 -12
- package/dist/section/index.d.ts +2 -12
- package/dist/site-banner.model-CiOtRwt1.d.cts +15 -0
- package/dist/site-banner.model-CiOtRwt1.d.ts +15 -0
- package/package.json +1 -1
package/dist/data/index.cjs
CHANGED
|
@@ -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;
|