evo360-types 1.1.13 → 1.1.15

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.
Files changed (33) hide show
  1. package/dist/index.d.ts +8 -8
  2. package/dist/index.js +8 -8
  3. package/dist/types/evo-calendar/fb_collections.d.ts +2 -5
  4. package/dist/types/evo-calendar/fb_collections.js +7 -0
  5. package/dist/types/evo-calendar/index.d.ts +37 -48
  6. package/dist/types/evo-calendar/index.js +31 -0
  7. package/dist/types/evo-core/index.d.ts +30 -37
  8. package/dist/types/evo-core/index.js +2 -0
  9. package/dist/types/evo-meeting/fb_collections.d.ts +2 -5
  10. package/dist/types/evo-meeting/fb_collections.js +7 -0
  11. package/dist/types/evo-meeting/index.d.ts +38 -55
  12. package/dist/types/evo-meeting/index.js +26 -0
  13. package/dist/types/evo-people/fb_collections.d.ts +5 -8
  14. package/dist/types/evo-people/fb_collections.js +10 -0
  15. package/dist/types/evo-people/index.d.ts +67 -81
  16. package/dist/types/evo-people/index.js +24 -0
  17. package/dist/types/evo-survey/fb_collections.d.ts +7 -12
  18. package/dist/types/evo-survey/fb_collections.js +13 -0
  19. package/dist/types/evo-survey/index.d.ts +102 -128
  20. package/dist/types/evo-survey/index.js +65 -0
  21. package/dist/types/evo-task/fb_collections.d.ts +2 -5
  22. package/dist/types/evo-task/fb_collections.js +7 -0
  23. package/dist/types/evo-task/index.d.ts +22 -35
  24. package/dist/types/evo-task/index.js +32 -0
  25. package/dist/types/evo-tenant/fb_collections.d.ts +1 -2
  26. package/dist/types/evo-tenant/fb_collections.js +5 -0
  27. package/dist/types/evo-tenant/index.d.ts +14 -19
  28. package/dist/types/evo-tenant/index.js +29 -0
  29. package/dist/types/shared/fb_collections.d.ts +5 -14
  30. package/dist/types/shared/fb_collections.js +13 -0
  31. package/dist/types/shared/index.d.ts +16 -40
  32. package/dist/types/shared/index.js +17 -0
  33. package/package.json +3 -2
package/dist/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- export * from "./types/shared";
2
- export * from "./types/evo-core";
3
- export * from "./types/evo-tenant";
4
- export * from "./types/evo-people";
5
- export * from "./types/evo-calendar";
6
- export * from "./types/evo-task";
7
- export * from "./types/evo-survey";
8
- export * from "./types/evo-meeting";
1
+ export * from "./types/shared/index";
2
+ export * from "./types/evo-core/index";
3
+ export * from "./types/evo-tenant/index";
4
+ export * from "./types/evo-people/index";
5
+ export * from "./types/evo-calendar/index";
6
+ export * from "./types/evo-task/index";
7
+ export * from "./types/evo-survey/index";
8
+ export * from "./types/evo-meeting/index";
9
9
  export * from "./apps/shared/zod-schemas";
10
10
  export * from "./apps/evo-core/zod-schemas";
11
11
  export * from "./apps/evo-tenant/zod-schemas";
package/dist/index.js CHANGED
@@ -15,14 +15,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  // @evo360/types/index.ts
18
- __exportStar(require("./types/shared"), exports);
19
- __exportStar(require("./types/evo-core"), exports);
20
- __exportStar(require("./types/evo-tenant"), exports);
21
- __exportStar(require("./types/evo-people"), exports);
22
- __exportStar(require("./types/evo-calendar"), exports);
23
- __exportStar(require("./types/evo-task"), exports);
24
- __exportStar(require("./types/evo-survey"), exports);
25
- __exportStar(require("./types/evo-meeting"), exports);
18
+ __exportStar(require("./types/shared/index"), exports);
19
+ __exportStar(require("./types/evo-core/index"), exports);
20
+ __exportStar(require("./types/evo-tenant/index"), exports);
21
+ __exportStar(require("./types/evo-people/index"), exports);
22
+ __exportStar(require("./types/evo-calendar/index"), exports);
23
+ __exportStar(require("./types/evo-task/index"), exports);
24
+ __exportStar(require("./types/evo-survey/index"), exports);
25
+ __exportStar(require("./types/evo-meeting/index"), exports);
26
26
  // zod schemas
27
27
  __exportStar(require("./apps/shared/zod-schemas"), exports);
28
28
  __exportStar(require("./apps/evo-core/zod-schemas"), exports);
@@ -1,5 +1,2 @@
1
- //EVO Calendar Application Doc
2
- export const EVO_CALENDAR_APP = "evo-calendar";
3
-
4
- //Calendar collection
5
- export const EVENTS_COLLECTION = "events";
1
+ export declare const EVO_CALENDAR_APP = "evo-calendar";
2
+ export declare const EVENTS_COLLECTION = "events";
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EVENTS_COLLECTION = exports.EVO_CALENDAR_APP = void 0;
4
+ //EVO Calendar Application Doc
5
+ exports.EVO_CALENDAR_APP = "evo-calendar";
6
+ //Calendar collection
7
+ exports.EVENTS_COLLECTION = "events";
@@ -1,61 +1,50 @@
1
1
  export * from "./fb_collections";
2
2
  import { FirestoreDocumentReference, IFireDoc, ITag } from "../shared";
3
3
  import { MeetingType } from "../evo-meeting";
4
-
5
- // ----- CalendarTypes
6
- // Enum for Event Instance Status
7
4
  export type EventStatus = "scheduled" | "completed" | "cancelled";
8
- export enum IEventStatus {
9
- Scheduled = "scheduled", // The event is scheduled and upcoming
10
- Completed = "completed", // The event has been completed
11
- Cancelled = "cancelled", // The event has been cancelled
5
+ export declare enum IEventStatus {
6
+ Scheduled = "scheduled",
7
+ Completed = "completed",
8
+ Cancelled = "cancelled"
12
9
  }
13
-
14
- // Enum for Event Types
15
10
  export type EventType = "event" | "meeting" | "workshop" | "other";
16
- export enum IEventType {
17
- Event = "event", // A general event type
18
- Meeting = "meeting", // A meeting event
19
- Workshop = "workshop", // A workshop event
20
- Other = "other", // Any other type of event
11
+ export declare enum IEventType {
12
+ Event = "event",
13
+ Meeting = "meeting",
14
+ Workshop = "workshop",
15
+ Other = "other"
21
16
  }
22
-
23
- // Interface for Meeting within a Event (meetingTasks)
24
17
  export interface IEventMeeting {
25
- meetingRef?: FirestoreDocumentReference; // Reference to the original task
26
- type: MeetingType; // Type of meeting
27
- readonly task_count?: number;
28
- readonly talkingPoints_count?: number;
29
- tags?: ITag[];
18
+ meetingRef?: FirestoreDocumentReference;
19
+ type: MeetingType;
20
+ readonly task_count?: number;
21
+ readonly talkingPoints_count?: number;
22
+ tags?: ITag[];
30
23
  }
31
-
32
- // Interface for Recurring Events (recurringEvents)
33
24
  export interface IRecurringEvent extends IFireDoc {
34
- title: string; // Title of the meeting
35
- description?: string; // Optional description of the meeting
36
- creatorName: string; // Name of the user who created the event
37
- creatorRef?: FirestoreDocumentReference; // reference to the user who created the event
38
- participants: string[]; // List of participant IDs
39
- startDate: Date; // Start date and time of the first meeting
40
- endDate?: Date; // Optional end date and time of the recurring meeting
41
- type: EventType; // Type of event
42
- rrule: string; // Recurrence rule in RRULE format
43
- exceptions: string[]; // List of instance IDs that represent exceptions
25
+ title: string;
26
+ description?: string;
27
+ creatorName: string;
28
+ creatorRef?: FirestoreDocumentReference;
29
+ participants: string[];
30
+ startDate: Date;
31
+ endDate?: Date;
32
+ type: EventType;
33
+ rrule: string;
34
+ exceptions: string[];
44
35
  }
45
-
46
- // Interface for Event Instances (eventInstances)
47
36
  export interface IEvent extends IFireDoc {
48
- recurringRef?: FirestoreDocumentReference; // Reference to the recurring event rule (optional)
49
- title: string; // Title of the event
50
- description?: string; // Optional description of the event
51
- creatorName: string; // Name of the user who created the event
52
- creatorRef?: FirestoreDocumentReference; // reference to the user who created the event
53
- participantNames?: string[]; // List of participant names
54
- participantRefs?: FirestoreDocumentReference[]; // List of participant references
55
- startDate: Date; // Start date and time of the event
56
- endDate?: Date; // Optional end date and time of the event
57
- type: EventType; // Type of event
58
- tags?: ITag[];
59
- meeting?: IEventMeeting;
60
- status: EventStatus; // Status of the event
37
+ recurringRef?: FirestoreDocumentReference;
38
+ title: string;
39
+ description?: string;
40
+ creatorName: string;
41
+ creatorRef?: FirestoreDocumentReference;
42
+ participantNames?: string[];
43
+ participantRefs?: FirestoreDocumentReference[];
44
+ startDate: Date;
45
+ endDate?: Date;
46
+ type: EventType;
47
+ tags?: ITag[];
48
+ meeting?: IEventMeeting;
49
+ status: EventStatus;
61
50
  }
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.IEventType = exports.IEventStatus = void 0;
18
+ __exportStar(require("./fb_collections"), exports);
19
+ var IEventStatus;
20
+ (function (IEventStatus) {
21
+ IEventStatus["Scheduled"] = "scheduled";
22
+ IEventStatus["Completed"] = "completed";
23
+ IEventStatus["Cancelled"] = "cancelled";
24
+ })(IEventStatus = exports.IEventStatus || (exports.IEventStatus = {}));
25
+ var IEventType;
26
+ (function (IEventType) {
27
+ IEventType["Event"] = "event";
28
+ IEventType["Meeting"] = "meeting";
29
+ IEventType["Workshop"] = "workshop";
30
+ IEventType["Other"] = "other";
31
+ })(IEventType = exports.IEventType || (exports.IEventType = {}));
@@ -1,48 +1,41 @@
1
1
  import { FirestoreDocumentReference, IFireDoc } from "../shared";
2
-
3
- //UserTypes
4
2
  export interface IUserSpecialRoles {
5
- is_admin: boolean;
6
- is_sys_admin: boolean;
3
+ is_admin: boolean;
4
+ is_sys_admin: boolean;
7
5
  }
8
-
9
6
  export interface IUser extends IUserSpecialRoles, IFireDoc {
10
- display_name: string;
11
- email: string;
12
- email_verified?: string;
13
- full_name: string;
14
- last_access: Date;
15
- member_since: Date;
16
- mobile_number?: string;
17
- mobile_number_verified?: boolean;
18
- phone_number?: null | string;
19
- picture_url?: null | string;
20
- role: number;
21
- tenantRef?: FirestoreDocumentReference | null;
22
- tenants?: string[];
23
- sid?: null | string;
7
+ display_name: string;
8
+ email: string;
9
+ email_verified?: string;
10
+ full_name: string;
11
+ last_access: Date;
12
+ member_since: Date;
13
+ mobile_number?: string;
14
+ mobile_number_verified?: boolean;
15
+ phone_number?: null | string;
16
+ picture_url?: null | string;
17
+ role: number;
18
+ tenantRef?: FirestoreDocumentReference | null;
19
+ tenants?: string[];
20
+ sid?: null | string;
24
21
  }
25
-
26
- //AuthTypes
27
22
  export interface ILogin {
28
- id: string;
29
- user?: FirestoreDocumentReference;
30
- displayname?: string | null;
31
- email?: string | null;
32
- emailverif?: false | boolean;
33
- providerId?: string | null;
23
+ id: string;
24
+ user?: FirestoreDocumentReference;
25
+ displayname?: string | null;
26
+ email?: string | null;
27
+ emailverif?: false | boolean;
28
+ providerId?: string | null;
34
29
  }
35
-
36
30
  export interface IAction {
37
- code: number;
38
- action: string;
39
- created_at: Date;
40
- args?: IActionArgs | string | unknown | null;
41
- user?: FirestoreDocumentReference;
31
+ code: number;
32
+ action: string;
33
+ created_at: Date;
34
+ args?: IActionArgs | string | unknown | null;
35
+ user?: FirestoreDocumentReference;
42
36
  }
43
-
44
37
  export interface IActionArgs {
45
- old_values?: Record<string, any>;
46
- new_values?: Record<string, any>;
47
- deleted_at?: Date;
38
+ old_values?: Record<string, any>;
39
+ new_values?: Record<string, any>;
40
+ deleted_at?: Date;
48
41
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,2 @@
1
- //EVO Meeting Application Doc
2
- export const EVO_MEETING_APP = "evo-meeting";
3
-
4
- //meetings collection
5
- export const MEETINGS_COLLECTION = "meetings";
1
+ export declare const EVO_MEETING_APP = "evo-meeting";
2
+ export declare const MEETINGS_COLLECTION = "meetings";
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MEETINGS_COLLECTION = exports.EVO_MEETING_APP = void 0;
4
+ //EVO Meeting Application Doc
5
+ exports.EVO_MEETING_APP = "evo-meeting";
6
+ //meetings collection
7
+ exports.MEETINGS_COLLECTION = "meetings";
@@ -1,69 +1,52 @@
1
1
  export * from "./fb_collections";
2
2
  import { FirestoreDocumentReference, IFireDoc, ITag } from "../shared";
3
3
  import { TaskPriority, TaskStatus } from "../evo-task";
4
-
5
- // ----- MeetingTypes
6
- export type MeetingType =
7
- | "regular"
8
- | "oneonone"
9
- | "feedback"
10
- | "presentation"
11
- | "other";
12
- export enum IMeetingType {
13
- Regular = "regular", // A regular meeting
14
- OneOnOne = "oneonone", // A one-on-one meeting
15
- Feedback = "feedback", // A feedback session
16
- Presentation = "presentation", // A presentation meeting
17
- Other = "other", // Any other type of meeting
4
+ export type MeetingType = "regular" | "oneonone" | "feedback" | "presentation" | "other";
5
+ export declare enum IMeetingType {
6
+ Regular = "regular",
7
+ OneOnOne = "oneonone",
8
+ Feedback = "feedback",
9
+ Presentation = "presentation",
10
+ Other = "other"
18
11
  }
19
-
20
- // Interface for Event within a Meeting (meetingEvent)
21
12
  export interface IMeetingEvent {
22
- eventRef?: FirestoreDocumentReference; // Reference to the original event
23
- participantNames: string[]; // List of participant names
24
- participantRefs?: FirestoreDocumentReference[]; // List of participant references
25
- startDate: Date; // Start date and time of the event
26
- endDate?: Date; // Optional end date and time of the event
13
+ eventRef?: FirestoreDocumentReference;
14
+ participantNames: string[];
15
+ participantRefs?: FirestoreDocumentReference[];
16
+ startDate: Date;
17
+ endDate?: Date;
27
18
  }
28
-
29
- // Interface for Tasks within a Meeting (meetingTasks)
30
19
  export interface IMeetingTask {
31
- taskRef?: FirestoreDocumentReference; // Reference to the original task
32
- title: string; // Title (copied from the original task)
33
- status: TaskStatus; // Status (can be updated independently from the original task)
34
- priority?: TaskPriority; // Priority (copied from the original task)
35
- assigneeName?: string; // Name of the assignee (copied from the original task)
20
+ taskRef?: FirestoreDocumentReference;
21
+ title: string;
22
+ status: TaskStatus;
23
+ priority?: TaskPriority;
24
+ assigneeName?: string;
36
25
  }
37
-
38
- // Interface for Talking Point Templates (talkingPointTemplates)
39
26
  export interface ITalkingPointTemplate extends IFireDoc {
40
- title: string; // Title of the talking point
41
- description?: string; // Optional detailed description
42
- tags?: ITag[]; // Optional tags for categorization
27
+ title: string;
28
+ description?: string;
29
+ tags?: ITag[];
43
30
  }
44
-
45
- // Interface for Talking Points within a Meeting (meetingTalkingPoints)
46
31
  export interface IMeetingTalkingPoint {
47
- templateRef?: FirestoreDocumentReference; // Reference to the original template
48
- title: string; // Title (can be copied from the template or edited)
49
- description?: string; // Description (can be copied from the template or edited)
50
- tags?: ITag[]; // Tags (can be copied from the template or edited)
51
- discussed: boolean; // Flag to indicate if the talking point was discussed
52
- notes?: string; // Optional field for notes taken during the discussion
53
- assigneeName?: string; // Name of the assignee (optional)
54
- assigneeRef?: FirestoreDocumentReference; // Reference to the assignee (optional)
32
+ templateRef?: FirestoreDocumentReference;
33
+ title: string;
34
+ description?: string;
35
+ tags?: ITag[];
36
+ discussed: boolean;
37
+ notes?: string;
38
+ assigneeName?: string;
39
+ assigneeRef?: FirestoreDocumentReference;
55
40
  }
56
-
57
- // Interface for Meeting Instances (meetingInstances)
58
41
  export interface IMeeting extends IFireDoc {
59
- title: string; // Title of the meeting
60
- description?: string; // Optional description of the meeting
61
- creatorName: string; // Name of the user who created the meeting
62
- creatorRef?: FirestoreDocumentReference; // reference to the user who created the meeting
63
- event: IMeetingEvent;
64
- type: MeetingType; // Type of meeting
65
- tasks?: IMeetingTask[];
66
- talkingPoints?: IMeetingTalkingPoint[];
67
- tags?: ITag[];
68
- [key: string]: unknown; // index signature
42
+ title: string;
43
+ description?: string;
44
+ creatorName: string;
45
+ creatorRef?: FirestoreDocumentReference;
46
+ event: IMeetingEvent;
47
+ type: MeetingType;
48
+ tasks?: IMeetingTask[];
49
+ talkingPoints?: IMeetingTalkingPoint[];
50
+ tags?: ITag[];
51
+ [key: string]: unknown;
69
52
  }
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.IMeetingType = void 0;
18
+ __exportStar(require("./fb_collections"), exports);
19
+ var IMeetingType;
20
+ (function (IMeetingType) {
21
+ IMeetingType["Regular"] = "regular";
22
+ IMeetingType["OneOnOne"] = "oneonone";
23
+ IMeetingType["Feedback"] = "feedback";
24
+ IMeetingType["Presentation"] = "presentation";
25
+ IMeetingType["Other"] = "other";
26
+ })(IMeetingType = exports.IMeetingType || (exports.IMeetingType = {}));
@@ -1,8 +1,5 @@
1
- //EVO People Application Doc
2
- export const EVO_PEOPLE_APP = "evo-people";
3
-
4
- //people
5
- export const COMPANIES_COLLECTION = "companies";
6
- export const DEPARTMENTS_COLLECTION = "departments";
7
- export const OFFICES_COLLECTION = "offices";
8
- export const EMPLOYEES_COLLECTION = "employees";
1
+ export declare const EVO_PEOPLE_APP = "evo-people";
2
+ export declare const COMPANIES_COLLECTION = "companies";
3
+ export declare const DEPARTMENTS_COLLECTION = "departments";
4
+ export declare const OFFICES_COLLECTION = "offices";
5
+ export declare const EMPLOYEES_COLLECTION = "employees";
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EMPLOYEES_COLLECTION = exports.OFFICES_COLLECTION = exports.DEPARTMENTS_COLLECTION = exports.COMPANIES_COLLECTION = exports.EVO_PEOPLE_APP = void 0;
4
+ //EVO People Application Doc
5
+ exports.EVO_PEOPLE_APP = "evo-people";
6
+ //people
7
+ exports.COMPANIES_COLLECTION = "companies";
8
+ exports.DEPARTMENTS_COLLECTION = "departments";
9
+ exports.OFFICES_COLLECTION = "offices";
10
+ exports.EMPLOYEES_COLLECTION = "employees";
@@ -1,96 +1,82 @@
1
1
  export * from "./fb_collections";
2
- import {
3
- FirestoreDocumentReference,
4
- IFireDoc,
5
- IGeoPoint,
6
- ITag,
7
- } from "../shared";
8
-
9
- // ----- PeopleTypes
10
- // PeopleTypes
2
+ import { FirestoreDocumentReference, IFireDoc, IGeoPoint, ITag } from "../shared";
11
3
  export type EmployeeStatus = "active" | "inactive" | "draft";
12
- export enum IEmployeeStatus {
13
- Active = "active",
14
- Inactive = "inactive",
15
- Draft = "draft",
4
+ export declare enum IEmployeeStatus {
5
+ Active = "active",
6
+ Inactive = "inactive",
7
+ Draft = "draft"
16
8
  }
17
-
18
9
  export interface IEmployeeCounters {
19
- active: number;
20
- inactive: number;
21
- draft: number;
22
- deleted: number;
23
- total: number;
10
+ active: number;
11
+ inactive: number;
12
+ draft: number;
13
+ deleted: number;
14
+ total: number;
24
15
  }
25
-
26
16
  export interface IProfile extends IFireDoc {
27
- display_name: string;
28
- last_name?: string | null;
29
- first_name?: string | null;
30
- gender?: string | null;
31
- birthdate?: Date | null;
32
- photo_ref?: string | null;
33
- photo_url?: string | null;
17
+ display_name: string;
18
+ last_name?: string | null;
19
+ first_name?: string | null;
20
+ gender?: string | null;
21
+ birthdate?: Date | null;
22
+ photo_ref?: string | null;
23
+ photo_url?: string | null;
34
24
  }
35
-
36
25
  export interface IEmployee extends IProfile {
37
- employee_id?: string | null;
38
- type?: string | null;
39
- job_title?: string | null;
40
- status?: EmployeeStatus;
41
- company_name?: string | null;
42
- companyRef?: FirestoreDocumentReference;
43
- date_joining?: Date | null;
44
- reporting_to_name?: string | null;
45
- reporting_toRef?: FirestoreDocumentReference;
46
- department_name?: string | null;
47
- departmentRef?: FirestoreDocumentReference;
48
- office_name?: string | null;
49
- officeRef?: FirestoreDocumentReference;
50
- work_email?: string | null;
51
- work_phone?: string | null;
52
- work_mobile?: string | null;
53
- tags?: ITag[];
54
- userRef?: FirestoreDocumentReference;
55
- [key: string]: unknown; // index signature
26
+ employee_id?: string | null;
27
+ type?: string | null;
28
+ job_title?: string | null;
29
+ status?: EmployeeStatus;
30
+ company_name?: string | null;
31
+ companyRef?: FirestoreDocumentReference;
32
+ date_joining?: Date | null;
33
+ reporting_to_name?: string | null;
34
+ reporting_toRef?: FirestoreDocumentReference;
35
+ department_name?: string | null;
36
+ departmentRef?: FirestoreDocumentReference;
37
+ office_name?: string | null;
38
+ officeRef?: FirestoreDocumentReference;
39
+ work_email?: string | null;
40
+ work_phone?: string | null;
41
+ work_mobile?: string | null;
42
+ tags?: ITag[];
43
+ userRef?: FirestoreDocumentReference;
44
+ [key: string]: unknown;
56
45
  }
57
-
58
46
  export interface IDepartment extends IFireDoc {
59
- code: string;
60
- name: string;
61
- lead_name?: string | null;
62
- leadRef?: FirestoreDocumentReference;
63
- parent_department_name?: string | null;
64
- parent_departmentRef?: FirestoreDocumentReference | null;
65
- readonly employee_counters?: IEmployeeCounters;
66
- tags?: ITag[];
47
+ code: string;
48
+ name: string;
49
+ lead_name?: string | null;
50
+ leadRef?: FirestoreDocumentReference;
51
+ parent_department_name?: string | null;
52
+ parent_departmentRef?: FirestoreDocumentReference | null;
53
+ readonly employee_counters?: IEmployeeCounters;
54
+ tags?: ITag[];
67
55
  }
68
-
69
56
  export interface IOffice extends IFireDoc {
70
- code: string;
71
- name: string;
72
- timezone?: string | null;
73
- company_name?: string | null;
74
- companyRef?: FirestoreDocumentReference;
75
- lead_name?: string | null;
76
- leadRef?: FirestoreDocumentReference;
77
- address_line1?: string;
78
- address_line2?: string;
79
- address_city?: string;
80
- address_state?: string;
81
- address_zip?: string;
82
- address_country?: string;
83
- address_geo?: IGeoPoint;
84
- readonly employee_counters?: IEmployeeCounters;
85
- tags?: ITag[];
57
+ code: string;
58
+ name: string;
59
+ timezone?: string | null;
60
+ company_name?: string | null;
61
+ companyRef?: FirestoreDocumentReference;
62
+ lead_name?: string | null;
63
+ leadRef?: FirestoreDocumentReference;
64
+ address_line1?: string;
65
+ address_line2?: string;
66
+ address_city?: string;
67
+ address_state?: string;
68
+ address_zip?: string;
69
+ address_country?: string;
70
+ address_geo?: IGeoPoint;
71
+ readonly employee_counters?: IEmployeeCounters;
72
+ tags?: ITag[];
86
73
  }
87
-
88
74
  export interface ICompany extends IFireDoc {
89
- code: string;
90
- name: string;
91
- lead_name?: string | null;
92
- leadRef?: FirestoreDocumentReference;
93
- readonly employee_counters?: IEmployeeCounters;
94
- tags?: ITag[];
95
- [key: string]: unknown; // index signature
75
+ code: string;
76
+ name: string;
77
+ lead_name?: string | null;
78
+ leadRef?: FirestoreDocumentReference;
79
+ readonly employee_counters?: IEmployeeCounters;
80
+ tags?: ITag[];
81
+ [key: string]: unknown;
96
82
  }
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.IEmployeeStatus = void 0;
18
+ __exportStar(require("./fb_collections"), exports);
19
+ var IEmployeeStatus;
20
+ (function (IEmployeeStatus) {
21
+ IEmployeeStatus["Active"] = "active";
22
+ IEmployeeStatus["Inactive"] = "inactive";
23
+ IEmployeeStatus["Draft"] = "draft";
24
+ })(IEmployeeStatus = exports.IEmployeeStatus || (exports.IEmployeeStatus = {}));