evo360-types 1.1.35 → 1.1.36

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.
@@ -5,7 +5,7 @@ import { PeopleAction } from "../evo-people";
5
5
  import { SurveyAction, SurveyDeploymentAction } from "../evo-survey";
6
6
  import { TaskAction } from "../evo-task";
7
7
  import { TenantAction } from "../evo-tenant";
8
- import { EvoApp, FirestoreDocumentReference, IFireDoc, ITag } from "../shared";
8
+ import { EvoApp, IFireDoc, ITag } from "../shared";
9
9
  export type ReadStatus = "new" | "unread" | "read" | "archived" | "dismissed" | "snoozed";
10
10
  export declare enum IReadStatus {
11
11
  New = "new",
@@ -18,8 +18,8 @@ export declare enum IReadStatus {
18
18
  export interface IActivityEvent extends IFireDoc {
19
19
  recipientsIds: string[];
20
20
  creatorName: string;
21
- creatorRef?: FirestoreDocumentReference;
22
- docRef?: FirestoreDocumentReference;
21
+ creatorPath?: string;
22
+ docPath?: string;
23
23
  app: EvoApp;
24
24
  type: CalendarAction | MeetingAction | PeopleAction | SurveyAction | SurveyDeploymentAction | TaskAction | TenantAction;
25
25
  readStatus: ReadStatus;
@@ -5,7 +5,7 @@ import { PeopleAction } from "../evo-people";
5
5
  import { SurveyAction, SurveyDeploymentAction } from "../evo-survey";
6
6
  import { TaskAction } from "../evo-task";
7
7
  import { TenantAction } from "../evo-tenant";
8
- import { EvoApp, FirestoreDocumentReference, IFireDoc, ITag } from "../shared";
8
+ import { EvoApp, IFireDoc, ITag } from "../shared";
9
9
 
10
10
  // Enum for Tenant Action - used in Activities tracking
11
11
  export type ReadStatus =
@@ -28,8 +28,8 @@ export enum IReadStatus {
28
28
  export interface IActivityEvent extends IFireDoc {
29
29
  recipientsIds: string[]; // List of recipients ids
30
30
  creatorName: string; // Name of the user who created the meeting
31
- creatorRef?: FirestoreDocumentReference; // reference to the user who created the event
32
- docRef?: FirestoreDocumentReference;
31
+ creatorPath?: string;
32
+ docPath?: string;
33
33
  app: EvoApp;
34
34
  type:
35
35
  | CalendarAction
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.1.35",
3
+ "version": "1.1.36",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",