evo360-types 1.1.14 → 1.1.16
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/apps/evo-calendar/zod-schemas.ts +27 -0
- package/dist/apps/evo-core/zod-schemas.ts +7 -0
- package/dist/apps/evo-meeting/zod-schemas.ts +56 -0
- package/dist/apps/evo-people/zod-schemas.ts +84 -0
- package/dist/apps/evo-survey/zod-schemas.ts +16 -0
- package/dist/apps/evo-task/zod-schemas.ts +11 -0
- package/dist/apps/evo-tenant/zod-schemas.ts +5 -0
- package/dist/apps/shared/zod-schemas.ts +19 -0
- 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/index.d.ts +37 -48
- package/dist/types/evo-calendar/index.js +31 -0
- package/dist/types/evo-core/index.d.ts +30 -37
- package/dist/types/evo-core/index.js +2 -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/index.d.ts +38 -55
- package/dist/types/evo-meeting/index.js +26 -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/index.d.ts +67 -81
- package/dist/types/evo-people/index.js +24 -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/index.d.ts +102 -128
- package/dist/types/evo-survey/index.js +65 -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/index.d.ts +22 -35
- package/dist/types/evo-task/index.js +32 -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/index.d.ts +14 -19
- package/dist/types/evo-tenant/index.js +29 -0
- package/dist/types/shared/fb_collections.d.ts +5 -14
- package/dist/types/shared/fb_collections.js +13 -0
- package/dist/types/shared/index.d.ts +16 -40
- package/dist/types/shared/index.js +17 -0
- package/package.json +3 -2
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { zFireDocSchema, zTagSchema } from "../shared/zod-schemas";
|
|
3
|
+
|
|
4
|
+
// Enum for Event Instance Status
|
|
5
|
+
export const zEventStatusSchema = z.enum([
|
|
6
|
+
"scheduled",
|
|
7
|
+
"completed",
|
|
8
|
+
"cancelled",
|
|
9
|
+
]);
|
|
10
|
+
|
|
11
|
+
export const zEventTypeSchema = z.enum([
|
|
12
|
+
"event",
|
|
13
|
+
"meeting",
|
|
14
|
+
"workshop",
|
|
15
|
+
"other",
|
|
16
|
+
]);
|
|
17
|
+
|
|
18
|
+
export const zEventSchema = zFireDocSchema // Extend from FireDocSchema
|
|
19
|
+
.extend({
|
|
20
|
+
title: z.string(),
|
|
21
|
+
description: z.string().optional(),
|
|
22
|
+
creatorName: z.string(),
|
|
23
|
+
creatorRef: z.any(),
|
|
24
|
+
eventType: zEventTypeSchema,
|
|
25
|
+
eventStatus: zEventStatusSchema,
|
|
26
|
+
tags: z.array(zTagSchema).optional(),
|
|
27
|
+
});
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import {
|
|
3
|
+
zTaskPrioritySchema,
|
|
4
|
+
zTaskStatusSchema,
|
|
5
|
+
} from "../evo-task/zod-schemas";
|
|
6
|
+
import { zFireDocSchema, zTagSchema } from "../shared/zod-schemas";
|
|
7
|
+
|
|
8
|
+
// Enum for Meeting Types
|
|
9
|
+
export const zMeetingTypeSchema = z.enum([
|
|
10
|
+
"regular",
|
|
11
|
+
"oneonone",
|
|
12
|
+
"feedback",
|
|
13
|
+
"presentation",
|
|
14
|
+
"other",
|
|
15
|
+
]);
|
|
16
|
+
|
|
17
|
+
export const zMeetingEventSchema = z.object({
|
|
18
|
+
eventRef: z.any(),
|
|
19
|
+
participantNames: z.array(z.string()).min(1).max(50),
|
|
20
|
+
participantRefs: z.array(z.any()).min(1).max(50),
|
|
21
|
+
startDate: z.date(),
|
|
22
|
+
endDate: z.date().optional(),
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
export const zMeetingTaskSchema = z.object({
|
|
26
|
+
taskRef: z.any(),
|
|
27
|
+
title: z.string(),
|
|
28
|
+
status: zTaskStatusSchema,
|
|
29
|
+
priority: zTaskPrioritySchema.optional(),
|
|
30
|
+
assigneeName: z.string().optional(),
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
export const zMeetingTalkingPointSchema = z.object({
|
|
34
|
+
templateRef: z.any(),
|
|
35
|
+
title: z.string(),
|
|
36
|
+
description: z.string().optional(),
|
|
37
|
+
tags: z.array(zTagSchema).optional(),
|
|
38
|
+
discussed: z.boolean(),
|
|
39
|
+
notes: z.string().optional(),
|
|
40
|
+
assigneeName: z.string().optional(),
|
|
41
|
+
assigneeRef: z.any(),
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
export const zMeetingSchema = zFireDocSchema // Extend from FireDocSchema
|
|
45
|
+
.extend({
|
|
46
|
+
title: z.string(),
|
|
47
|
+
description: z.string().optional(),
|
|
48
|
+
creatorName: z.string(),
|
|
49
|
+
creatorRef: z.any(),
|
|
50
|
+
event: zMeetingEventSchema,
|
|
51
|
+
type: zMeetingTypeSchema,
|
|
52
|
+
tasks: z.array(zMeetingTaskSchema).optional(),
|
|
53
|
+
talkingPoints: z.array(zMeetingTalkingPointSchema).optional(),
|
|
54
|
+
tags: z.array(zTagSchema).optional(),
|
|
55
|
+
})
|
|
56
|
+
.catchall(z.unknown());
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
import { zFireDocSchema, zTagSchema } from "../shared/zod-schemas";
|
|
3
|
+
|
|
4
|
+
export const zProfileSchema = zFireDocSchema
|
|
5
|
+
.extend({
|
|
6
|
+
display_name: z.string().min(1).max(255),
|
|
7
|
+
last_name: z.string().max(255).nullable().optional(),
|
|
8
|
+
first_name: z.string().max(255).nullable(),
|
|
9
|
+
gender: z.string().max(255).nullable().optional(),
|
|
10
|
+
birthdate: z.date().nullable().optional(),
|
|
11
|
+
photo_ref: z.string().max(255).nullable().optional(),
|
|
12
|
+
photo_url: z.string().url().nullable().optional(),
|
|
13
|
+
})
|
|
14
|
+
.passthrough();
|
|
15
|
+
|
|
16
|
+
export const zEmployeeStatusSchema = z.enum(["active", "inactive", "draft"]);
|
|
17
|
+
|
|
18
|
+
export const zEmployeeSchema = zProfileSchema // Extend from ProfileSchema
|
|
19
|
+
.extend({
|
|
20
|
+
employee_id: z.string().nullable().optional(),
|
|
21
|
+
type: z.string().nullable().optional(),
|
|
22
|
+
job_title: z.string().max(255).nullable().optional(),
|
|
23
|
+
status: zEmployeeStatusSchema,
|
|
24
|
+
company_name: z.string().max(255).nullable().optional(),
|
|
25
|
+
companyRef: z.any(),
|
|
26
|
+
date_joining: z.date().nullable().optional(),
|
|
27
|
+
reporting_to_name: z.string().max(255).nullable().optional(),
|
|
28
|
+
reporting_toRef: z.any(),
|
|
29
|
+
department_name: z.string().max(255).nullable().optional(),
|
|
30
|
+
departmentRef: z.any(),
|
|
31
|
+
office_name: z.string().max(255).nullable().optional(),
|
|
32
|
+
officeRef: z.any(),
|
|
33
|
+
work_email: z.string().max(255).nullable().optional(),
|
|
34
|
+
work_phone: z.string().max(255).nullable().optional(),
|
|
35
|
+
work_mobile: z.string().max(255).nullable().optional(),
|
|
36
|
+
tags: z.array(zTagSchema).optional(),
|
|
37
|
+
userRef: z.any(),
|
|
38
|
+
})
|
|
39
|
+
.passthrough();
|
|
40
|
+
|
|
41
|
+
export const zDepartmentSchema = zFireDocSchema // Extend from FireDocSchema
|
|
42
|
+
.extend({
|
|
43
|
+
code: z.string().min(1).max(10),
|
|
44
|
+
name: z.string().min(1).max(255),
|
|
45
|
+
lead_name: z.string().max(255).nullable().optional(),
|
|
46
|
+
leadRef: z.any(),
|
|
47
|
+
parent_department_name: z.string().max(255).nullable().optional(),
|
|
48
|
+
parent_departmentRef: z.any(),
|
|
49
|
+
employee_counters: z.any().optional(),
|
|
50
|
+
tags: z.array(zTagSchema).optional(),
|
|
51
|
+
})
|
|
52
|
+
.passthrough();
|
|
53
|
+
|
|
54
|
+
export const zOfficeSchema = zFireDocSchema // Extend from FireDocSchema
|
|
55
|
+
.extend({
|
|
56
|
+
code: z.string().min(1).max(255),
|
|
57
|
+
name: z.string().min(1).max(255),
|
|
58
|
+
timezone: z.string().nullable().optional(),
|
|
59
|
+
company_name: z.string().nullable().optional(),
|
|
60
|
+
companyRef: z.any(),
|
|
61
|
+
lead_name: z.string().max(255).nullable().optional(),
|
|
62
|
+
leadRef: z.any(),
|
|
63
|
+
address_line1: z.string().max(255).optional(),
|
|
64
|
+
address_line2: z.string().max(255).optional(),
|
|
65
|
+
address_city: z.string().max(255).optional(),
|
|
66
|
+
address_state: z.string().max(255).optional(),
|
|
67
|
+
address_zip: z.string().max(255).optional(),
|
|
68
|
+
address_country: z.string().max(255).optional(),
|
|
69
|
+
address_geo: z.any().optional(),
|
|
70
|
+
employee_counters: z.any().optional(),
|
|
71
|
+
tags: z.array(zTagSchema).optional(),
|
|
72
|
+
})
|
|
73
|
+
.passthrough();
|
|
74
|
+
|
|
75
|
+
export const zCompanySchema = zFireDocSchema // Extend from FireDocSchema
|
|
76
|
+
.extend({
|
|
77
|
+
code: z.string().min(1).max(10),
|
|
78
|
+
name: z.string().min(1).max(255),
|
|
79
|
+
lead_name: z.string().max(255).nullable().optional(),
|
|
80
|
+
leadRef: z.any(),
|
|
81
|
+
employee_counters: z.any().optional(), // mark as optional and use z.any() to skip validation
|
|
82
|
+
tags: z.array(zTagSchema).optional(),
|
|
83
|
+
})
|
|
84
|
+
.passthrough(); // allow unknown keys
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
export const zSurveyPermissionSchema = z.enum(["private", "company", "public"]);
|
|
4
|
+
|
|
5
|
+
export const zSurveyTypeSchema = z.enum(["360", "general"]);
|
|
6
|
+
|
|
7
|
+
export const zSurveyStatusSchema = z.enum(["draft", "ready", "archived"]);
|
|
8
|
+
|
|
9
|
+
//DeploymentTypes
|
|
10
|
+
export const zSurveyDeploymentStatusSchema = z.enum([
|
|
11
|
+
"draft",
|
|
12
|
+
"open",
|
|
13
|
+
"closed",
|
|
14
|
+
"in_progress",
|
|
15
|
+
"paused",
|
|
16
|
+
]);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
// Custom validation for FirestoreDocumentReference
|
|
4
|
+
export const zFireDocSchema = z.object({
|
|
5
|
+
id: z.string(),
|
|
6
|
+
ref: z.any(),
|
|
7
|
+
tenant: z.string(),
|
|
8
|
+
model_ver: z.number().optional(),
|
|
9
|
+
created_at: z.date().nullable().optional(),
|
|
10
|
+
updated_at: z.date().nullable().optional(),
|
|
11
|
+
deleted_at: z.date().nullable().optional(),
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
// Custom validation for ITag
|
|
15
|
+
export const zTagSchema = z.object({
|
|
16
|
+
name: z.string(),
|
|
17
|
+
color: z.string().optional(),
|
|
18
|
+
hidden: z.boolean(),
|
|
19
|
+
});
|
|
@@ -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 = {}));
|
|
@@ -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,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 = {}));
|
|
@@ -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";
|