@artisan-commerce/builders 0.7.0-canary.29 → 0.7.0-canary.30

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/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.7.0-canary.30](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/builders@0.7.0-canary.29...@artisan-commerce/builders@0.7.0-canary.30) (2021-11-05)
7
+
8
+
9
+ ### Features
10
+
11
+ * **global:** fix types and builders for store coupon and add condition to shipping cost ([2800a87](https://bitbucket.org/tradesystem/artisn_sdk/commit/2800a87a326c9f0ca5e0f1fbe202e15768fc32c9))
12
+
13
+
14
+
6
15
  ## [0.7.0-canary.29](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/builders@0.7.0-canary.28...@artisan-commerce/builders@0.7.0-canary.29) (2021-10-27)
7
16
 
8
17
 
@@ -142211,7 +142211,7 @@ const buildCoupon = (overrides = {}) => {
142211
142211
  category: buildCouponCategory(),
142212
142212
  codes: genCodes(),
142213
142213
  end_date: genDate(),
142214
- image: null,
142214
+ image: buildURLImage({ query: "coupon" }),
142215
142215
  id: genNumber(9999),
142216
142216
  name: genWord(),
142217
142217
  only_store: genBiasBoolean(0.6),
@@ -142267,7 +142267,7 @@ const buildStoreCouponDetail = (overrides = {}) => {
142267
142267
  benefits: genBenefitData(1),
142268
142268
  codes: genCodes(),
142269
142269
  end_date: genDate(),
142270
- image: null,
142270
+ image: buildURLImage({ query: "coupon" }),
142271
142271
  id: genNumber(9999),
142272
142272
  name: genWord(),
142273
142273
  only_store: genBiasBoolean(0.6),