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.
@@ -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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.700",
5
+ "version": "1.400.702",
6
6
  "main": "lib/index.js",
7
7
  "types": "lib/index.d.ts",
8
8
  "scripts": {
@@ -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 = {