@experts_hub/shared 1.0.339 → 1.0.341
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/entities/calendly-meeting-log.entity.d.ts +5 -0
- package/dist/entities/f2f-interview-schedule.entity.d.ts +20 -0
- package/dist/entities/f2f-interview.entity.d.ts +7 -13
- package/dist/entities/index.d.ts +2 -1
- package/dist/index.d.mts +31 -29
- package/dist/index.d.ts +31 -29
- package/dist/index.js +106 -90
- package/dist/index.mjs +347 -330
- package/package.json +1 -1
- package/dist/entities/calendly-meeting.entity.d.ts +0 -17
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BaseEntity } from "./base.entity";
|
|
2
|
+
import { F2FInterview } from "./f2f-interview.entity";
|
|
3
|
+
export declare enum F2fInterviewScheduleStatusEnum {
|
|
4
|
+
ACTIVE = "ACTIVE",
|
|
5
|
+
COMPELETED = "COMPELETED",
|
|
6
|
+
RESCHEDULED = "RESCHEDULED",
|
|
7
|
+
CANCELLED = "CANCELLED"
|
|
8
|
+
}
|
|
9
|
+
export declare class F2FInterviewSchedule extends BaseEntity {
|
|
10
|
+
f2fInterviewId: number;
|
|
11
|
+
f2fInterview: F2FInterview;
|
|
12
|
+
meetingZoomLink: string;
|
|
13
|
+
meetingId: string;
|
|
14
|
+
meetingPasscode: string;
|
|
15
|
+
rescheduleUrl: string;
|
|
16
|
+
cancelUrl: string;
|
|
17
|
+
status: F2fInterviewScheduleStatusEnum;
|
|
18
|
+
meetingStartTime: Date;
|
|
19
|
+
meetingEndTime: Date;
|
|
20
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { User } from './user.entity';
|
|
2
2
|
import { BaseEntity } from './base.entity';
|
|
3
|
-
import { CalendlyMeeting } from './calendly-meeting.entity';
|
|
4
3
|
import { Interview } from './interview.entity';
|
|
5
4
|
import { F2fInterviewRescheduleRequest } from './f2f-interview-reschedule-request.entity';
|
|
5
|
+
import { F2FInterviewSchedule } from './f2f-interview-schedule.entity';
|
|
6
6
|
export declare enum F2fInterviewStatusEnum {
|
|
7
7
|
DRAFTED = "DRAFTED",
|
|
8
8
|
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
@@ -15,6 +15,7 @@ export declare enum F2fInterviewStatusEnum {
|
|
|
15
15
|
}
|
|
16
16
|
export declare class F2FInterview extends BaseEntity {
|
|
17
17
|
interviewUniqueId: string;
|
|
18
|
+
round: string;
|
|
18
19
|
interviewId: number;
|
|
19
20
|
interview: Interview;
|
|
20
21
|
interviwerId: number;
|
|
@@ -23,21 +24,14 @@ export declare class F2FInterview extends BaseEntity {
|
|
|
23
24
|
candidate: User;
|
|
24
25
|
inviteeEmail: string;
|
|
25
26
|
inviteeName: string;
|
|
26
|
-
meetingZoomLink: string;
|
|
27
|
-
meetingId: string;
|
|
28
|
-
meetingPasscode: string;
|
|
29
|
-
rescheduleUrl: string;
|
|
30
|
-
cancelUrl: string;
|
|
31
27
|
eventName: string;
|
|
32
|
-
isRescheduled: boolean;
|
|
33
28
|
status: F2fInterviewStatusEnum;
|
|
29
|
+
isRescheduled: boolean;
|
|
30
|
+
lastRescheduledAt: Date;
|
|
34
31
|
cancelledAt: Date;
|
|
35
32
|
cancelReason: string;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
meetingEndTime: Date;
|
|
40
|
-
calendlyMeetingId: number;
|
|
41
|
-
calendlyMeeting: CalendlyMeeting;
|
|
33
|
+
provider: string;
|
|
34
|
+
providerEventId: string;
|
|
35
|
+
schedules: F2FInterviewSchedule[];
|
|
42
36
|
rescheduleRequests: F2fInterviewRescheduleRequest[];
|
|
43
37
|
}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ export * from './admin-permission.entity';
|
|
|
54
54
|
export * from './admin-role-permission.entity';
|
|
55
55
|
export * from './admin-user-role.entity';
|
|
56
56
|
export * from './commission.entity';
|
|
57
|
-
export * from './calendly-meeting.entity';
|
|
57
|
+
export * from './calendly-meeting-log.entity';
|
|
58
58
|
export * from './f2f-interview.entity';
|
|
59
|
+
export * from './f2f-interview-schedule.entity';
|
|
59
60
|
export * from './f2f-interview-reschedule-request.entity';
|
package/dist/index.d.mts
CHANGED
|
@@ -894,22 +894,6 @@ declare class AiInterview extends BaseEntity {
|
|
|
894
894
|
isF2fInterviewScheduled: boolean;
|
|
895
895
|
}
|
|
896
896
|
|
|
897
|
-
declare enum CalendlyMeetingStatus {
|
|
898
|
-
PENDING = "PENDING",
|
|
899
|
-
CONFIRMED = "CONFIRMED",
|
|
900
|
-
CANCELED = "CANCELED",
|
|
901
|
-
COMPLETED = "COMPLETED"
|
|
902
|
-
}
|
|
903
|
-
declare class CalendlyMeeting extends BaseEntity {
|
|
904
|
-
f2fInterview: F2FInterview;
|
|
905
|
-
calendlyEventId: string;
|
|
906
|
-
eventName: string;
|
|
907
|
-
inviteeEmail: string;
|
|
908
|
-
startTime: Date;
|
|
909
|
-
endTime: Date;
|
|
910
|
-
rawWebhookData: any;
|
|
911
|
-
}
|
|
912
|
-
|
|
913
897
|
declare enum F2fInterviewRescheduleRequestStatusEnum {
|
|
914
898
|
PENDING = "PENDING",
|
|
915
899
|
APPROVED = "APPROVED",
|
|
@@ -925,6 +909,25 @@ declare class F2fInterviewRescheduleRequest extends BaseEntity {
|
|
|
925
909
|
status: F2fInterviewRescheduleRequestStatusEnum;
|
|
926
910
|
}
|
|
927
911
|
|
|
912
|
+
declare enum F2fInterviewScheduleStatusEnum {
|
|
913
|
+
ACTIVE = "ACTIVE",
|
|
914
|
+
COMPELETED = "COMPELETED",
|
|
915
|
+
RESCHEDULED = "RESCHEDULED",
|
|
916
|
+
CANCELLED = "CANCELLED"
|
|
917
|
+
}
|
|
918
|
+
declare class F2FInterviewSchedule extends BaseEntity {
|
|
919
|
+
f2fInterviewId: number;
|
|
920
|
+
f2fInterview: F2FInterview;
|
|
921
|
+
meetingZoomLink: string;
|
|
922
|
+
meetingId: string;
|
|
923
|
+
meetingPasscode: string;
|
|
924
|
+
rescheduleUrl: string;
|
|
925
|
+
cancelUrl: string;
|
|
926
|
+
status: F2fInterviewScheduleStatusEnum;
|
|
927
|
+
meetingStartTime: Date;
|
|
928
|
+
meetingEndTime: Date;
|
|
929
|
+
}
|
|
930
|
+
|
|
928
931
|
declare enum F2fInterviewStatusEnum {
|
|
929
932
|
DRAFTED = "DRAFTED",
|
|
930
933
|
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
@@ -937,6 +940,7 @@ declare enum F2fInterviewStatusEnum {
|
|
|
937
940
|
}
|
|
938
941
|
declare class F2FInterview extends BaseEntity {
|
|
939
942
|
interviewUniqueId: string;
|
|
943
|
+
round: string;
|
|
940
944
|
interviewId: number;
|
|
941
945
|
interview: Interview;
|
|
942
946
|
interviwerId: number;
|
|
@@ -945,22 +949,15 @@ declare class F2FInterview extends BaseEntity {
|
|
|
945
949
|
candidate: User;
|
|
946
950
|
inviteeEmail: string;
|
|
947
951
|
inviteeName: string;
|
|
948
|
-
meetingZoomLink: string;
|
|
949
|
-
meetingId: string;
|
|
950
|
-
meetingPasscode: string;
|
|
951
|
-
rescheduleUrl: string;
|
|
952
|
-
cancelUrl: string;
|
|
953
952
|
eventName: string;
|
|
954
|
-
isRescheduled: boolean;
|
|
955
953
|
status: F2fInterviewStatusEnum;
|
|
954
|
+
isRescheduled: boolean;
|
|
955
|
+
lastRescheduledAt: Date;
|
|
956
956
|
cancelledAt: Date;
|
|
957
957
|
cancelReason: string;
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
meetingEndTime: Date;
|
|
962
|
-
calendlyMeetingId: number;
|
|
963
|
-
calendlyMeeting: CalendlyMeeting;
|
|
958
|
+
provider: string;
|
|
959
|
+
providerEventId: string;
|
|
960
|
+
schedules: F2FInterviewSchedule[];
|
|
964
961
|
rescheduleRequests: F2fInterviewRescheduleRequest[];
|
|
965
962
|
}
|
|
966
963
|
|
|
@@ -2357,4 +2354,9 @@ declare class Commission extends BaseEntity {
|
|
|
2357
2354
|
clientCommission: number;
|
|
2358
2355
|
}
|
|
2359
2356
|
|
|
2360
|
-
|
|
2357
|
+
declare class CalendlyMeetingLog extends BaseEntity {
|
|
2358
|
+
calendlyEventId: string;
|
|
2359
|
+
rawWebhookData: any;
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Country, CreateAdminRoleDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewSkill, InterviewStatusEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, ResetPasswordTokenValidationDto, STATE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -894,22 +894,6 @@ declare class AiInterview extends BaseEntity {
|
|
|
894
894
|
isF2fInterviewScheduled: boolean;
|
|
895
895
|
}
|
|
896
896
|
|
|
897
|
-
declare enum CalendlyMeetingStatus {
|
|
898
|
-
PENDING = "PENDING",
|
|
899
|
-
CONFIRMED = "CONFIRMED",
|
|
900
|
-
CANCELED = "CANCELED",
|
|
901
|
-
COMPLETED = "COMPLETED"
|
|
902
|
-
}
|
|
903
|
-
declare class CalendlyMeeting extends BaseEntity {
|
|
904
|
-
f2fInterview: F2FInterview;
|
|
905
|
-
calendlyEventId: string;
|
|
906
|
-
eventName: string;
|
|
907
|
-
inviteeEmail: string;
|
|
908
|
-
startTime: Date;
|
|
909
|
-
endTime: Date;
|
|
910
|
-
rawWebhookData: any;
|
|
911
|
-
}
|
|
912
|
-
|
|
913
897
|
declare enum F2fInterviewRescheduleRequestStatusEnum {
|
|
914
898
|
PENDING = "PENDING",
|
|
915
899
|
APPROVED = "APPROVED",
|
|
@@ -925,6 +909,25 @@ declare class F2fInterviewRescheduleRequest extends BaseEntity {
|
|
|
925
909
|
status: F2fInterviewRescheduleRequestStatusEnum;
|
|
926
910
|
}
|
|
927
911
|
|
|
912
|
+
declare enum F2fInterviewScheduleStatusEnum {
|
|
913
|
+
ACTIVE = "ACTIVE",
|
|
914
|
+
COMPELETED = "COMPELETED",
|
|
915
|
+
RESCHEDULED = "RESCHEDULED",
|
|
916
|
+
CANCELLED = "CANCELLED"
|
|
917
|
+
}
|
|
918
|
+
declare class F2FInterviewSchedule extends BaseEntity {
|
|
919
|
+
f2fInterviewId: number;
|
|
920
|
+
f2fInterview: F2FInterview;
|
|
921
|
+
meetingZoomLink: string;
|
|
922
|
+
meetingId: string;
|
|
923
|
+
meetingPasscode: string;
|
|
924
|
+
rescheduleUrl: string;
|
|
925
|
+
cancelUrl: string;
|
|
926
|
+
status: F2fInterviewScheduleStatusEnum;
|
|
927
|
+
meetingStartTime: Date;
|
|
928
|
+
meetingEndTime: Date;
|
|
929
|
+
}
|
|
930
|
+
|
|
928
931
|
declare enum F2fInterviewStatusEnum {
|
|
929
932
|
DRAFTED = "DRAFTED",
|
|
930
933
|
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
@@ -937,6 +940,7 @@ declare enum F2fInterviewStatusEnum {
|
|
|
937
940
|
}
|
|
938
941
|
declare class F2FInterview extends BaseEntity {
|
|
939
942
|
interviewUniqueId: string;
|
|
943
|
+
round: string;
|
|
940
944
|
interviewId: number;
|
|
941
945
|
interview: Interview;
|
|
942
946
|
interviwerId: number;
|
|
@@ -945,22 +949,15 @@ declare class F2FInterview extends BaseEntity {
|
|
|
945
949
|
candidate: User;
|
|
946
950
|
inviteeEmail: string;
|
|
947
951
|
inviteeName: string;
|
|
948
|
-
meetingZoomLink: string;
|
|
949
|
-
meetingId: string;
|
|
950
|
-
meetingPasscode: string;
|
|
951
|
-
rescheduleUrl: string;
|
|
952
|
-
cancelUrl: string;
|
|
953
952
|
eventName: string;
|
|
954
|
-
isRescheduled: boolean;
|
|
955
953
|
status: F2fInterviewStatusEnum;
|
|
954
|
+
isRescheduled: boolean;
|
|
955
|
+
lastRescheduledAt: Date;
|
|
956
956
|
cancelledAt: Date;
|
|
957
957
|
cancelReason: string;
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
meetingEndTime: Date;
|
|
962
|
-
calendlyMeetingId: number;
|
|
963
|
-
calendlyMeeting: CalendlyMeeting;
|
|
958
|
+
provider: string;
|
|
959
|
+
providerEventId: string;
|
|
960
|
+
schedules: F2FInterviewSchedule[];
|
|
964
961
|
rescheduleRequests: F2fInterviewRescheduleRequest[];
|
|
965
962
|
}
|
|
966
963
|
|
|
@@ -2357,4 +2354,9 @@ declare class Commission extends BaseEntity {
|
|
|
2357
2354
|
clientCommission: number;
|
|
2358
2355
|
}
|
|
2359
2356
|
|
|
2360
|
-
|
|
2357
|
+
declare class CalendlyMeetingLog extends BaseEntity {
|
|
2358
|
+
calendlyEventId: string;
|
|
2359
|
+
rawWebhookData: any;
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Country, CreateAdminRoleDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewSkill, InterviewStatusEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RefreshDto, RefreshToken, ResetPasswordDto, ResetPasswordTokenValidationDto, STATE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
package/dist/index.js
CHANGED
|
@@ -65,8 +65,7 @@ __export(index_exports, {
|
|
|
65
65
|
COMPANY_MEMBERS_PATTERNS: () => COMPANY_MEMBERS_PATTERNS,
|
|
66
66
|
COMPANY_ROLES_PATTERNS: () => COMPANY_ROLES_PATTERNS,
|
|
67
67
|
COUNTRY_PATTERN: () => COUNTRY_PATTERN,
|
|
68
|
-
|
|
69
|
-
CalendlyMeetingStatus: () => CalendlyMeetingStatus,
|
|
68
|
+
CalendlyMeetingLog: () => CalendlyMeetingLog,
|
|
70
69
|
CandidateType: () => CandidateType,
|
|
71
70
|
CaseStudyDto: () => CaseStudyDto,
|
|
72
71
|
CategoryEmum: () => CategoryEmum,
|
|
@@ -107,9 +106,11 @@ __export(index_exports, {
|
|
|
107
106
|
EmploymentType: () => EmploymentType,
|
|
108
107
|
ExperienceDto: () => ExperienceDto,
|
|
109
108
|
F2FInterview: () => F2FInterview,
|
|
109
|
+
F2FInterviewSchedule: () => F2FInterviewSchedule,
|
|
110
110
|
F2F_INTERVIEW_PATTERN: () => F2F_INTERVIEW_PATTERN,
|
|
111
111
|
F2fInterviewRescheduleRequest: () => F2fInterviewRescheduleRequest,
|
|
112
112
|
F2fInterviewRescheduleRequestStatusEnum: () => F2fInterviewRescheduleRequestStatusEnum,
|
|
113
|
+
F2fInterviewScheduleStatusEnum: () => F2fInterviewScheduleStatusEnum,
|
|
113
114
|
F2fInterviewStatusEnum: () => F2fInterviewStatusEnum,
|
|
114
115
|
FREELANCER_DECLARATION_PATTERN: () => FREELANCER_DECLARATION_PATTERN,
|
|
115
116
|
FREELANCER_EDUCATION_PATTERN: () => FREELANCER_EDUCATION_PATTERN,
|
|
@@ -2548,49 +2549,8 @@ AiInterview = __decorateClass([
|
|
|
2548
2549
|
// src/entities/f2f-interview.entity.ts
|
|
2549
2550
|
var import_typeorm18 = require("typeorm");
|
|
2550
2551
|
|
|
2551
|
-
// src/entities/calendly-meeting.entity.ts
|
|
2552
|
-
var import_typeorm16 = require("typeorm");
|
|
2553
|
-
var CalendlyMeetingStatus = /* @__PURE__ */ ((CalendlyMeetingStatus2) => {
|
|
2554
|
-
CalendlyMeetingStatus2["PENDING"] = "PENDING";
|
|
2555
|
-
CalendlyMeetingStatus2["CONFIRMED"] = "CONFIRMED";
|
|
2556
|
-
CalendlyMeetingStatus2["CANCELED"] = "CANCELED";
|
|
2557
|
-
CalendlyMeetingStatus2["COMPLETED"] = "COMPLETED";
|
|
2558
|
-
return CalendlyMeetingStatus2;
|
|
2559
|
-
})(CalendlyMeetingStatus || {});
|
|
2560
|
-
var CalendlyMeeting = class extends BaseEntity {
|
|
2561
|
-
};
|
|
2562
|
-
__decorateClass([
|
|
2563
|
-
(0, import_typeorm16.OneToOne)(() => F2FInterview, (F2FInterview2) => F2FInterview2.calendlyMeeting)
|
|
2564
|
-
], CalendlyMeeting.prototype, "f2fInterview", 2);
|
|
2565
|
-
__decorateClass([
|
|
2566
|
-
(0, import_typeorm16.Column)({ name: "calendly_event_id", type: "varchar", nullable: true, unique: true }),
|
|
2567
|
-
(0, import_typeorm16.Index)()
|
|
2568
|
-
], CalendlyMeeting.prototype, "calendlyEventId", 2);
|
|
2569
|
-
__decorateClass([
|
|
2570
|
-
(0, import_typeorm16.Column)({ name: "event_name", type: "varchar", nullable: true })
|
|
2571
|
-
], CalendlyMeeting.prototype, "eventName", 2);
|
|
2572
|
-
__decorateClass([
|
|
2573
|
-
(0, import_typeorm16.Column)({ name: "invitee_email", type: "varchar", nullable: true }),
|
|
2574
|
-
(0, import_typeorm16.Index)()
|
|
2575
|
-
], CalendlyMeeting.prototype, "inviteeEmail", 2);
|
|
2576
|
-
__decorateClass([
|
|
2577
|
-
(0, import_typeorm16.Column)({ name: "start_time", type: "timestamp with time zone", nullable: true }),
|
|
2578
|
-
(0, import_typeorm16.Index)()
|
|
2579
|
-
], CalendlyMeeting.prototype, "startTime", 2);
|
|
2580
|
-
__decorateClass([
|
|
2581
|
-
(0, import_typeorm16.Column)({ name: "end_time", type: "timestamp with time zone", nullable: true })
|
|
2582
|
-
], CalendlyMeeting.prototype, "endTime", 2);
|
|
2583
|
-
__decorateClass([
|
|
2584
|
-
(0, import_typeorm16.Column)({ name: "raw_webhook_data", type: "jsonb", nullable: true })
|
|
2585
|
-
], CalendlyMeeting.prototype, "rawWebhookData", 2);
|
|
2586
|
-
CalendlyMeeting = __decorateClass([
|
|
2587
|
-
(0, import_typeorm16.Entity)("calendly_meetings"),
|
|
2588
|
-
(0, import_typeorm16.Unique)("UQ_calendly_event_invitee", ["calendlyEventId", "inviteeEmail"]),
|
|
2589
|
-
(0, import_typeorm16.Unique)("UQ_calendly_meeting_time_email", ["inviteeEmail", "startTime", "eventName"])
|
|
2590
|
-
], CalendlyMeeting);
|
|
2591
|
-
|
|
2592
2552
|
// src/entities/f2f-interview-reschedule-request.entity.ts
|
|
2593
|
-
var
|
|
2553
|
+
var import_typeorm16 = require("typeorm");
|
|
2594
2554
|
var F2fInterviewRescheduleRequestStatusEnum = /* @__PURE__ */ ((F2fInterviewRescheduleRequestStatusEnum2) => {
|
|
2595
2555
|
F2fInterviewRescheduleRequestStatusEnum2["PENDING"] = "PENDING";
|
|
2596
2556
|
F2fInterviewRescheduleRequestStatusEnum2["APPROVED"] = "APPROVED";
|
|
@@ -2600,27 +2560,27 @@ var F2fInterviewRescheduleRequestStatusEnum = /* @__PURE__ */ ((F2fInterviewResc
|
|
|
2600
2560
|
var F2fInterviewRescheduleRequest = class extends BaseEntity {
|
|
2601
2561
|
};
|
|
2602
2562
|
__decorateClass([
|
|
2603
|
-
(0,
|
|
2563
|
+
(0, import_typeorm16.Column)({ name: "candidate_id", type: "integer", nullable: true })
|
|
2604
2564
|
], F2fInterviewRescheduleRequest.prototype, "candidateId", 2);
|
|
2605
2565
|
__decorateClass([
|
|
2606
|
-
(0,
|
|
2607
|
-
(0,
|
|
2566
|
+
(0, import_typeorm16.ManyToOne)(() => User, (user) => user.freelancerF2FInterviewRescheduleRequests, { nullable: true }),
|
|
2567
|
+
(0, import_typeorm16.JoinColumn)({ name: "candidate_id" })
|
|
2608
2568
|
], F2fInterviewRescheduleRequest.prototype, "candidate", 2);
|
|
2609
2569
|
__decorateClass([
|
|
2610
|
-
(0,
|
|
2570
|
+
(0, import_typeorm16.Column)({ name: "f2finterview_id", type: "integer", nullable: true })
|
|
2611
2571
|
], F2fInterviewRescheduleRequest.prototype, "f2fInterviewId", 2);
|
|
2612
2572
|
__decorateClass([
|
|
2613
|
-
(0,
|
|
2614
|
-
(0,
|
|
2573
|
+
(0, import_typeorm16.ManyToOne)(() => F2FInterview, (f2FInterview) => f2FInterview.rescheduleRequests),
|
|
2574
|
+
(0, import_typeorm16.JoinColumn)({ name: "f2finterview_id" })
|
|
2615
2575
|
], F2fInterviewRescheduleRequest.prototype, "f2fInterview", 2);
|
|
2616
2576
|
__decorateClass([
|
|
2617
|
-
(0,
|
|
2577
|
+
(0, import_typeorm16.Column)({ name: "rescheduled_date", type: "timestamp with time zone", nullable: true })
|
|
2618
2578
|
], F2fInterviewRescheduleRequest.prototype, "rescheduledDate", 2);
|
|
2619
2579
|
__decorateClass([
|
|
2620
|
-
(0,
|
|
2580
|
+
(0, import_typeorm16.Column)({ name: "rescheduled_slot", type: "varchar", nullable: true })
|
|
2621
2581
|
], F2fInterviewRescheduleRequest.prototype, "rescheduledSlot", 2);
|
|
2622
2582
|
__decorateClass([
|
|
2623
|
-
(0,
|
|
2583
|
+
(0, import_typeorm16.Column)({
|
|
2624
2584
|
name: "status",
|
|
2625
2585
|
type: "enum",
|
|
2626
2586
|
enum: F2fInterviewRescheduleRequestStatusEnum,
|
|
@@ -2628,9 +2588,68 @@ __decorateClass([
|
|
|
2628
2588
|
})
|
|
2629
2589
|
], F2fInterviewRescheduleRequest.prototype, "status", 2);
|
|
2630
2590
|
F2fInterviewRescheduleRequest = __decorateClass([
|
|
2631
|
-
(0,
|
|
2591
|
+
(0, import_typeorm16.Entity)("f2f_interview_reschedule_requests")
|
|
2632
2592
|
], F2fInterviewRescheduleRequest);
|
|
2633
2593
|
|
|
2594
|
+
// src/entities/f2f-interview-schedule.entity.ts
|
|
2595
|
+
var import_typeorm17 = require("typeorm");
|
|
2596
|
+
var F2fInterviewScheduleStatusEnum = /* @__PURE__ */ ((F2fInterviewScheduleStatusEnum2) => {
|
|
2597
|
+
F2fInterviewScheduleStatusEnum2["ACTIVE"] = "ACTIVE";
|
|
2598
|
+
F2fInterviewScheduleStatusEnum2["COMPELETED"] = "COMPELETED";
|
|
2599
|
+
F2fInterviewScheduleStatusEnum2["RESCHEDULED"] = "RESCHEDULED";
|
|
2600
|
+
F2fInterviewScheduleStatusEnum2["CANCELLED"] = "CANCELLED";
|
|
2601
|
+
return F2fInterviewScheduleStatusEnum2;
|
|
2602
|
+
})(F2fInterviewScheduleStatusEnum || {});
|
|
2603
|
+
var F2FInterviewSchedule = class extends BaseEntity {
|
|
2604
|
+
};
|
|
2605
|
+
__decorateClass([
|
|
2606
|
+
(0, import_typeorm17.Column)({ name: "f2f_interview_id", type: "integer", nullable: true })
|
|
2607
|
+
], F2FInterviewSchedule.prototype, "f2fInterviewId", 2);
|
|
2608
|
+
__decorateClass([
|
|
2609
|
+
(0, import_typeorm17.ManyToOne)(() => F2FInterview, (f2fInterview) => f2fInterview.schedules),
|
|
2610
|
+
(0, import_typeorm17.JoinColumn)({ name: "f2f_interview_id" })
|
|
2611
|
+
], F2FInterviewSchedule.prototype, "f2fInterview", 2);
|
|
2612
|
+
__decorateClass([
|
|
2613
|
+
(0, import_typeorm17.Column)({ name: "zoom_link", type: "varchar", nullable: true })
|
|
2614
|
+
], F2FInterviewSchedule.prototype, "meetingZoomLink", 2);
|
|
2615
|
+
__decorateClass([
|
|
2616
|
+
(0, import_typeorm17.Column)({ name: "meeting_id", type: "varchar", nullable: true })
|
|
2617
|
+
], F2FInterviewSchedule.prototype, "meetingId", 2);
|
|
2618
|
+
__decorateClass([
|
|
2619
|
+
(0, import_typeorm17.Column)({ name: "meeting_passcode", type: "varchar", nullable: true })
|
|
2620
|
+
], F2FInterviewSchedule.prototype, "meetingPasscode", 2);
|
|
2621
|
+
__decorateClass([
|
|
2622
|
+
(0, import_typeorm17.Column)({ name: "reschedule_url", type: "varchar", nullable: true })
|
|
2623
|
+
], F2FInterviewSchedule.prototype, "rescheduleUrl", 2);
|
|
2624
|
+
__decorateClass([
|
|
2625
|
+
(0, import_typeorm17.Column)({ name: "cancel_url", type: "varchar", nullable: true })
|
|
2626
|
+
], F2FInterviewSchedule.prototype, "cancelUrl", 2);
|
|
2627
|
+
__decorateClass([
|
|
2628
|
+
(0, import_typeorm17.Column)({
|
|
2629
|
+
name: "status",
|
|
2630
|
+
type: "enum",
|
|
2631
|
+
enum: F2fInterviewScheduleStatusEnum,
|
|
2632
|
+
default: "ACTIVE" /* ACTIVE */
|
|
2633
|
+
})
|
|
2634
|
+
], F2FInterviewSchedule.prototype, "status", 2);
|
|
2635
|
+
__decorateClass([
|
|
2636
|
+
(0, import_typeorm17.Column)({
|
|
2637
|
+
name: "meeting_start_time",
|
|
2638
|
+
type: "timestamp with time zone",
|
|
2639
|
+
nullable: true
|
|
2640
|
+
})
|
|
2641
|
+
], F2FInterviewSchedule.prototype, "meetingStartTime", 2);
|
|
2642
|
+
__decorateClass([
|
|
2643
|
+
(0, import_typeorm17.Column)({
|
|
2644
|
+
name: "meeting_end_time",
|
|
2645
|
+
type: "timestamp with time zone",
|
|
2646
|
+
nullable: true
|
|
2647
|
+
})
|
|
2648
|
+
], F2FInterviewSchedule.prototype, "meetingEndTime", 2);
|
|
2649
|
+
F2FInterviewSchedule = __decorateClass([
|
|
2650
|
+
(0, import_typeorm17.Entity)("f2f_interview_schedules")
|
|
2651
|
+
], F2FInterviewSchedule);
|
|
2652
|
+
|
|
2634
2653
|
// src/entities/f2f-interview.entity.ts
|
|
2635
2654
|
var F2fInterviewStatusEnum = /* @__PURE__ */ ((F2fInterviewStatusEnum2) => {
|
|
2636
2655
|
F2fInterviewStatusEnum2["DRAFTED"] = "DRAFTED";
|
|
@@ -2648,6 +2667,9 @@ var F2FInterview = class extends BaseEntity {
|
|
|
2648
2667
|
__decorateClass([
|
|
2649
2668
|
(0, import_typeorm18.Column)({ name: "interview_unique_id", type: "varchar", nullable: true, unique: true })
|
|
2650
2669
|
], F2FInterview.prototype, "interviewUniqueId", 2);
|
|
2670
|
+
__decorateClass([
|
|
2671
|
+
(0, import_typeorm18.Column)({ name: "round", type: "varchar", nullable: true })
|
|
2672
|
+
], F2FInterview.prototype, "round", 2);
|
|
2651
2673
|
__decorateClass([
|
|
2652
2674
|
(0, import_typeorm18.Column)({ name: "interview_id", type: "integer", nullable: true })
|
|
2653
2675
|
], F2FInterview.prototype, "interviewId", 2);
|
|
@@ -2675,27 +2697,9 @@ __decorateClass([
|
|
|
2675
2697
|
__decorateClass([
|
|
2676
2698
|
(0, import_typeorm18.Column)({ name: "invitee_name", type: "varchar", nullable: true })
|
|
2677
2699
|
], F2FInterview.prototype, "inviteeName", 2);
|
|
2678
|
-
__decorateClass([
|
|
2679
|
-
(0, import_typeorm18.Column)({ name: "zoom_link", type: "varchar", nullable: true })
|
|
2680
|
-
], F2FInterview.prototype, "meetingZoomLink", 2);
|
|
2681
|
-
__decorateClass([
|
|
2682
|
-
(0, import_typeorm18.Column)({ name: "meeting_id", type: "varchar", nullable: true })
|
|
2683
|
-
], F2FInterview.prototype, "meetingId", 2);
|
|
2684
|
-
__decorateClass([
|
|
2685
|
-
(0, import_typeorm18.Column)({ name: "meeting_passcode", type: "varchar", nullable: true })
|
|
2686
|
-
], F2FInterview.prototype, "meetingPasscode", 2);
|
|
2687
|
-
__decorateClass([
|
|
2688
|
-
(0, import_typeorm18.Column)({ name: "reschedule_url", type: "varchar", nullable: true })
|
|
2689
|
-
], F2FInterview.prototype, "rescheduleUrl", 2);
|
|
2690
|
-
__decorateClass([
|
|
2691
|
-
(0, import_typeorm18.Column)({ name: "cancel_url", type: "varchar", nullable: true })
|
|
2692
|
-
], F2FInterview.prototype, "cancelUrl", 2);
|
|
2693
2700
|
__decorateClass([
|
|
2694
2701
|
(0, import_typeorm18.Column)({ name: "event_name", type: "varchar", nullable: true })
|
|
2695
2702
|
], F2FInterview.prototype, "eventName", 2);
|
|
2696
|
-
__decorateClass([
|
|
2697
|
-
(0, import_typeorm18.Column)({ name: "is_rescheduled", type: "boolean", default: false })
|
|
2698
|
-
], F2FInterview.prototype, "isRescheduled", 2);
|
|
2699
2703
|
__decorateClass([
|
|
2700
2704
|
(0, import_typeorm18.Column)({
|
|
2701
2705
|
name: "status",
|
|
@@ -2704,6 +2708,12 @@ __decorateClass([
|
|
|
2704
2708
|
default: "ACTIVE" /* ACTIVE */
|
|
2705
2709
|
})
|
|
2706
2710
|
], F2FInterview.prototype, "status", 2);
|
|
2711
|
+
__decorateClass([
|
|
2712
|
+
(0, import_typeorm18.Column)({ name: "is_rescheduled", type: "boolean", default: false })
|
|
2713
|
+
], F2FInterview.prototype, "isRescheduled", 2);
|
|
2714
|
+
__decorateClass([
|
|
2715
|
+
(0, import_typeorm18.Column)({ name: "last_rescheduled_at", type: "timestamp with time zone", nullable: true })
|
|
2716
|
+
], F2FInterview.prototype, "lastRescheduledAt", 2);
|
|
2707
2717
|
__decorateClass([
|
|
2708
2718
|
(0, import_typeorm18.Column)({ name: "cancelled_at", type: "timestamp with time zone", nullable: true })
|
|
2709
2719
|
], F2FInterview.prototype, "cancelledAt", 2);
|
|
@@ -2711,24 +2721,14 @@ __decorateClass([
|
|
|
2711
2721
|
(0, import_typeorm18.Column)({ name: "cancel_reason", type: "varchar", nullable: true })
|
|
2712
2722
|
], F2FInterview.prototype, "cancelReason", 2);
|
|
2713
2723
|
__decorateClass([
|
|
2714
|
-
(0, import_typeorm18.Column)({ name: "
|
|
2715
|
-
], F2FInterview.prototype, "
|
|
2724
|
+
(0, import_typeorm18.Column)({ name: "provider", type: "varchar", nullable: true })
|
|
2725
|
+
], F2FInterview.prototype, "provider", 2);
|
|
2716
2726
|
__decorateClass([
|
|
2717
|
-
(0, import_typeorm18.Column)({ name: "
|
|
2718
|
-
], F2FInterview.prototype, "
|
|
2727
|
+
(0, import_typeorm18.Column)({ name: "provider_event_id", type: "varchar", nullable: true })
|
|
2728
|
+
], F2FInterview.prototype, "providerEventId", 2);
|
|
2719
2729
|
__decorateClass([
|
|
2720
|
-
(0, import_typeorm18.
|
|
2721
|
-
], F2FInterview.prototype, "
|
|
2722
|
-
__decorateClass([
|
|
2723
|
-
(0, import_typeorm18.Column)({ name: "meeting_end_time", type: "timestamp with time zone", nullable: true })
|
|
2724
|
-
], F2FInterview.prototype, "meetingEndTime", 2);
|
|
2725
|
-
__decorateClass([
|
|
2726
|
-
(0, import_typeorm18.Column)({ name: "calendly_meeting_id", type: "integer", nullable: true })
|
|
2727
|
-
], F2FInterview.prototype, "calendlyMeetingId", 2);
|
|
2728
|
-
__decorateClass([
|
|
2729
|
-
(0, import_typeorm18.OneToOne)(() => CalendlyMeeting),
|
|
2730
|
-
(0, import_typeorm18.JoinColumn)({ name: "calendly_meeting_id" })
|
|
2731
|
-
], F2FInterview.prototype, "calendlyMeeting", 2);
|
|
2730
|
+
(0, import_typeorm18.OneToMany)(() => F2FInterviewSchedule, (f2fInterviewSchedule) => f2fInterviewSchedule.f2fInterview)
|
|
2731
|
+
], F2FInterview.prototype, "schedules", 2);
|
|
2732
2732
|
__decorateClass([
|
|
2733
2733
|
(0, import_typeorm18.OneToMany)(() => F2fInterviewRescheduleRequest, (f2FInterviewRescheduleRequest) => f2FInterviewRescheduleRequest.f2fInterview)
|
|
2734
2734
|
], F2FInterview.prototype, "rescheduleRequests", 2);
|
|
@@ -6027,6 +6027,21 @@ __decorateClass([
|
|
|
6027
6027
|
Commission = __decorateClass([
|
|
6028
6028
|
(0, import_typeorm59.Entity)("commissions")
|
|
6029
6029
|
], Commission);
|
|
6030
|
+
|
|
6031
|
+
// src/entities/calendly-meeting-log.entity.ts
|
|
6032
|
+
var import_typeorm60 = require("typeorm");
|
|
6033
|
+
var CalendlyMeetingLog = class extends BaseEntity {
|
|
6034
|
+
};
|
|
6035
|
+
__decorateClass([
|
|
6036
|
+
(0, import_typeorm60.Column)({ name: "calendly_event_id", type: "varchar", nullable: true }),
|
|
6037
|
+
(0, import_typeorm60.Index)()
|
|
6038
|
+
], CalendlyMeetingLog.prototype, "calendlyEventId", 2);
|
|
6039
|
+
__decorateClass([
|
|
6040
|
+
(0, import_typeorm60.Column)({ name: "raw_webhook_data", type: "jsonb", nullable: true })
|
|
6041
|
+
], CalendlyMeetingLog.prototype, "rawWebhookData", 2);
|
|
6042
|
+
CalendlyMeetingLog = __decorateClass([
|
|
6043
|
+
(0, import_typeorm60.Entity)("calendly_meeting_logs")
|
|
6044
|
+
], CalendlyMeetingLog);
|
|
6030
6045
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6031
6046
|
0 && (module.exports = {
|
|
6032
6047
|
ADMIN_FREELANCER_PATTERN,
|
|
@@ -6067,8 +6082,7 @@ Commission = __decorateClass([
|
|
|
6067
6082
|
COMPANY_MEMBERS_PATTERNS,
|
|
6068
6083
|
COMPANY_ROLES_PATTERNS,
|
|
6069
6084
|
COUNTRY_PATTERN,
|
|
6070
|
-
|
|
6071
|
-
CalendlyMeetingStatus,
|
|
6085
|
+
CalendlyMeetingLog,
|
|
6072
6086
|
CandidateType,
|
|
6073
6087
|
CaseStudyDto,
|
|
6074
6088
|
CategoryEmum,
|
|
@@ -6109,9 +6123,11 @@ Commission = __decorateClass([
|
|
|
6109
6123
|
EmploymentType,
|
|
6110
6124
|
ExperienceDto,
|
|
6111
6125
|
F2FInterview,
|
|
6126
|
+
F2FInterviewSchedule,
|
|
6112
6127
|
F2F_INTERVIEW_PATTERN,
|
|
6113
6128
|
F2fInterviewRescheduleRequest,
|
|
6114
6129
|
F2fInterviewRescheduleRequestStatusEnum,
|
|
6130
|
+
F2fInterviewScheduleStatusEnum,
|
|
6115
6131
|
F2fInterviewStatusEnum,
|
|
6116
6132
|
FREELANCER_DECLARATION_PATTERN,
|
|
6117
6133
|
FREELANCER_EDUCATION_PATTERN,
|