@artisan-commerce/analytics-web 0.1.1-canary.2 → 0.2.0-canary.1

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.
@@ -1,12 +1,12 @@
1
1
  /**
2
2
  * Google Analytics event shared parameters.
3
3
  *
4
- * @interface ArtisanCommonEventParams
4
+ * @interface ArtisnCommonEventParams
5
5
  * @since 0.5.14
6
6
  * @property {string} userId The user's unique identifier between platforms
7
7
  */
8
- export interface ArtisanCommonEventParams {
9
- artisanName?: string;
8
+ export interface ArtisnCommonEventParams {
9
+ artisnName?: string;
10
10
  }
11
11
  /**
12
12
  * Workflow types.
@@ -7,8 +7,8 @@ import { FilterProductsParams as SegmentFilterProductsParams } from "../../../pr
7
7
  * @interface FilterProductsCommonParams
8
8
  * @since 0.5.14
9
9
  * @property {string} list the name of the list of products to filter
10
- * @property {string} filterBy key:value list of filters e.g. ["brand:Artisan"]
11
- * @property {string} categoryId if the list is an artisan category, the category id
10
+ * @property {string} filterBy key:value list of filters e.g. ["brand:Artisn"]
11
+ * @property {string} categoryId if the list is an artisn category, the category id
12
12
  */
13
13
  export interface FilterProductsCommonParams {
14
14
  list: string;
@@ -9,7 +9,7 @@ import { SortProductsParams as SegmentSortProductsParams } from "../../../provid
9
9
  * @property {string} list the name of the list of products to sort
10
10
  * @property {string} sortBy sort attribute by (e.g. alphabetical)
11
11
  * @property {string} sortMethod method used to sort (e.g. asc)
12
- * @property {string} categoryId if the list is an artisan category, the category id
12
+ * @property {string} categoryId if the list is an artisn category, the category id
13
13
  */
14
14
  export interface SortProductsCommonParams {
15
15
  list: string;
@@ -10,7 +10,7 @@ import { AnalyticsProviderTypes } from "../../types/event.types";
10
10
  * @property {number} activeVendor The vendor that will emit the events
11
11
  * @property {number[]|undefined} vendors List of vendors that can emit events if active
12
12
  * @property {boolean} debug Debug mode
13
- * @property {boolean} shareArtisanAnalytics Share e-commerce analytics with Trade
13
+ * @property {boolean} shareArtisnAnalytics Share e-commerce analytics with Trade
14
14
  * @property {InitAnalyticsConfigMeta} meta Commerce's metadata
15
15
  */
16
16
  export interface InitAnalyticsConfig {
@@ -18,7 +18,7 @@ export interface InitAnalyticsConfig {
18
18
  activeVendor?: Vendor["id"];
19
19
  vendors: Vendor["id"][] | undefined;
20
20
  debug?: boolean;
21
- shareArtisanAnalytics?: boolean;
21
+ shareArtisnAnalytics?: boolean;
22
22
  meta: InitAnalyticsConfigMeta;
23
23
  }
24
24
  /**
@@ -32,7 +32,7 @@ export interface InitAnalyticsConfig {
32
32
  * @property {string} storeName The name of the active store
33
33
  * @property {number} catalogueId The id of the active catalogue
34
34
  * @property {string} catalogueName The name of the active catalogue
35
- * @property {ArtisanPlatform} platform The type of platform it is running on
35
+ * @property {ArtisnPlatform} platform The type of platform it is running on
36
36
  */
37
37
  export interface InitAnalyticsConfigMeta extends Omit<AnalyticsMeta, "vendorId" | "versionSDK" | "platform" | "vendorName" | "storeId" | "storeName" | "catalogueId" | "catalogueName"> {
38
38
  vendorName?: AnalyticsMeta["vendorName"] | undefined;
@@ -17,7 +17,7 @@ declare abstract class AnalyticsProvider implements IAnaliticsProvider {
17
17
  *
18
18
  * @constructs
19
19
  * @since 0.5.14
20
- * @param {Config} config artisan's account unique identifier.
20
+ * @param {Config} config artisn's account unique identifier.
21
21
  */
22
22
  constructor(config: Config);
23
23
  /**
@@ -83,7 +83,7 @@ export declare namespace Segment {
83
83
  value?: number;
84
84
  accountId?: number;
85
85
  app_name?: string;
86
- artisan_event?: string;
86
+ artisn_event?: string;
87
87
  name?: string;
88
88
  platform?: string;
89
89
  price?: number;
@@ -1,18 +1,18 @@
1
- import { Account, ArtisanPlatform, Catalogue } from "@artisan-commerce/types";
1
+ import { Account, ArtisnPlatform, Catalogue } from "@artisan-commerce/types";
2
2
  import { Store, Vendor } from "@artisan-commerce/types";
3
3
  import { FacebookPixelProviderConfig } from "../lib/providers/FacebookPixel/FacebookPixel.types";
4
4
  import { GoogleAnalyticsProviderConfig } from "../lib/providers/GoogleAnalytics/GoogleAnalytics.types";
5
5
  /**
6
6
  * Analytics providers configurable options.
7
7
  *
8
- * @typedef ArtisanPlatform
8
+ * @typedef ArtisnPlatform
9
9
  * @since 0.5.14
10
10
  */
11
11
  export declare type AnalyticsProvidersConfigs = Partial<GoogleAnalyticsProviderConfig> | Partial<FacebookPixelProviderConfig>;
12
12
  /**
13
13
  * Analytics event metadata to be included in every sent event.
14
14
  *
15
- * @interface ArtisanPlatform
15
+ * @interface ArtisnPlatform
16
16
  * @since 0.5.14
17
17
  * @property {number} accountId the id of the account it is running on
18
18
  * @property {number} vendorId the id of the active vendor
@@ -24,7 +24,7 @@ export declare type AnalyticsProvidersConfigs = Partial<GoogleAnalyticsProviderC
24
24
  * @property {string} versionSDK the Analytics SDK version
25
25
  * @property {string} versionApp the running on app version
26
26
  * @property {string} appName the name of the app
27
- * @property {ArtisanPlatform} platform the type of platform it is running on
27
+ * @property {ArtisnPlatform} platform the type of platform it is running on
28
28
  */
29
29
  export interface AnalyticsMeta {
30
30
  accountId: Account["accountId"];
@@ -37,12 +37,12 @@ export interface AnalyticsMeta {
37
37
  versionSDK: string;
38
38
  versionApp: string;
39
39
  appName: string;
40
- platform: ArtisanPlatform;
40
+ platform: ArtisnPlatform;
41
41
  }
42
42
  /**
43
43
  * Analytics supported providers.
44
44
  *
45
- * @typedef ArtisanPlatform
45
+ * @typedef ArtisnPlatform
46
46
  * @since 0.5.14
47
47
  */
48
48
  export declare type SupportedProviders = "GOOGLE_ANALYTICS" | "FACEBOOK_PIXEL" | "SEGMENT";
@@ -5,194 +5,194 @@ import GlobalProvider from "../lib/providers/GlobalProvider/GlobalProvider";
5
5
  import { GoogleAnalyticsProvider } from "../lib/providers/GoogleAnalytics/GoogleAnalytics.types";
6
6
  import { SegmentProvider } from "../lib/providers/Segment/Segment.types";
7
7
  /**
8
- * Types of artisan analytics providers
8
+ * Types of artisn analytics providers
9
9
  *
10
10
  * @typedef AnalyticsProviderTypes
11
11
  * @since 0.5.14
12
12
  */
13
13
  export declare type AnalyticsProviderTypes = AnalyticsProvider | GlobalProvider;
14
14
  /**
15
- * Artisan Auth event names type
15
+ * Artisn Auth event names type
16
16
  *
17
- * @typedef ArtisanAuthEventNames
17
+ * @typedef ArtisnAuthEventNames
18
18
  * @since 0.5.14
19
19
  */
20
- export declare type ArtisanAuthEventNames = "changePasswordAttempt" | "changePasswordFail" | "changePasswordSuccess" | "signIn" | "signOut" | "signUp" | "signUpAttempt";
20
+ export declare type ArtisnAuthEventNames = "changePasswordAttempt" | "changePasswordFail" | "changePasswordSuccess" | "signIn" | "signOut" | "signUp" | "signUpAttempt";
21
21
  /**
22
- * Artisan Banner event names type
22
+ * Artisn Banner event names type
23
23
  *
24
- * @typedef ArtisanBannerEventNames
24
+ * @typedef ArtisnBannerEventNames
25
25
  * @since 0.5.14
26
26
  */
27
- export declare type ArtisanBannerEventNames = "bannerImpression" | "selectBanner";
27
+ export declare type ArtisnBannerEventNames = "bannerImpression" | "selectBanner";
28
28
  /**
29
- * Artisan Billing event names type
29
+ * Artisn Billing event names type
30
30
  *
31
- * @typedef ArtisanBillingEventNames
31
+ * @typedef ArtisnBillingEventNames
32
32
  * @since 0.5.14
33
33
  */
34
- export declare type ArtisanBillingEventNames = "addBillingInfo" | "selectBillingInfo" | "updateBillingInfo";
34
+ export declare type ArtisnBillingEventNames = "addBillingInfo" | "selectBillingInfo" | "updateBillingInfo";
35
35
  /**
36
- * Artisan Booking event names type
36
+ * Artisn Booking event names type
37
37
  *
38
- * @typedef ArtisanBookingEventNames
38
+ * @typedef ArtisnBookingEventNames
39
39
  * @since 0.5.14
40
40
  */
41
- export declare type ArtisanBookingEventNames = "bookAppointment";
41
+ export declare type ArtisnBookingEventNames = "bookAppointment";
42
42
  /**
43
- * Artisan Category event names type
43
+ * Artisn Category event names type
44
44
  *
45
- * @typedef ArtisanCategoryEventNames
45
+ * @typedef ArtisnCategoryEventNames
46
46
  * @since 0.5.14
47
47
  */
48
- export declare type ArtisanCategoryEventNames = "categoryImpression" | "searchCategoryAttempt" | "selectCategory" | "viewCategory";
48
+ export declare type ArtisnCategoryEventNames = "categoryImpression" | "searchCategoryAttempt" | "selectCategory" | "viewCategory";
49
49
  /**
50
- * Artisan Checkout event names type
50
+ * Artisn Checkout event names type
51
51
  *
52
- * @typedef ArtisanCheckoutEventNames
52
+ * @typedef ArtisnCheckoutEventNames
53
53
  * @since 0.5.14
54
54
  */
55
- export declare type ArtisanCheckoutEventNames = "checkoutAction" | "initiateCheckout";
55
+ export declare type ArtisnCheckoutEventNames = "checkoutAction" | "initiateCheckout";
56
56
  /**
57
- * Artisan Coupon event names type
57
+ * Artisn Coupon event names type
58
58
  *
59
- * @typedef ArtisanCouponEventNames
59
+ * @typedef ArtisnCouponEventNames
60
60
  * @since 0.5.14
61
61
  */
62
- export declare type ArtisanCouponEventNames = "applyBenefit" | "couponCodeError" | "redeemCouponCode" | "removeBenefit" | "viewBenefitDetails" | "viewBenefitsWallet" | "viewQRStoreCoupon";
62
+ export declare type ArtisnCouponEventNames = "applyBenefit" | "couponCodeError" | "redeemCouponCode" | "removeBenefit" | "viewBenefitDetails" | "viewBenefitsWallet" | "viewQRStoreCoupon";
63
63
  /**
64
- * Artisan Credit event names type
64
+ * Artisn Credit event names type
65
65
  *
66
- * @typedef ArtisanCreditEventNames
66
+ * @typedef ArtisnCreditEventNames
67
67
  * @since 0.5.14
68
68
  */
69
- export declare type ArtisanCreditEventNames = "addCredits" | "spendCredits" | "viewCredits";
69
+ export declare type ArtisnCreditEventNames = "addCredits" | "spendCredits" | "viewCredits";
70
70
  /**
71
- * Artisan Fulfillment event names type
71
+ * Artisn Fulfillment event names type
72
72
  *
73
- * @typedef ArtisanFulfillmentEventNames
73
+ * @typedef ArtisnFulfillmentEventNames
74
74
  * @since 0.5.14
75
75
  */
76
- export declare type ArtisanFulfillmentEventNames = "viewFulfillmentStep" | "viewTracking";
76
+ export declare type ArtisnFulfillmentEventNames = "viewFulfillmentStep" | "viewTracking";
77
77
  /**
78
- * Artisan Geo event names type
78
+ * Artisn Geo event names type
79
79
  *
80
- * @typedef ArtisanGeoEventNames
80
+ * @typedef ArtisnGeoEventNames
81
81
  * @since 0.5.14
82
82
  */
83
- export declare type ArtisanGeoEventNames = "changeLocation" | "findLocation" | "outOfCoverage" | "setLocation";
83
+ export declare type ArtisnGeoEventNames = "changeLocation" | "findLocation" | "outOfCoverage" | "setLocation";
84
84
  /**
85
- * Artisan Help event names type
85
+ * Artisn Help event names type
86
86
  *
87
- * @typedef ArtisanHelpEventNames
87
+ * @typedef ArtisnHelpEventNames
88
88
  * @since 0.5.14
89
89
  */
90
- export declare type ArtisanHelpEventNames = "requestAssistance";
90
+ export declare type ArtisnHelpEventNames = "requestAssistance";
91
91
  /**
92
- * Artisan Loyalty event names type
92
+ * Artisn Loyalty event names type
93
93
  *
94
- * @typedef ArtisanLoyaltyEventNames
94
+ * @typedef ArtisnLoyaltyEventNames
95
95
  * @since 0.5.14
96
96
  */
97
- export declare type ArtisanLoyaltyEventNames = "earnPoints" | "sharePoints" | "spendPoints" | "viewLoyaltyLevel";
97
+ export declare type ArtisnLoyaltyEventNames = "earnPoints" | "sharePoints" | "spendPoints" | "viewLoyaltyLevel";
98
98
  /**
99
- * Artisan Order event names type
99
+ * Artisn Order event names type
100
100
  *
101
- * @typedef ArtisanOrderEventNames
101
+ * @typedef ArtisnOrderEventNames
102
102
  * @since 0.5.14
103
103
  */
104
- export declare type ArtisanOrderEventNames = "cancelOrder" | "rateOrder" | "requestRefund";
104
+ export declare type ArtisnOrderEventNames = "cancelOrder" | "rateOrder" | "requestRefund";
105
105
  /**
106
- * Artisan Other event names type
106
+ * Artisn Other event names type
107
107
  *
108
- * @typedef ArtisanOtherEventNames
108
+ * @typedef ArtisnOtherEventNames
109
109
  * @since 0.5.14
110
110
  */
111
- export declare type ArtisanOtherEventNames = "generateLead" | "pageView" | "searchPageContent";
111
+ export declare type ArtisnOtherEventNames = "generateLead" | "pageView" | "searchPageContent";
112
112
  /**
113
- * Artisan Payment event names type
113
+ * Artisn Payment event names type
114
114
  *
115
- * @typedef ArtisanPaymentEventNames
115
+ * @typedef ArtisnPaymentEventNames
116
116
  * @since 0.5.14
117
117
  */
118
- export declare type ArtisanPaymentEventNames = "changePaymentType" | "selectPaymentType" | "setPaymentInfo";
118
+ export declare type ArtisnPaymentEventNames = "changePaymentType" | "selectPaymentType" | "setPaymentInfo";
119
119
  /**
120
- * Artisan Product event names type
120
+ * Artisn Product event names type
121
121
  *
122
- * @typedef ArtisanProductEventNames
122
+ * @typedef ArtisnProductEventNames
123
123
  * @since 0.5.14
124
124
  */
125
- export declare type ArtisanProductEventNames = "customizeProduct" | "filterProducts" | "productImpression" | "searchProductAttempt" | "searchProductNotFound" | "searchProductSuccess" | "selectProduct" | "sortProducts" | "viewProductDetails";
125
+ export declare type ArtisnProductEventNames = "customizeProduct" | "filterProducts" | "productImpression" | "searchProductAttempt" | "searchProductNotFound" | "searchProductSuccess" | "selectProduct" | "sortProducts" | "viewProductDetails";
126
126
  /**
127
- * Artisan Purchase event names type
127
+ * Artisn Purchase event names type
128
128
  *
129
- * @typedef ArtisanPurchaseEventNames
129
+ * @typedef ArtisnPurchaseEventNames
130
130
  * @since 0.5.14
131
131
  */
132
- export declare type ArtisanPurchaseEventNames = "purchaseAttempt" | "purchaseFail" | "purchaseSuccess";
132
+ export declare type ArtisnPurchaseEventNames = "purchaseAttempt" | "purchaseFail" | "purchaseSuccess";
133
133
  /**
134
- * Artisan Settings event names type
134
+ * Artisn Settings event names type
135
135
  *
136
- * @typedef ArtisanSettingsEventNames
136
+ * @typedef ArtisnSettingsEventNames
137
137
  * @since 0.5.14
138
138
  */
139
- export declare type ArtisanSettingsEventNames = "viewSettings";
139
+ export declare type ArtisnSettingsEventNames = "viewSettings";
140
140
  /**
141
- * Artisan Shipping event names type
141
+ * Artisn Shipping event names type
142
142
  *
143
- * @typedef ArtisanShippingEventNames
143
+ * @typedef ArtisnShippingEventNames
144
144
  * @since 0.5.14
145
145
  */
146
- export declare type ArtisanShippingEventNames = "addShippingAddress" | "selectShippingAddress" | "updateShippingAddress";
146
+ export declare type ArtisnShippingEventNames = "addShippingAddress" | "selectShippingAddress" | "updateShippingAddress";
147
147
  /**
148
- * Artisan ShoppingCart event names type
148
+ * Artisn ShoppingCart event names type
149
149
  *
150
- * @typedef ArtisanShoppingCartEventNames
150
+ * @typedef ArtisnShoppingCartEventNames
151
151
  * @since 0.5.14
152
152
  */
153
- export declare type ArtisanShoppingCartEventNames = "addProductToCart" | "addProductToWishlist" | "clearCart" | "removeProductFromCart" | "removeProductFromWishlist" | "updateProductInCart" | "updateProductInWishlist" | "viewCart";
153
+ export declare type ArtisnShoppingCartEventNames = "addProductToCart" | "addProductToWishlist" | "clearCart" | "removeProductFromCart" | "removeProductFromWishlist" | "updateProductInCart" | "updateProductInWishlist" | "viewCart";
154
154
  /**
155
- * Artisan Social event names type
155
+ * Artisn Social event names type
156
156
  *
157
- * @typedef ArtisanSocialEventNames
157
+ * @typedef ArtisnSocialEventNames
158
158
  * @since 0.5.14
159
159
  */
160
- export declare type ArtisanSocialEventNames = "share";
160
+ export declare type ArtisnSocialEventNames = "share";
161
161
  /**
162
- * Artisan Store event names type
162
+ * Artisn Store event names type
163
163
  *
164
- * @typedef ArtisanStoreEventNames
164
+ * @typedef ArtisnStoreEventNames
165
165
  * @since 0.5.14
166
166
  */
167
- export declare type ArtisanStoreEventNames = "changeStore" | "setStore";
167
+ export declare type ArtisnStoreEventNames = "changeStore" | "setStore";
168
168
  /**
169
- * Artisan User event names type
169
+ * Artisn User event names type
170
170
  *
171
- * @typedef ArtisanUserEventNames
171
+ * @typedef ArtisnUserEventNames
172
172
  * @since 0.5.14
173
173
  */
174
- export declare type ArtisanUserEventNames = "setUserInfo" | "updateUserInfo";
174
+ export declare type ArtisnUserEventNames = "setUserInfo" | "updateUserInfo";
175
175
  /**
176
- * Artisan Vendor event names type
176
+ * Artisn Vendor event names type
177
177
  *
178
- * @typedef ArtisanVendorEventNames
178
+ * @typedef ArtisnVendorEventNames
179
179
  * @since 0.5.14
180
180
  */
181
- export declare type ArtisanVendorEventNames = "changeVendor" | "setVendor";
181
+ export declare type ArtisnVendorEventNames = "changeVendor" | "setVendor";
182
182
  /**
183
- * Artisan Workflow event names type
183
+ * Artisn Workflow event names type
184
184
  *
185
- * @typedef ArtisanWorkflowEventNames
185
+ * @typedef ArtisnWorkflowEventNames
186
186
  * @since 0.5.14
187
187
  */
188
- export declare type ArtisanWorkflowEventNames = "selectWorkflow" | "updateWorkflow";
188
+ export declare type ArtisnWorkflowEventNames = "selectWorkflow" | "updateWorkflow";
189
189
  /**
190
- * Artisan event names type
190
+ * Artisn event names type
191
191
  *
192
- * @typedef ArtisanEventNames
192
+ * @typedef ArtisnEventNames
193
193
  * @since 0.5.14
194
194
  */
195
- export declare type ArtisanEventNames = ArtisanAuthEventNames | ArtisanBannerEventNames | ArtisanBillingEventNames | ArtisanBookingEventNames | ArtisanCategoryEventNames | ArtisanCheckoutEventNames | ArtisanCouponEventNames | ArtisanCreditEventNames | ArtisanFulfillmentEventNames | ArtisanGeoEventNames | ArtisanHelpEventNames | ArtisanLoyaltyEventNames | ArtisanOrderEventNames | ArtisanOtherEventNames | ArtisanPaymentEventNames | ArtisanProductEventNames | ArtisanPurchaseEventNames | ArtisanSettingsEventNames | ArtisanShippingEventNames | ArtisanShoppingCartEventNames | ArtisanSocialEventNames | ArtisanStoreEventNames | ArtisanUserEventNames | ArtisanVendorEventNames | ArtisanWorkflowEventNames;
195
+ export declare type ArtisnEventNames = ArtisnAuthEventNames | ArtisnBannerEventNames | ArtisnBillingEventNames | ArtisnBookingEventNames | ArtisnCategoryEventNames | ArtisnCheckoutEventNames | ArtisnCouponEventNames | ArtisnCreditEventNames | ArtisnFulfillmentEventNames | ArtisnGeoEventNames | ArtisnHelpEventNames | ArtisnLoyaltyEventNames | ArtisnOrderEventNames | ArtisnOtherEventNames | ArtisnPaymentEventNames | ArtisnProductEventNames | ArtisnPurchaseEventNames | ArtisnSettingsEventNames | ArtisnShippingEventNames | ArtisnShoppingCartEventNames | ArtisnSocialEventNames | ArtisnStoreEventNames | ArtisnUserEventNames | ArtisnVendorEventNames | ArtisnWorkflowEventNames;
196
196
  /**
197
197
  * ProvidersHandlers interface
198
198
  *
@@ -6,7 +6,7 @@ export interface GlobalState {
6
6
  activeVendor?: StrictInitAnalyticsConfig["activeVendor"];
7
7
  vendors: StrictInitAnalyticsConfig["vendors"];
8
8
  debug: StrictInitAnalyticsConfig["debug"];
9
- shareArtisanAnalytics: StrictInitAnalyticsConfig["shareArtisanAnalytics"];
9
+ shareArtisnAnalytics: StrictInitAnalyticsConfig["shareArtisnAnalytics"];
10
10
  meta: GlobalStateMeta;
11
11
  }
12
12
  export interface GlobalStateMeta extends Omit<AnalyticsMeta, "accountId" | "vendorId" | "vendorName" | "storeId" | "storeName" | "catalogueId" | "catalogueName" | "appName" | "versionApp"> {
@@ -7,7 +7,7 @@ import { Segment } from "../lib/providers/Segment/Segment.types";
7
7
  * Triage event to each provider handler.
8
8
  *
9
9
  * @since 0.5.14
10
- * @param {string} eventName The Artisan event name
10
+ * @param {string} eventName The Artisn event name
11
11
  * @param {T} params The event parameters
12
12
  * @param {ProvidersHandlers<T>} providersHandlers The providers handlers
13
13
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@artisan-commerce/analytics-web",
3
- "description": "Artisan commerce analytics web library",
4
- "version": "0.1.1-canary.2",
3
+ "description": "Artisn commerce analytics web library",
4
+ "version": "0.2.0-canary.1",
5
5
  "main": "./build/main.bundle.js",
6
6
  "types": "./build/src/index.d.ts",
7
7
  "files": [
@@ -10,10 +10,10 @@
10
10
  "README.md"
11
11
  ],
12
12
  "scripts": {
13
- "start": "webpack --config webpack.dev.js",
14
- "dev": "yarn start",
13
+ "compile": "webpack --config webpack.dev.js",
14
+ "dev": "yarn compile",
15
15
  "build": "webpack --config webpack.prod.js",
16
- "start:build": "nodemon ./build/main.bundle.js",
16
+ "compile:build": "nodemon ./build/main.bundle.js",
17
17
  "test": "jest --watchAll --runInBand",
18
18
  "test:all": "yarn test --watchAll=false --coverage",
19
19
  "test:ci": "cross-env CI=true jest --runInBand",
@@ -30,13 +30,13 @@
30
30
  "author": "Luis Eduardo Andrade",
31
31
  "license": "MIT",
32
32
  "dependencies": {
33
- "@artisan-commerce/state": "0.2.2",
33
+ "@artisan-commerce/state": "0.3.0-canary.0",
34
34
  "snake-case": "^3.0.4"
35
35
  },
36
36
  "devDependencies": {
37
- "@artisan-commerce/products": "0.9.0-canary.1",
38
- "@artisan-commerce/shopping-cart": "0.11.1-canary.2",
39
- "@artisan-commerce/types": "0.14.0-canary.1",
37
+ "@artisan-commerce/products": "0.9.0-canary.3",
38
+ "@artisan-commerce/shopping-cart": "0.12.0-canary.1",
39
+ "@artisan-commerce/types": "0.14.0-canary.2",
40
40
  "@babel/core": "^7.10.5",
41
41
  "@babel/preset-env": "^7.10.4",
42
42
  "@babel/preset-react": "^7.10.4",
@@ -83,5 +83,5 @@
83
83
  "@artisan-commerce/products": "*",
84
84
  "@artisan-commerce/shopping-cart": "*"
85
85
  },
86
- "gitHead": "caa730307125598ed71f2a24e10c7843a06e600d"
86
+ "gitHead": "da1c7820cf9724d2eff6d616f5583e5c3eb5da7f"
87
87
  }