evo360-types 1.3.35 → 1.3.39
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-activity/zod-schemas.d.ts +3 -3
- package/dist/apps/evo-activity/zod-schemas.js +8 -10
- package/dist/apps/evo-activity/zod-schemas.ts +0 -2
- package/dist/apps/evo-calendar/zod-schemas.d.ts +4 -4
- package/dist/apps/evo-survey/zod-schemas.d.ts +14 -14
- package/dist/index.d.ts +2 -4
- package/dist/index.js +2 -6
- package/dist/index.ts +2 -6
- package/dist/types/evo-activity/index.d.ts +1 -2
- package/dist/types/evo-activity/index.ts +1 -2
- package/dist/types/evo-calendar/index.d.ts +0 -2
- package/dist/types/evo-calendar/index.ts +0 -2
- package/package.json +1 -1
- package/dist/apps/evo-cake/zod-schemas.d.ts +0 -783
- package/dist/apps/evo-cake/zod-schemas.js +0 -110
- package/dist/apps/evo-cake/zod-schemas.ts +0 -121
- package/dist/apps/evo-meeting/zod-schemas.d.ts +0 -429
- package/dist/apps/evo-meeting/zod-schemas.js +0 -56
- package/dist/apps/evo-meeting/zod-schemas.ts +0 -62
- package/dist/types/evo-cake/fb_collections.d.ts +0 -4
- package/dist/types/evo-cake/fb_collections.js +0 -9
- package/dist/types/evo-cake/fb_collections.ts +0 -7
- package/dist/types/evo-cake/index.d.ts +0 -111
- package/dist/types/evo-cake/index.js +0 -79
- package/dist/types/evo-cake/index.ts +0 -186
- package/dist/types/evo-meeting/fb_collections.d.ts +0 -2
- package/dist/types/evo-meeting/fb_collections.js +0 -7
- package/dist/types/evo-meeting/fb_collections.ts +0 -5
- package/dist/types/evo-meeting/index.d.ts +0 -58
- package/dist/types/evo-meeting/index.js +0 -32
- package/dist/types/evo-meeting/index.ts +0 -80
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
export * from "./fb_collections";
|
|
2
|
-
import type { FirestoreDocumentReference, IFireDoc, ITag } from "../shared";
|
|
3
|
-
import type { TaskPriority, TaskStatus } from "../evo-task";
|
|
4
|
-
|
|
5
|
-
// ----- MeetingTypes
|
|
6
|
-
// Enum for Meeting Action - used in Activities tracking
|
|
7
|
-
export type MeetingAction =
|
|
8
|
-
| "CREATE_MEETING"
|
|
9
|
-
| "DELETE_MEETING"
|
|
10
|
-
| "UPDATE_MEETING";
|
|
11
|
-
export enum IMeetingAction {
|
|
12
|
-
Create_meeting = "CREATE_MEETING",
|
|
13
|
-
Delete_meeting = "DELETE_MEETING",
|
|
14
|
-
Update_meeting = "UPDATE_MEETING",
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export type MeetingType =
|
|
18
|
-
| "regular"
|
|
19
|
-
| "oneonone"
|
|
20
|
-
| "feedback"
|
|
21
|
-
| "presentation"
|
|
22
|
-
| "other";
|
|
23
|
-
export enum IMeetingType {
|
|
24
|
-
Regular = "regular", // A regular meeting
|
|
25
|
-
OneOnOne = "oneonone", // A one-on-one meeting
|
|
26
|
-
Feedback = "feedback", // A feedback session
|
|
27
|
-
Presentation = "presentation", // A presentation meeting
|
|
28
|
-
Other = "other", // Any other type of meeting
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// Interface for Event within a Meeting (meetingEvent)
|
|
32
|
-
export interface IMeetingEvent {
|
|
33
|
-
eventRef?: FirestoreDocumentReference; // Reference to the original event
|
|
34
|
-
participantNames: string[]; // List of participant names
|
|
35
|
-
participantRefs?: FirestoreDocumentReference[]; // List of participant references
|
|
36
|
-
startDate: Date; // Start date and time of the event
|
|
37
|
-
endDate?: Date; // Optional end date and time of the event
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
// Interface for Tasks within a Meeting (meetingTasks)
|
|
41
|
-
export interface IMeetingTask {
|
|
42
|
-
taskRef?: FirestoreDocumentReference; // Reference to the original task
|
|
43
|
-
title: string; // Title (copied from the original task)
|
|
44
|
-
status: TaskStatus; // Status (can be updated independently from the original task)
|
|
45
|
-
priority?: TaskPriority; // Priority (copied from the original task)
|
|
46
|
-
assigneeName?: string; // Name of the assignee (copied from the original task)
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// Interface for Talking Point Templates (talkingPointTemplates)
|
|
50
|
-
export interface ITalkingPointTemplate extends IFireDoc {
|
|
51
|
-
title: string; // Title of the talking point
|
|
52
|
-
description?: string; // Optional detailed description
|
|
53
|
-
tags?: ITag[] | null; // Optional tags for categorization
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
// Interface for Talking Points within a Meeting (meetingTalkingPoints)
|
|
57
|
-
export interface IMeetingTalkingPoint {
|
|
58
|
-
templateRef?: FirestoreDocumentReference; // Reference to the original template
|
|
59
|
-
title: string; // Title (can be copied from the template or edited)
|
|
60
|
-
description?: string; // Description (can be copied from the template or edited)
|
|
61
|
-
tags?: ITag[] | null; // Tags (can be copied from the template or edited)
|
|
62
|
-
discussed: boolean; // Flag to indicate if the talking point was discussed
|
|
63
|
-
notes?: string; // Optional field for notes taken during the discussion
|
|
64
|
-
assigneeName?: string; // Name of the assignee (optional)
|
|
65
|
-
assigneeRef?: FirestoreDocumentReference; // Reference to the assignee (optional)
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
// Interface for Meeting Instances (meetingInstances)
|
|
69
|
-
export interface IMeeting extends IFireDoc {
|
|
70
|
-
title: string; // Title of the meeting
|
|
71
|
-
description?: string; // Optional description of the meeting
|
|
72
|
-
creatorName: string; // Name of the user who created the meeting
|
|
73
|
-
creatorRef?: FirestoreDocumentReference; // reference to the user who created the meeting
|
|
74
|
-
event: IMeetingEvent;
|
|
75
|
-
type: MeetingType; // Type of meeting
|
|
76
|
-
tasks?: IMeetingTask[];
|
|
77
|
-
talkingPoints?: IMeetingTalkingPoint[];
|
|
78
|
-
tags?: ITag[] | null;
|
|
79
|
-
[key: string]: unknown; // index signature
|
|
80
|
-
}
|