@adtrackify/at-tracking-event-types 1.1.12 → 1.1.13

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/dist/index.d.ts CHANGED
@@ -515,15 +515,14 @@ declare module '@adtrackify/at-tracking-event-types/types/tracking-events/tracki
515
515
  }
516
516
  export interface TrackingEventIdentityTraits {
517
517
  [key: string]: any;
518
- userId?: string;
519
- gender?: string;
520
- dob?: string;
521
- phone?: string;
522
- id?: string;
523
- firstName?: string;
524
- lastName?: string;
525
- email?: string;
526
- address?: AddressInfo;
518
+ userId?: string | null;
519
+ gender?: string | null;
520
+ dob?: string | null;
521
+ phone?: string | null;
522
+ id?: string | null;
523
+ firstName?: string | null;
524
+ lastName?: string | null;
525
+ email?: string | null;
527
526
  addresses?: AddressInfo[];
528
527
  }
529
528
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adtrackify/at-tracking-event-types",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "description": "",
5
5
  "module": "./dist/index.js",
6
6
  "main": "./dist/index.js",
@@ -1,21 +1,20 @@
1
- import { AddressInfo } from '../common/address';
2
-
3
- export interface TrackingEventIdentity {
4
- identityId?: string;
5
- anonymousId?: string;
6
- traits?: TrackingEventIdentityTraits;
7
- }
8
-
9
- export interface TrackingEventIdentityTraits {
10
- [ key: string ]: any;
11
- userId?: string;
12
- gender?: string;
13
- dob?: string;
14
- phone?: string;
15
- id?: string;
16
- firstName?: string;
17
- lastName?: string;
18
- email?: string;
19
- address?: AddressInfo;
20
- addresses?: AddressInfo[];
1
+ import { AddressInfo } from '../common/address';
2
+
3
+ export interface TrackingEventIdentity {
4
+ identityId?: string;
5
+ anonymousId?: string;
6
+ traits?: TrackingEventIdentityTraits;
7
+ }
8
+
9
+ export interface TrackingEventIdentityTraits {
10
+ [ key: string ]: any;
11
+ userId?: string | null;
12
+ gender?: string | null;
13
+ dob?: string | null;
14
+ phone?: string | null;
15
+ id?: string | null;
16
+ firstName?: string | null;
17
+ lastName?: string | null;
18
+ email?: string | null;
19
+ addresses?: AddressInfo[];
21
20
  }