placementt-core 1.400.701 → 1.400.702
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/lib/typeDefinitions.d.ts +12 -0
- package/package.json +1 -1
- package/src/typeDefinitions.ts +13 -0
package/lib/typeDefinitions.d.ts
CHANGED
|
@@ -498,6 +498,18 @@ export type AnalyticsItem = {
|
|
|
498
498
|
[key: string]: AnalyticsItem;
|
|
499
499
|
};
|
|
500
500
|
};
|
|
501
|
+
export type UserInteraction = {
|
|
502
|
+
deviceInfo: {
|
|
503
|
+
browser: string;
|
|
504
|
+
deviceType: string;
|
|
505
|
+
os: string;
|
|
506
|
+
ua: string;
|
|
507
|
+
};
|
|
508
|
+
email: string;
|
|
509
|
+
timestamp: string;
|
|
510
|
+
uid: string;
|
|
511
|
+
url: string;
|
|
512
|
+
};
|
|
501
513
|
export type UserGroupData = {
|
|
502
514
|
id: string;
|
|
503
515
|
default?: boolean;
|
package/package.json
CHANGED
package/src/typeDefinitions.ts
CHANGED
|
@@ -484,6 +484,19 @@ export type AnalyticsItem = {
|
|
|
484
484
|
subtypes?: {[key:string]: AnalyticsItem}
|
|
485
485
|
}
|
|
486
486
|
|
|
487
|
+
export type UserInteraction = {
|
|
488
|
+
deviceInfo: {
|
|
489
|
+
browser: string,
|
|
490
|
+
deviceType: string,
|
|
491
|
+
os: string,
|
|
492
|
+
ua: string,
|
|
493
|
+
},
|
|
494
|
+
email: string,
|
|
495
|
+
timestamp: string,
|
|
496
|
+
uid: string,
|
|
497
|
+
url: string,
|
|
498
|
+
}
|
|
499
|
+
|
|
487
500
|
export type UserGroupData = {
|
|
488
501
|
id: string,
|
|
489
502
|
default?: boolean,
|