evo360-types 1.1.17 → 1.1.18
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/dist/types/evo-calendar/fb_collections.d.ts +2 -5
- package/dist/types/evo-calendar/fb_collections.js +7 -0
- package/dist/types/evo-calendar/fb_collections.ts +5 -0
- package/dist/types/evo-calendar/index.d.ts +37 -48
- package/dist/types/evo-calendar/index.js +31 -0
- package/dist/types/evo-calendar/index.ts +61 -0
- package/dist/types/evo-core/index.d.ts +30 -37
- package/dist/types/evo-core/index.js +2 -0
- package/dist/types/evo-core/index.ts +48 -0
- package/dist/types/evo-meeting/fb_collections.d.ts +2 -5
- package/dist/types/evo-meeting/fb_collections.js +7 -0
- package/dist/types/evo-meeting/fb_collections.ts +5 -0
- package/dist/types/evo-meeting/index.d.ts +38 -55
- package/dist/types/evo-meeting/index.js +26 -0
- package/dist/types/evo-meeting/index.ts +69 -0
- package/dist/types/evo-people/fb_collections.d.ts +5 -8
- package/dist/types/evo-people/fb_collections.js +10 -0
- package/dist/types/evo-people/fb_collections.ts +8 -0
- package/dist/types/evo-people/index.d.ts +67 -81
- package/dist/types/evo-people/index.js +24 -0
- package/dist/types/evo-people/index.ts +96 -0
- package/dist/types/evo-survey/fb_collections.d.ts +7 -12
- package/dist/types/evo-survey/fb_collections.js +13 -0
- package/dist/types/evo-survey/fb_collections.ts +12 -0
- package/dist/types/evo-survey/index.d.ts +102 -128
- package/dist/types/evo-survey/index.js +65 -0
- package/dist/types/evo-survey/index.ts +156 -0
- package/dist/types/evo-task/fb_collections.d.ts +2 -5
- package/dist/types/evo-task/fb_collections.js +7 -0
- package/dist/types/evo-task/fb_collections.ts +5 -0
- package/dist/types/evo-task/index.d.ts +22 -35
- package/dist/types/evo-task/index.js +32 -0
- package/dist/types/evo-task/index.ts +42 -0
- package/dist/types/evo-tenant/fb_collections.d.ts +1 -2
- package/dist/types/evo-tenant/fb_collections.js +5 -0
- package/dist/types/evo-tenant/fb_collections.ts +2 -0
- package/dist/types/evo-tenant/index.d.ts +14 -19
- package/dist/types/evo-tenant/index.js +29 -0
- package/dist/types/evo-tenant/index.ts +27 -0
- package/dist/types/shared/fb_collections.d.ts +5 -14
- package/dist/types/shared/fb_collections.js +13 -0
- package/dist/types/shared/fb_collections.ts +14 -0
- package/dist/types/shared/index.d.ts +15 -24
- package/dist/types/shared/index.js +17 -0
- package/dist/types/shared/index.ts +32 -0
- package/package.json +1 -1
|
@@ -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
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
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
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
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 = {}));
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export * from "./fb_collections";
|
|
2
|
+
import { FirestoreDocumentReference, IFireDoc, ITag } from "../shared";
|
|
3
|
+
import { MeetingType } from "../evo-meeting";
|
|
4
|
+
|
|
5
|
+
// ----- CalendarTypes
|
|
6
|
+
// Enum for Event Instance Status
|
|
7
|
+
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
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// Enum for Event Types
|
|
15
|
+
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
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// Interface for Meeting within a Event (meetingTasks)
|
|
24
|
+
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[];
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// Interface for Recurring Events (recurringEvents)
|
|
33
|
+
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
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Interface for Event Instances (eventInstances)
|
|
47
|
+
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
|
|
61
|
+
}
|
|
@@ -1,48 +1,41 @@
|
|
|
1
1
|
import { FirestoreDocumentReference, IFireDoc } from "../shared";
|
|
2
|
-
|
|
3
|
-
//UserTypes
|
|
4
2
|
export interface IUserSpecialRoles {
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
is_admin: boolean;
|
|
4
|
+
is_sys_admin: boolean;
|
|
7
5
|
}
|
|
8
|
-
|
|
9
6
|
export interface IUser extends IUserSpecialRoles, IFireDoc {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
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
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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
|
-
|
|
46
|
-
|
|
47
|
-
|
|
38
|
+
old_values?: Record<string, any>;
|
|
39
|
+
new_values?: Record<string, any>;
|
|
40
|
+
deleted_at?: Date;
|
|
48
41
|
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { FirestoreDocumentReference, IFireDoc } from "../shared";
|
|
2
|
+
|
|
3
|
+
//UserTypes
|
|
4
|
+
export interface IUserSpecialRoles {
|
|
5
|
+
is_admin: boolean;
|
|
6
|
+
is_sys_admin: boolean;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
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;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
//AuthTypes
|
|
27
|
+
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;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface IAction {
|
|
37
|
+
code: number;
|
|
38
|
+
action: string;
|
|
39
|
+
created_at: Date;
|
|
40
|
+
args?: IActionArgs | string | unknown | null;
|
|
41
|
+
user?: FirestoreDocumentReference;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export interface IActionArgs {
|
|
45
|
+
old_values?: Record<string, any>;
|
|
46
|
+
new_values?: Record<string, any>;
|
|
47
|
+
deleted_at?: Date;
|
|
48
|
+
}
|
|
@@ -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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
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
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
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
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
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
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
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 = {}));
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export * from "./fb_collections";
|
|
2
|
+
import { FirestoreDocumentReference, IFireDoc, ITag } from "../shared";
|
|
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
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// Interface for Event within a Meeting (meetingEvent)
|
|
21
|
+
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
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Interface for Tasks within a Meeting (meetingTasks)
|
|
30
|
+
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)
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Interface for Talking Point Templates (talkingPointTemplates)
|
|
39
|
+
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
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// Interface for Talking Points within a Meeting (meetingTalkingPoints)
|
|
46
|
+
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)
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// Interface for Meeting Instances (meetingInstances)
|
|
58
|
+
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
|
|
69
|
+
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
export const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export const
|
|
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";
|
|
@@ -0,0 +1,8 @@
|
|
|
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";
|