@artisan-commerce/builders 0.6.0-canary.6 → 0.6.0-canary.7

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.6.0-canary.7](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/builders@0.6.0-canary.6...@artisan-commerce/builders@0.6.0-canary.7) (2021-04-21)
7
+
8
+
9
+ ### Features
10
+
11
+ * **global:** update account types and add account builders ([4a6fecd](https://bitbucket.org/tradesystem/artisan_monorepo/commit/4a6fecdc45b363f068a6089eccbf36483f517288))
12
+
13
+
14
+
6
15
  ## [0.6.0-canary.6](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/builders@0.6.0-canary.5...@artisan-commerce/builders@0.6.0-canary.6) (2021-04-16)
7
16
 
8
17
  **Note:** Version bump only for package @artisan-commerce/builders
@@ -0,0 +1,3 @@
1
+ import { Account } from "@artisan-commerce/types";
2
+ export declare const buildAccount: (overrides?: Partial<Account>) => Account;
3
+ export declare const genAccounts: (quantity?: number | undefined) => Account[];
package/build/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import * as common from "./builders/common.builder";
2
+ import * as accountBuilders from "./builders/account.builder";
2
3
  import * as productBuilders from "./builders/product.builder";
3
4
  import * as categoryBuilders from "./builders/category.builder";
4
5
  import * as vendorBuilders from "./builders/vendor.builder";
@@ -9,5 +10,5 @@ import * as userBuilders from "./builders/user.builder";
9
10
  import * as billingDataBuilders from "./builders/billingData.builder";
10
11
  import * as shippingAddressBuilders from "./builders/shippingAddress.builder";
11
12
  import ArtisanData from "./lib/artisan";
12
- export { common, productBuilders, categoryBuilders, vendorBuilders, shoppingCartBuilders, storeBuilders, channelBuilders, userBuilders, billingDataBuilders, shippingAddressBuilders };
13
+ export { common, accountBuilders, productBuilders, categoryBuilders, vendorBuilders, shoppingCartBuilders, storeBuilders, channelBuilders, userBuilders, billingDataBuilders, shippingAddressBuilders };
13
14
  export default ArtisanData;