@experts_hub/shared 1.0.339 → 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.
- 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 +1 -1
- package/dist/index.d.mts +31 -29
- package/dist/index.d.ts +31 -29
- package/dist/index.js +102 -90
- package/dist/index.mjs +345 -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,6 @@ 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
59
|
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, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, 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, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, 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,
|
|
@@ -2548,49 +2547,8 @@ AiInterview = __decorateClass([
|
|
|
2548
2547
|
// src/entities/f2f-interview.entity.ts
|
|
2549
2548
|
var import_typeorm18 = require("typeorm");
|
|
2550
2549
|
|
|
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
2550
|
// src/entities/f2f-interview-reschedule-request.entity.ts
|
|
2593
|
-
var
|
|
2551
|
+
var import_typeorm16 = require("typeorm");
|
|
2594
2552
|
var F2fInterviewRescheduleRequestStatusEnum = /* @__PURE__ */ ((F2fInterviewRescheduleRequestStatusEnum2) => {
|
|
2595
2553
|
F2fInterviewRescheduleRequestStatusEnum2["PENDING"] = "PENDING";
|
|
2596
2554
|
F2fInterviewRescheduleRequestStatusEnum2["APPROVED"] = "APPROVED";
|
|
@@ -2600,27 +2558,27 @@ var F2fInterviewRescheduleRequestStatusEnum = /* @__PURE__ */ ((F2fInterviewResc
|
|
|
2600
2558
|
var F2fInterviewRescheduleRequest = class extends BaseEntity {
|
|
2601
2559
|
};
|
|
2602
2560
|
__decorateClass([
|
|
2603
|
-
(0,
|
|
2561
|
+
(0, import_typeorm16.Column)({ name: "candidate_id", type: "integer", nullable: true })
|
|
2604
2562
|
], F2fInterviewRescheduleRequest.prototype, "candidateId", 2);
|
|
2605
2563
|
__decorateClass([
|
|
2606
|
-
(0,
|
|
2607
|
-
(0,
|
|
2564
|
+
(0, import_typeorm16.ManyToOne)(() => User, (user) => user.freelancerF2FInterviewRescheduleRequests, { nullable: true }),
|
|
2565
|
+
(0, import_typeorm16.JoinColumn)({ name: "candidate_id" })
|
|
2608
2566
|
], F2fInterviewRescheduleRequest.prototype, "candidate", 2);
|
|
2609
2567
|
__decorateClass([
|
|
2610
|
-
(0,
|
|
2568
|
+
(0, import_typeorm16.Column)({ name: "f2finterview_id", type: "integer", nullable: true })
|
|
2611
2569
|
], F2fInterviewRescheduleRequest.prototype, "f2fInterviewId", 2);
|
|
2612
2570
|
__decorateClass([
|
|
2613
|
-
(0,
|
|
2614
|
-
(0,
|
|
2571
|
+
(0, import_typeorm16.ManyToOne)(() => F2FInterview, (f2FInterview) => f2FInterview.rescheduleRequests),
|
|
2572
|
+
(0, import_typeorm16.JoinColumn)({ name: "f2finterview_id" })
|
|
2615
2573
|
], F2fInterviewRescheduleRequest.prototype, "f2fInterview", 2);
|
|
2616
2574
|
__decorateClass([
|
|
2617
|
-
(0,
|
|
2575
|
+
(0, import_typeorm16.Column)({ name: "rescheduled_date", type: "timestamp with time zone", nullable: true })
|
|
2618
2576
|
], F2fInterviewRescheduleRequest.prototype, "rescheduledDate", 2);
|
|
2619
2577
|
__decorateClass([
|
|
2620
|
-
(0,
|
|
2578
|
+
(0, import_typeorm16.Column)({ name: "rescheduled_slot", type: "varchar", nullable: true })
|
|
2621
2579
|
], F2fInterviewRescheduleRequest.prototype, "rescheduledSlot", 2);
|
|
2622
2580
|
__decorateClass([
|
|
2623
|
-
(0,
|
|
2581
|
+
(0, import_typeorm16.Column)({
|
|
2624
2582
|
name: "status",
|
|
2625
2583
|
type: "enum",
|
|
2626
2584
|
enum: F2fInterviewRescheduleRequestStatusEnum,
|
|
@@ -2628,9 +2586,68 @@ __decorateClass([
|
|
|
2628
2586
|
})
|
|
2629
2587
|
], F2fInterviewRescheduleRequest.prototype, "status", 2);
|
|
2630
2588
|
F2fInterviewRescheduleRequest = __decorateClass([
|
|
2631
|
-
(0,
|
|
2589
|
+
(0, import_typeorm16.Entity)("f2f_interview_reschedule_requests")
|
|
2632
2590
|
], F2fInterviewRescheduleRequest);
|
|
2633
2591
|
|
|
2592
|
+
// src/entities/f2f-interview-schedule.entity.ts
|
|
2593
|
+
var import_typeorm17 = require("typeorm");
|
|
2594
|
+
var F2fInterviewScheduleStatusEnum = /* @__PURE__ */ ((F2fInterviewScheduleStatusEnum2) => {
|
|
2595
|
+
F2fInterviewScheduleStatusEnum2["ACTIVE"] = "ACTIVE";
|
|
2596
|
+
F2fInterviewScheduleStatusEnum2["COMPELETED"] = "COMPELETED";
|
|
2597
|
+
F2fInterviewScheduleStatusEnum2["RESCHEDULED"] = "RESCHEDULED";
|
|
2598
|
+
F2fInterviewScheduleStatusEnum2["CANCELLED"] = "CANCELLED";
|
|
2599
|
+
return F2fInterviewScheduleStatusEnum2;
|
|
2600
|
+
})(F2fInterviewScheduleStatusEnum || {});
|
|
2601
|
+
var F2FInterviewSchedule = class extends BaseEntity {
|
|
2602
|
+
};
|
|
2603
|
+
__decorateClass([
|
|
2604
|
+
(0, import_typeorm17.Column)({ name: "f2f_interview_id", type: "integer", nullable: true })
|
|
2605
|
+
], F2FInterviewSchedule.prototype, "f2fInterviewId", 2);
|
|
2606
|
+
__decorateClass([
|
|
2607
|
+
(0, import_typeorm17.ManyToOne)(() => F2FInterview, (f2fInterview) => f2fInterview.schedules),
|
|
2608
|
+
(0, import_typeorm17.JoinColumn)({ name: "f2f_interview_id" })
|
|
2609
|
+
], F2FInterviewSchedule.prototype, "f2fInterview", 2);
|
|
2610
|
+
__decorateClass([
|
|
2611
|
+
(0, import_typeorm17.Column)({ name: "zoom_link", type: "varchar", nullable: true })
|
|
2612
|
+
], F2FInterviewSchedule.prototype, "meetingZoomLink", 2);
|
|
2613
|
+
__decorateClass([
|
|
2614
|
+
(0, import_typeorm17.Column)({ name: "meeting_id", type: "varchar", nullable: true })
|
|
2615
|
+
], F2FInterviewSchedule.prototype, "meetingId", 2);
|
|
2616
|
+
__decorateClass([
|
|
2617
|
+
(0, import_typeorm17.Column)({ name: "meeting_passcode", type: "varchar", nullable: true })
|
|
2618
|
+
], F2FInterviewSchedule.prototype, "meetingPasscode", 2);
|
|
2619
|
+
__decorateClass([
|
|
2620
|
+
(0, import_typeorm17.Column)({ name: "reschedule_url", type: "varchar", nullable: true })
|
|
2621
|
+
], F2FInterviewSchedule.prototype, "rescheduleUrl", 2);
|
|
2622
|
+
__decorateClass([
|
|
2623
|
+
(0, import_typeorm17.Column)({ name: "cancel_url", type: "varchar", nullable: true })
|
|
2624
|
+
], F2FInterviewSchedule.prototype, "cancelUrl", 2);
|
|
2625
|
+
__decorateClass([
|
|
2626
|
+
(0, import_typeorm17.Column)({
|
|
2627
|
+
name: "status",
|
|
2628
|
+
type: "enum",
|
|
2629
|
+
enum: F2fInterviewScheduleStatusEnum,
|
|
2630
|
+
default: "ACTIVE" /* ACTIVE */
|
|
2631
|
+
})
|
|
2632
|
+
], F2FInterviewSchedule.prototype, "status", 2);
|
|
2633
|
+
__decorateClass([
|
|
2634
|
+
(0, import_typeorm17.Column)({
|
|
2635
|
+
name: "meeting_start_time",
|
|
2636
|
+
type: "timestamp with time zone",
|
|
2637
|
+
nullable: true
|
|
2638
|
+
})
|
|
2639
|
+
], F2FInterviewSchedule.prototype, "meetingStartTime", 2);
|
|
2640
|
+
__decorateClass([
|
|
2641
|
+
(0, import_typeorm17.Column)({
|
|
2642
|
+
name: "meeting_end_time",
|
|
2643
|
+
type: "timestamp with time zone",
|
|
2644
|
+
nullable: true
|
|
2645
|
+
})
|
|
2646
|
+
], F2FInterviewSchedule.prototype, "meetingEndTime", 2);
|
|
2647
|
+
F2FInterviewSchedule = __decorateClass([
|
|
2648
|
+
(0, import_typeorm17.Entity)("f2f_interview_schedules")
|
|
2649
|
+
], F2FInterviewSchedule);
|
|
2650
|
+
|
|
2634
2651
|
// src/entities/f2f-interview.entity.ts
|
|
2635
2652
|
var F2fInterviewStatusEnum = /* @__PURE__ */ ((F2fInterviewStatusEnum2) => {
|
|
2636
2653
|
F2fInterviewStatusEnum2["DRAFTED"] = "DRAFTED";
|
|
@@ -2648,6 +2665,9 @@ var F2FInterview = class extends BaseEntity {
|
|
|
2648
2665
|
__decorateClass([
|
|
2649
2666
|
(0, import_typeorm18.Column)({ name: "interview_unique_id", type: "varchar", nullable: true, unique: true })
|
|
2650
2667
|
], F2FInterview.prototype, "interviewUniqueId", 2);
|
|
2668
|
+
__decorateClass([
|
|
2669
|
+
(0, import_typeorm18.Column)({ name: "round", type: "varchar", nullable: true })
|
|
2670
|
+
], F2FInterview.prototype, "round", 2);
|
|
2651
2671
|
__decorateClass([
|
|
2652
2672
|
(0, import_typeorm18.Column)({ name: "interview_id", type: "integer", nullable: true })
|
|
2653
2673
|
], F2FInterview.prototype, "interviewId", 2);
|
|
@@ -2675,27 +2695,9 @@ __decorateClass([
|
|
|
2675
2695
|
__decorateClass([
|
|
2676
2696
|
(0, import_typeorm18.Column)({ name: "invitee_name", type: "varchar", nullable: true })
|
|
2677
2697
|
], 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
2698
|
__decorateClass([
|
|
2694
2699
|
(0, import_typeorm18.Column)({ name: "event_name", type: "varchar", nullable: true })
|
|
2695
2700
|
], F2FInterview.prototype, "eventName", 2);
|
|
2696
|
-
__decorateClass([
|
|
2697
|
-
(0, import_typeorm18.Column)({ name: "is_rescheduled", type: "boolean", default: false })
|
|
2698
|
-
], F2FInterview.prototype, "isRescheduled", 2);
|
|
2699
2701
|
__decorateClass([
|
|
2700
2702
|
(0, import_typeorm18.Column)({
|
|
2701
2703
|
name: "status",
|
|
@@ -2704,6 +2706,12 @@ __decorateClass([
|
|
|
2704
2706
|
default: "ACTIVE" /* ACTIVE */
|
|
2705
2707
|
})
|
|
2706
2708
|
], F2FInterview.prototype, "status", 2);
|
|
2709
|
+
__decorateClass([
|
|
2710
|
+
(0, import_typeorm18.Column)({ name: "is_rescheduled", type: "boolean", default: false })
|
|
2711
|
+
], F2FInterview.prototype, "isRescheduled", 2);
|
|
2712
|
+
__decorateClass([
|
|
2713
|
+
(0, import_typeorm18.Column)({ name: "last_rescheduled_at", type: "timestamp with time zone", nullable: true })
|
|
2714
|
+
], F2FInterview.prototype, "lastRescheduledAt", 2);
|
|
2707
2715
|
__decorateClass([
|
|
2708
2716
|
(0, import_typeorm18.Column)({ name: "cancelled_at", type: "timestamp with time zone", nullable: true })
|
|
2709
2717
|
], F2FInterview.prototype, "cancelledAt", 2);
|
|
@@ -2711,24 +2719,14 @@ __decorateClass([
|
|
|
2711
2719
|
(0, import_typeorm18.Column)({ name: "cancel_reason", type: "varchar", nullable: true })
|
|
2712
2720
|
], F2FInterview.prototype, "cancelReason", 2);
|
|
2713
2721
|
__decorateClass([
|
|
2714
|
-
(0, import_typeorm18.Column)({ name: "
|
|
2715
|
-
], F2FInterview.prototype, "
|
|
2722
|
+
(0, import_typeorm18.Column)({ name: "provider", type: "varchar", nullable: true })
|
|
2723
|
+
], F2FInterview.prototype, "provider", 2);
|
|
2716
2724
|
__decorateClass([
|
|
2717
|
-
(0, import_typeorm18.Column)({ name: "
|
|
2718
|
-
], F2FInterview.prototype, "
|
|
2725
|
+
(0, import_typeorm18.Column)({ name: "provider_event_id", type: "varchar", nullable: true })
|
|
2726
|
+
], F2FInterview.prototype, "providerEventId", 2);
|
|
2719
2727
|
__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);
|
|
2728
|
+
(0, import_typeorm18.OneToMany)(() => F2FInterviewSchedule, (f2fInterviewSchedule) => f2fInterviewSchedule.f2fInterview)
|
|
2729
|
+
], F2FInterview.prototype, "schedules", 2);
|
|
2732
2730
|
__decorateClass([
|
|
2733
2731
|
(0, import_typeorm18.OneToMany)(() => F2fInterviewRescheduleRequest, (f2FInterviewRescheduleRequest) => f2FInterviewRescheduleRequest.f2fInterview)
|
|
2734
2732
|
], F2FInterview.prototype, "rescheduleRequests", 2);
|
|
@@ -6027,6 +6025,21 @@ __decorateClass([
|
|
|
6027
6025
|
Commission = __decorateClass([
|
|
6028
6026
|
(0, import_typeorm59.Entity)("commissions")
|
|
6029
6027
|
], Commission);
|
|
6028
|
+
|
|
6029
|
+
// src/entities/calendly-meeting-log.entity.ts
|
|
6030
|
+
var import_typeorm60 = require("typeorm");
|
|
6031
|
+
var CalendlyMeetingLog = class extends BaseEntity {
|
|
6032
|
+
};
|
|
6033
|
+
__decorateClass([
|
|
6034
|
+
(0, import_typeorm60.Column)({ name: "calendly_event_id", type: "varchar", nullable: true }),
|
|
6035
|
+
(0, import_typeorm60.Index)()
|
|
6036
|
+
], CalendlyMeetingLog.prototype, "calendlyEventId", 2);
|
|
6037
|
+
__decorateClass([
|
|
6038
|
+
(0, import_typeorm60.Column)({ name: "raw_webhook_data", type: "jsonb", nullable: true })
|
|
6039
|
+
], CalendlyMeetingLog.prototype, "rawWebhookData", 2);
|
|
6040
|
+
CalendlyMeetingLog = __decorateClass([
|
|
6041
|
+
(0, import_typeorm60.Entity)("calendly_meeting_logs")
|
|
6042
|
+
], CalendlyMeetingLog);
|
|
6030
6043
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6031
6044
|
0 && (module.exports = {
|
|
6032
6045
|
ADMIN_FREELANCER_PATTERN,
|
|
@@ -6067,8 +6080,7 @@ Commission = __decorateClass([
|
|
|
6067
6080
|
COMPANY_MEMBERS_PATTERNS,
|
|
6068
6081
|
COMPANY_ROLES_PATTERNS,
|
|
6069
6082
|
COUNTRY_PATTERN,
|
|
6070
|
-
|
|
6071
|
-
CalendlyMeetingStatus,
|
|
6083
|
+
CalendlyMeetingLog,
|
|
6072
6084
|
CandidateType,
|
|
6073
6085
|
CaseStudyDto,
|
|
6074
6086
|
CategoryEmum,
|