@artisan-commerce/builders 0.7.0-canary.92 → 0.7.0-canary.95

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/bundle.cjs CHANGED
@@ -534,7 +534,8 @@ const buildBaseProduct = (overrides = {}) => {
534
534
  prices: {
535
535
  NORMAL: buildPriceCategory({ category: "NORMAL" }),
536
536
  POINTS: buildPriceCategory({ category: "POINTS" }),
537
- SUGGESTED: buildPriceCategory({ category: "SUGGESTED" })
537
+ SUGGESTED: buildPriceCategory({ category: "SUGGESTED" }),
538
+ REFERENCE: buildPriceCategory({ category: "REFERENCE" })
538
539
  },
539
540
  productId: genNumber(999).toString(),
540
541
  sponsored: false,
@@ -565,7 +566,8 @@ const buildProductAnswer = (overrides = {}, loop = 1) => {
565
566
  prices: {
566
567
  NORMAL: buildPriceCategory({ category: "NORMAL" }),
567
568
  POINTS: buildPriceCategory({ category: "POINTS" }),
568
- SUGGESTED: buildPriceCategory({ category: "SUGGESTED" })
569
+ SUGGESTED: buildPriceCategory({ category: "SUGGESTED" }),
570
+ REFERENCE: buildPriceCategory({ category: "REFERENCE" })
569
571
  },
570
572
  productId: genNumber(999).toString(),
571
573
  type: chooseRandom(["PRODUCT", "MODIFIER"]),
@@ -2426,7 +2428,8 @@ const genOrderProductImages = (quantity) => {
2426
2428
  const buildOrderBillProductAdditionalInfo = (overrides = {}) => {
2427
2429
  return __spreadValues$2({
2428
2430
  normal: buildOrderProductPriceCategory(),
2429
- points: buildOrderProductPriceCategory()
2431
+ points: buildOrderProductPriceCategory(),
2432
+ suggested: buildOrderProductPriceCategory()
2430
2433
  }, overrides);
2431
2434
  };
2432
2435
  const buildTaxCalculation = (overrides = {}) => {