@artisan-commerce/analytics-rn 0.2.0-canary.14 → 0.2.0-canary.16

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,23 @@
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.2.0-canary.16](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/analytics-rn@0.2.0-canary.15...@artisan-commerce/analytics-rn@0.2.0-canary.16) (2021-05-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **analytics-rn:** fix segment handler ([77b2cd4](https://bitbucket.org/tradesystem/artisan_monorepo/commit/77b2cd4e239ce9c9a414487ffd49c2b34c532495))
12
+
13
+
14
+
15
+ ## [0.2.0-canary.15](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/analytics-rn@0.2.0-canary.14...@artisan-commerce/analytics-rn@0.2.0-canary.15) (2021-05-14)
16
+
17
+ **Note:** Version bump only for package @artisan-commerce/analytics-rn
18
+
19
+
20
+
21
+
22
+
6
23
  ## [0.2.0-canary.14](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/analytics-rn@0.2.0-canary.13...@artisan-commerce/analytics-rn@0.2.0-canary.14) (2021-05-13)
7
24
 
8
25
 
@@ -19,10 +19,12 @@ export interface AnalyticsProviderConstructor {
19
19
  *
20
20
  * @interface IAnaliticsProvider
21
21
  * @since 0.5.14
22
+ * @property {Function} init Initializes the provider connection
22
23
  * @property {Function} updateConfig Updates the initial config of the provider
23
24
  * @property {number[]} vendors The provider selected vendors ids
24
25
  */
25
26
  export interface IAnaliticsProvider {
27
+ init: () => void;
26
28
  updateConfig: (config: Partial<unknown>) => void;
27
29
  vendors: Vendor["id"][] | undefined;
28
30
  }