@experts_hub/shared 1.0.338 → 1.0.340

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.
@@ -0,0 +1,5 @@
1
+ export declare class CreateF2FInterviewRescheduleRequestDto {
2
+ f2FInterviewId: string;
3
+ rescheduledDate: string;
4
+ rescheduledSlot: string;
5
+ }
@@ -0,0 +1,6 @@
1
+ export declare class CreateF2FInterviewDto {
2
+ inviteeEmail: string;
3
+ inviteeName: string;
4
+ interviewId: number;
5
+ candidateId: number;
6
+ }
@@ -1 +1,3 @@
1
1
  export * from './interview-invite.dto';
2
+ export * from './create-f2f-interview.dto';
3
+ export * from './create-f2f-interview-reschedule-request.dto';
@@ -1,3 +1,15 @@
1
1
  export declare const INTERVIEW_INVITE_PATTERN: {
2
2
  sendInterviewInvite: string;
3
3
  };
4
+ export declare const F2F_INTERVIEW_PATTERN: {
5
+ fetchBookings: string;
6
+ fetchBookingById: string;
7
+ fetchInterviewsByInterviewerId: string;
8
+ fetchInterviewsByCandidateId: string;
9
+ createF2FInterview: string;
10
+ createF2FInterviewRescheduleRequest: string;
11
+ rejectF2FInterviewRescheduleRequest: string;
12
+ };
13
+ export declare const CALENDLY_PATTERN: {
14
+ handleCalendlyWebhook: string;
15
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.338",
3
+ "version": "1.0.340",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -1,17 +0,0 @@
1
- import { BaseEntity } from './base.entity';
2
- import { F2FInterview } from './f2f-interview.entity';
3
- export declare enum CalendlyMeetingStatus {
4
- PENDING = "PENDING",
5
- CONFIRMED = "CONFIRMED",
6
- CANCELED = "CANCELED",
7
- COMPLETED = "COMPLETED"
8
- }
9
- export declare class CalendlyMeeting extends BaseEntity {
10
- f2fInterview: F2FInterview;
11
- calendlyEventId: string;
12
- eventName: string;
13
- inviteeEmail: string;
14
- startTime: Date;
15
- endTime: Date;
16
- rawWebhookData: any;
17
- }