@adtrackify/at-tracking-event-types 1.1.0-a5 → 1.1.0-a6
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
|
@@ -396,6 +396,9 @@ declare module '@adtrackify/at-tracking-event-types/types/tracking-events/tracki
|
|
|
396
396
|
import { IResult } from 'ua-parser-js';
|
|
397
397
|
export interface TrackingEventContext {
|
|
398
398
|
identity: TrackingEventIdentity;
|
|
399
|
+
properties?: TrackingEventContextProperties;
|
|
400
|
+
}
|
|
401
|
+
export interface TrackingEventContextProperties {
|
|
399
402
|
click?: AdClickInfo;
|
|
400
403
|
campaign?: CampaignInfo;
|
|
401
404
|
page?: PageInfo;
|
package/package.json
CHANGED
|
@@ -3,6 +3,10 @@ import { IResult } from 'ua-parser-js';
|
|
|
3
3
|
|
|
4
4
|
export interface TrackingEventContext {
|
|
5
5
|
identity: TrackingEventIdentity;
|
|
6
|
+
properties?: TrackingEventContextProperties;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface TrackingEventContextProperties {
|
|
6
10
|
click?: AdClickInfo;
|
|
7
11
|
campaign?: CampaignInfo;
|
|
8
12
|
page?: PageInfo;
|