@maxzima/wa-communicator 1.0.40 → 1.0.41

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,5 +1,5 @@
1
1
  import { GTMEventEnum, GTMEventParamsEnum, LintrkActionTypeEnum, LintrkEventIdEnum } from "./../Enums/AccountTrackerEnum";
2
- type TLintrkOptions = {
2
+ export type TLintrkOptions = {
3
3
  conversation_id: LintrkEventIdEnum;
4
4
  };
5
5
  export type TAccountTrackerProps = {
@@ -12,15 +12,14 @@ export type TAccountTrackerEventParams = {
12
12
  export type TAccountTrackerGtmEventParamsMapping = {
13
13
  [event in GTMEventEnum]: TAccountTrackerGtmEventParams;
14
14
  };
15
- type TAccountTrackerGtmEventParams = TAccountTrackerGtmSignUpEventParams | TAccountTrackerGtmSignUpOnlineEventParams;
16
- type TAccountTrackerGtmSignUpEventParams = {
15
+ export type TAccountTrackerGtmEventParams = TAccountTrackerGtmSignUpEventParams | TAccountTrackerGtmSignUpOnlineEventParams;
16
+ export type TAccountTrackerGtmSignUpEventParams = {
17
17
  [GTMEventParamsEnum.GCLID]: string;
18
18
  [GTMEventParamsEnum.EMAIL]: string;
19
19
  [GTMEventParamsEnum.PHONE]: string;
20
20
  };
21
- type TAccountTrackerGtmSignUpOnlineEventParams = {
21
+ export type TAccountTrackerGtmSignUpOnlineEventParams = {
22
22
  [GTMEventParamsEnum.ORIGIN]: string;
23
23
  [GTMEventParamsEnum.SEND_TO]: string;
24
24
  [GTMEventParamsEnum.GCL_ID]: string;
25
25
  };
26
- export {};
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.40",
2
+ "version": "1.0.41",
3
3
  "name": "@maxzima/wa-communicator",
4
4
  "description": "",
5
5
  "author": "Noname",
@@ -4,7 +4,7 @@ import {
4
4
  LintrkEventIdEnum
5
5
  } from "./../Enums/AccountTrackerEnum";
6
6
 
7
- type TLintrkOptions = {
7
+ export type TLintrkOptions = {
8
8
  conversation_id: LintrkEventIdEnum;
9
9
  }
10
10
 
@@ -21,15 +21,15 @@ export type TAccountTrackerGtmEventParamsMapping = {
21
21
  [event in GTMEventEnum]: TAccountTrackerGtmEventParams;
22
22
  };
23
23
 
24
- type TAccountTrackerGtmEventParams = TAccountTrackerGtmSignUpEventParams | TAccountTrackerGtmSignUpOnlineEventParams;
24
+ export type TAccountTrackerGtmEventParams = TAccountTrackerGtmSignUpEventParams | TAccountTrackerGtmSignUpOnlineEventParams;
25
25
 
26
- type TAccountTrackerGtmSignUpEventParams = {
26
+ export type TAccountTrackerGtmSignUpEventParams = {
27
27
  [GTMEventParamsEnum.GCLID]: string;
28
28
  [GTMEventParamsEnum.EMAIL]: string;
29
29
  [GTMEventParamsEnum.PHONE]: string;
30
30
  }
31
31
 
32
- type TAccountTrackerGtmSignUpOnlineEventParams = {
32
+ export type TAccountTrackerGtmSignUpOnlineEventParams = {
33
33
  [GTMEventParamsEnum.ORIGIN]: string;
34
34
  [GTMEventParamsEnum.SEND_TO]: string;
35
35
  [GTMEventParamsEnum.GCL_ID]: string;