placementt-core 1.400.701 → 1.400.703
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 +13 -0
- package/package.json +1 -1
- package/src/typeDefinitions.ts +14 -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;
|
|
@@ -827,6 +839,7 @@ export type InstituteData = {
|
|
|
827
839
|
publicEventsDescription?: Descendant[];
|
|
828
840
|
onboarding?: boolean;
|
|
829
841
|
deactivated?: boolean;
|
|
842
|
+
isTest?: boolean;
|
|
830
843
|
} & Address;
|
|
831
844
|
export type ExternalActivity = {
|
|
832
845
|
title?: string;
|
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,
|
|
@@ -827,6 +840,7 @@ export type InstituteData = {
|
|
|
827
840
|
publicEventsDescription?: Descendant[],
|
|
828
841
|
onboarding?: boolean,
|
|
829
842
|
deactivated?: boolean,
|
|
843
|
+
isTest?: boolean
|
|
830
844
|
}&Address;
|
|
831
845
|
|
|
832
846
|
export type ExternalActivity = {
|