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.
@@ -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
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "name": "placementt-core",
4
4
  "author": "Placementt",
5
- "version": "1.400.701",
5
+ "version": "1.400.703",
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,
@@ -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 = {