placementt-core 1.400.700 → 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 +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;
|
|
@@ -826,6 +838,7 @@ export type InstituteData = {
|
|
|
826
838
|
parentDatabaseEmailTemplate?: string;
|
|
827
839
|
publicEventsDescription?: Descendant[];
|
|
828
840
|
onboarding?: boolean;
|
|
841
|
+
deactivated?: boolean;
|
|
829
842
|
} & Address;
|
|
830
843
|
export type ExternalActivity = {
|
|
831
844
|
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,
|
|
@@ -826,6 +839,7 @@ export type InstituteData = {
|
|
|
826
839
|
parentDatabaseEmailTemplate?: string,
|
|
827
840
|
publicEventsDescription?: Descendant[],
|
|
828
841
|
onboarding?: boolean,
|
|
842
|
+
deactivated?: boolean,
|
|
829
843
|
}&Address;
|
|
830
844
|
|
|
831
845
|
export type ExternalActivity = {
|