evo360-types 1.1.80 → 1.1.81

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.
@@ -11,14 +11,14 @@ export declare const zMeetingEventSchema: z.ZodObject<{
11
11
  startDate: Date;
12
12
  participantNames: string[];
13
13
  participantRefs: any[];
14
- endDate?: Date | undefined;
15
14
  eventRef?: any;
15
+ endDate?: Date | undefined;
16
16
  }, {
17
17
  startDate: Date;
18
18
  participantNames: string[];
19
19
  participantRefs: any[];
20
- endDate?: Date | undefined;
21
20
  eventRef?: any;
21
+ endDate?: Date | undefined;
22
22
  }>;
23
23
  export declare const zMeetingTaskSchema: z.ZodObject<{
24
24
  taskRef: z.ZodAny;
@@ -110,14 +110,14 @@ export declare const zMeetingSchema: z.ZodObject<z.objectUtil.extendShape<{
110
110
  startDate: Date;
111
111
  participantNames: string[];
112
112
  participantRefs: any[];
113
- endDate?: Date | undefined;
114
113
  eventRef?: any;
114
+ endDate?: Date | undefined;
115
115
  }, {
116
116
  startDate: Date;
117
117
  participantNames: string[];
118
118
  participantRefs: any[];
119
- endDate?: Date | undefined;
120
119
  eventRef?: any;
120
+ endDate?: Date | undefined;
121
121
  }>;
122
122
  type: z.ZodEnum<["regular", "oneonone", "feedback", "presentation", "other"]>;
123
123
  tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -223,14 +223,14 @@ export declare const zMeetingSchema: z.ZodObject<z.objectUtil.extendShape<{
223
223
  startDate: Date;
224
224
  participantNames: string[];
225
225
  participantRefs: any[];
226
- endDate?: Date | undefined;
227
226
  eventRef?: any;
227
+ endDate?: Date | undefined;
228
228
  }, {
229
229
  startDate: Date;
230
230
  participantNames: string[];
231
231
  participantRefs: any[];
232
- endDate?: Date | undefined;
233
232
  eventRef?: any;
233
+ endDate?: Date | undefined;
234
234
  }>;
235
235
  type: z.ZodEnum<["regular", "oneonone", "feedback", "presentation", "other"]>;
236
236
  tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -336,14 +336,14 @@ export declare const zMeetingSchema: z.ZodObject<z.objectUtil.extendShape<{
336
336
  startDate: Date;
337
337
  participantNames: string[];
338
338
  participantRefs: any[];
339
- endDate?: Date | undefined;
340
339
  eventRef?: any;
340
+ endDate?: Date | undefined;
341
341
  }, {
342
342
  startDate: Date;
343
343
  participantNames: string[];
344
344
  participantRefs: any[];
345
- endDate?: Date | undefined;
346
345
  eventRef?: any;
346
+ endDate?: Date | undefined;
347
347
  }>;
348
348
  type: z.ZodEnum<["regular", "oneonone", "feedback", "presentation", "other"]>;
349
349
  tasks: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1378,9 +1378,9 @@ export declare const zSurveyDeploymentSchema: z.ZodObject<z.objectUtil.extendSha
1378
1378
  model_ver: number;
1379
1379
  name: string;
1380
1380
  status: "draft" | "in_progress" | "open" | "closed" | "paused";
1381
- submission_count: number;
1382
1381
  start_date: Date | null;
1383
1382
  end_date: Date | null;
1383
+ submission_count: number;
1384
1384
  allow_edit_answers: boolean;
1385
1385
  allow_partial_submission: boolean;
1386
1386
  section_count: number;
@@ -11,7 +11,7 @@ export declare enum IAssetType {
11
11
  interface StructuredData {
12
12
  [key: string]: string | number | boolean | Date | StructuredData;
13
13
  }
14
- export type IAsset = IFileAsset | ICalendarEventAsset | IMeetingAsset | INoteAsset | IStructuredDataAsset;
14
+ export type ICakeAsset = IFileAsset | ICalendarEventAsset | IMeetingAsset | INoteAsset | IStructuredDataAsset;
15
15
  export interface IBaseAsset extends IFireDoc {
16
16
  type: AssetType;
17
17
  relevance_score: number;
@@ -19,7 +19,7 @@ interface StructuredData {
19
19
  }
20
20
 
21
21
  // Generic interface for any type of asset
22
- export type IAsset =
22
+ export type ICakeAsset =
23
23
  | IFileAsset
24
24
  | ICalendarEventAsset
25
25
  | IMeetingAsset
@@ -33,8 +33,8 @@ export interface IRecurringEvent extends IFireDoc {
33
33
  creatorName: string;
34
34
  creatorRef?: FirestoreDocumentReference;
35
35
  participants: string[];
36
- startDate: Date;
37
- endDate?: Date;
36
+ start_date: Date;
37
+ end_date?: Date;
38
38
  type: CalendarEventType;
39
39
  rrule: string;
40
40
  exceptions: string[];
@@ -47,8 +47,8 @@ export interface IEvent extends IFireDoc {
47
47
  creatorRef?: FirestoreDocumentReference;
48
48
  participantNames?: string[];
49
49
  participantRefs?: FirestoreDocumentReference[];
50
- startDate: Date;
51
- endDate?: Date;
50
+ start_date: Date;
51
+ end_date?: Date;
52
52
  type: CalendarEventType;
53
53
  tags?: ITag[] | null;
54
54
  meeting?: IEventMeeting;
@@ -44,8 +44,8 @@ export interface IRecurringEvent extends IFireDoc {
44
44
  creatorName: string; // Name of the user who created the event
45
45
  creatorRef?: FirestoreDocumentReference; // reference to the user who created the event
46
46
  participants: string[]; // List of participant IDs
47
- startDate: Date; // Start date and time of the first meeting
48
- endDate?: Date; // Optional end date and time of the recurring meeting
47
+ start_date: Date; // Start date and time of the first meeting
48
+ end_date?: Date; // Optional end date and time of the recurring meeting
49
49
  type: CalendarEventType; // Type of event
50
50
  rrule: string; // Recurrence rule in RRULE format
51
51
  exceptions: string[]; // List of instance IDs that represent exceptions
@@ -60,8 +60,8 @@ export interface IEvent extends IFireDoc {
60
60
  creatorRef?: FirestoreDocumentReference; // reference to the user who created the event
61
61
  participantNames?: string[]; // List of participant names
62
62
  participantRefs?: FirestoreDocumentReference[]; // List of participant references
63
- startDate: Date; // Start date and time of the event
64
- endDate?: Date; // Optional end date and time of the event
63
+ start_date: Date; // Start date and time of the event
64
+ end_date?: Date; // Optional end date and time of the event
65
65
  type: CalendarEventType; // Type of event
66
66
  tags?: ITag[] | null;
67
67
  meeting?: IEventMeeting;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.1.80",
3
+ "version": "1.1.81",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",