@zimyo/engage 0.0.54-hrms → 0.0.55-hrms

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.
@@ -1,4 +1,4 @@
1
- export declare const LIBRARY_MODALS: {
1
+ export declare const MODAL_ACTION: {
2
2
  CREATE: string;
3
3
  EDIT: string;
4
4
  };
@@ -0,0 +1,15 @@
1
+ import { z } from "zod";
2
+ export declare const FeedbackSkillFormSchema: z.ZodObject<{
3
+ ID: z.ZodOptional<z.ZodNumber>;
4
+ SKILL_NAME: z.ZodString;
5
+ SKILL_DESCRIPTION: z.ZodString;
6
+ }, "strip", z.ZodTypeAny, {
7
+ SKILL_NAME: string;
8
+ SKILL_DESCRIPTION: string;
9
+ ID?: number | undefined;
10
+ }, {
11
+ SKILL_NAME: string;
12
+ SKILL_DESCRIPTION: string;
13
+ ID?: number | undefined;
14
+ }>;
15
+ export type FeedbackSkillFormSchemaType = z.infer<typeof FeedbackSkillFormSchema>;
@@ -0,0 +1 @@
1
+ export declare const SkillsMaster: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ type Props = {
2
+ className?: string;
3
+ filters: any;
4
+ };
5
+ export declare const FeedbackDashBoard: ({ className, filters }: Props) => import("react/jsx-runtime").JSX.Element;
6
+ export {};
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type Props = {
3
+ meetingType?: number;
4
+ feedbackFilters: any;
5
+ setMeetingType: (value: React.SetStateAction<number | undefined>) => void;
6
+ };
7
+ export declare const MeetingListModal: (props: Props) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -6,8 +6,9 @@ export declare const ScheduleOneToOneFormSchema: z.ZodObject<{
6
6
  DATE: z.ZodDefault<z.ZodString>;
7
7
  START_TIME: z.ZodDefault<z.ZodString>;
8
8
  DURATION: z.ZodString;
9
- MEDIUM: z.ZodNumber;
9
+ MEDIUM: z.ZodDefault<z.ZodNumber>;
10
10
  MEDIUM_ALIAS: z.ZodOptional<z.ZodString>;
11
+ EVENT_UID: z.ZodOptional<z.ZodString>;
11
12
  }, "strip", z.ZodTypeAny, {
12
13
  DATE: string;
13
14
  START_TIME: string;
@@ -17,14 +18,16 @@ export declare const ScheduleOneToOneFormSchema: z.ZodObject<{
17
18
  MEDIUM: number;
18
19
  DESCRIPTION?: string | undefined;
19
20
  MEDIUM_ALIAS?: string | undefined;
21
+ EVENT_UID?: string | undefined;
20
22
  }, {
21
23
  DURATION: string;
22
24
  MEETING_TITLE: string;
23
25
  SCHEDULE_WITH: number;
24
- MEDIUM: number;
25
26
  DATE?: string | undefined;
26
27
  START_TIME?: string | undefined;
27
28
  DESCRIPTION?: string | undefined;
29
+ MEDIUM?: number | undefined;
28
30
  MEDIUM_ALIAS?: string | undefined;
31
+ EVENT_UID?: string | undefined;
29
32
  }>;
30
33
  export type ScheduleOneToOneFormType = z.infer<typeof ScheduleOneToOneFormSchema>;
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  export type Props = {
3
3
  meetingId: number | undefined;
4
4
  setMeetingId: (value: React.SetStateAction<number | undefined>) => void;
5
- reScheduleModalMeetingId: number | undefined;
5
+ openReScheduleModalMeetingId: number | undefined;
6
6
  setReScheduleModalMeetingId: (value: React.SetStateAction<number | undefined>) => void;
7
7
  };
8
8
  export declare const ViewOneToOneDetailsModal: (props: Props) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const Search: import("react").ForwardRefExoticComponent<Omit<any, "ref"> & import("react").RefAttributes<unknown>>;