@experts_hub/shared 1.0.330 → 1.0.331
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.entity.d.ts +2 -20
- package/dist/entities/{freelancer-f2f-interview.entity.d.ts → f2f-interview.entity.d.ts} +7 -1
- package/dist/entities/user.entity.d.ts +3 -0
- package/dist/index.d.mts +42 -0
- package/dist/index.d.ts +42 -0
- package/dist/index.js +331 -209
- package/dist/index.mjs +249 -115
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseEntity } from './base.entity';
|
|
2
|
-
import {
|
|
2
|
+
import { F2FInterview } from './f2f-interview.entity';
|
|
3
3
|
export declare enum CalendlyMeetingStatus {
|
|
4
4
|
PENDING = "PENDING",
|
|
5
5
|
CONFIRMED = "CONFIRMED",
|
|
@@ -7,29 +7,11 @@ export declare enum CalendlyMeetingStatus {
|
|
|
7
7
|
COMPLETED = "COMPLETED"
|
|
8
8
|
}
|
|
9
9
|
export declare class CalendlyMeeting extends BaseEntity {
|
|
10
|
-
|
|
11
|
-
userId: number;
|
|
10
|
+
f2fInterview: F2FInterview;
|
|
12
11
|
calendlyEventId: string;
|
|
13
|
-
scheduledEventId: string;
|
|
14
12
|
eventName: string;
|
|
15
|
-
eventLocation: string;
|
|
16
13
|
inviteeEmail: string;
|
|
17
|
-
inviteeName: string;
|
|
18
14
|
startTime: Date;
|
|
19
15
|
endTime: Date;
|
|
20
|
-
timezone: string;
|
|
21
|
-
status: CalendlyMeetingStatus;
|
|
22
|
-
active: boolean;
|
|
23
|
-
cancelledAt: Date;
|
|
24
|
-
cancelReason: string;
|
|
25
|
-
notes: string;
|
|
26
|
-
isRescheduled: boolean;
|
|
27
|
-
rescheduleUrl: string;
|
|
28
|
-
rescheduledFromId: string;
|
|
29
|
-
questionsAndAnswers: Array<{
|
|
30
|
-
question: string;
|
|
31
|
-
answer: string;
|
|
32
|
-
}>;
|
|
33
16
|
rawWebhookData: any;
|
|
34
|
-
isFromWebhook: boolean;
|
|
35
17
|
}
|
|
@@ -1,14 +1,20 @@
|
|
|
1
|
+
import { User } from './user.entity';
|
|
1
2
|
import { BaseEntity } from './base.entity';
|
|
2
3
|
import { CalendlyMeeting, CalendlyMeetingStatus } from './calendly-meeting.entity';
|
|
3
|
-
export declare class
|
|
4
|
+
export declare class F2FInterview extends BaseEntity {
|
|
4
5
|
calendlyMeeting: CalendlyMeeting;
|
|
5
6
|
calendlyMeetingId: number;
|
|
7
|
+
client: User;
|
|
6
8
|
clientId: number;
|
|
9
|
+
freelancer: User;
|
|
7
10
|
freelancerId: number;
|
|
11
|
+
inviteeEmail: string;
|
|
12
|
+
inviteeName: string;
|
|
8
13
|
meetingZoomLink: string;
|
|
9
14
|
meetingId: string;
|
|
10
15
|
meetingPasscode: string;
|
|
11
16
|
rescheduleUrl: string;
|
|
17
|
+
eventName: string;
|
|
12
18
|
isRescheduled: boolean;
|
|
13
19
|
status: CalendlyMeetingStatus;
|
|
14
20
|
cancelledAt: Date;
|
|
@@ -25,6 +25,7 @@ import { CompanySkill } from "./company-skill.entity";
|
|
|
25
25
|
import { AdminUserRole } from "./admin-user-role.entity";
|
|
26
26
|
import { FreelancerResume } from "./freelancer-resume.entity";
|
|
27
27
|
import { AiInterview } from "./ai-interview.entity";
|
|
28
|
+
import { F2FInterview } from "./f2f-interview.entity";
|
|
28
29
|
export declare enum AccountType {
|
|
29
30
|
ADMIN = "ADMIN",
|
|
30
31
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -100,4 +101,6 @@ export declare class User extends BaseEntity {
|
|
|
100
101
|
givenRatings: Rating[];
|
|
101
102
|
receivedRatings: Rating[];
|
|
102
103
|
adminUserRoles: AdminUserRole[];
|
|
104
|
+
clientF2FInterviews: F2FInterview[];
|
|
105
|
+
freelancerF2FInterviews: F2FInterview[];
|
|
103
106
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1238,6 +1238,46 @@ declare class FreelancerResume extends BaseEntity {
|
|
|
1238
1238
|
processedResumeData: string;
|
|
1239
1239
|
}
|
|
1240
1240
|
|
|
1241
|
+
declare enum CalendlyMeetingStatus {
|
|
1242
|
+
PENDING = "PENDING",
|
|
1243
|
+
CONFIRMED = "CONFIRMED",
|
|
1244
|
+
CANCELED = "CANCELED",
|
|
1245
|
+
COMPLETED = "COMPLETED"
|
|
1246
|
+
}
|
|
1247
|
+
declare class CalendlyMeeting extends BaseEntity {
|
|
1248
|
+
f2fInterview: F2FInterview;
|
|
1249
|
+
calendlyEventId: string;
|
|
1250
|
+
eventName: string;
|
|
1251
|
+
inviteeEmail: string;
|
|
1252
|
+
startTime: Date;
|
|
1253
|
+
endTime: Date;
|
|
1254
|
+
rawWebhookData: any;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
declare class F2FInterview extends BaseEntity {
|
|
1258
|
+
calendlyMeeting: CalendlyMeeting;
|
|
1259
|
+
calendlyMeetingId: number;
|
|
1260
|
+
client: User;
|
|
1261
|
+
clientId: number;
|
|
1262
|
+
freelancer: User;
|
|
1263
|
+
freelancerId: number;
|
|
1264
|
+
inviteeEmail: string;
|
|
1265
|
+
inviteeName: string;
|
|
1266
|
+
meetingZoomLink: string;
|
|
1267
|
+
meetingId: string;
|
|
1268
|
+
meetingPasscode: string;
|
|
1269
|
+
rescheduleUrl: string;
|
|
1270
|
+
eventName: string;
|
|
1271
|
+
isRescheduled: boolean;
|
|
1272
|
+
status: CalendlyMeetingStatus;
|
|
1273
|
+
cancelledAt: Date;
|
|
1274
|
+
cancelReason: string;
|
|
1275
|
+
rescheduledAt: Date;
|
|
1276
|
+
isCompleted: boolean;
|
|
1277
|
+
meetingStartTime: Date;
|
|
1278
|
+
meetingEndTime: Date;
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1241
1281
|
declare enum AccountType {
|
|
1242
1282
|
ADMIN = "ADMIN",
|
|
1243
1283
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -1313,6 +1353,8 @@ declare class User extends BaseEntity {
|
|
|
1313
1353
|
givenRatings: Rating[];
|
|
1314
1354
|
receivedRatings: Rating[];
|
|
1315
1355
|
adminUserRoles: AdminUserRole[];
|
|
1356
|
+
clientF2FInterviews: F2FInterview[];
|
|
1357
|
+
freelancerF2FInterviews: F2FInterview[];
|
|
1316
1358
|
}
|
|
1317
1359
|
|
|
1318
1360
|
declare enum RatingTypeEnum {
|
package/dist/index.d.ts
CHANGED
|
@@ -1238,6 +1238,46 @@ declare class FreelancerResume extends BaseEntity {
|
|
|
1238
1238
|
processedResumeData: string;
|
|
1239
1239
|
}
|
|
1240
1240
|
|
|
1241
|
+
declare enum CalendlyMeetingStatus {
|
|
1242
|
+
PENDING = "PENDING",
|
|
1243
|
+
CONFIRMED = "CONFIRMED",
|
|
1244
|
+
CANCELED = "CANCELED",
|
|
1245
|
+
COMPLETED = "COMPLETED"
|
|
1246
|
+
}
|
|
1247
|
+
declare class CalendlyMeeting extends BaseEntity {
|
|
1248
|
+
f2fInterview: F2FInterview;
|
|
1249
|
+
calendlyEventId: string;
|
|
1250
|
+
eventName: string;
|
|
1251
|
+
inviteeEmail: string;
|
|
1252
|
+
startTime: Date;
|
|
1253
|
+
endTime: Date;
|
|
1254
|
+
rawWebhookData: any;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
declare class F2FInterview extends BaseEntity {
|
|
1258
|
+
calendlyMeeting: CalendlyMeeting;
|
|
1259
|
+
calendlyMeetingId: number;
|
|
1260
|
+
client: User;
|
|
1261
|
+
clientId: number;
|
|
1262
|
+
freelancer: User;
|
|
1263
|
+
freelancerId: number;
|
|
1264
|
+
inviteeEmail: string;
|
|
1265
|
+
inviteeName: string;
|
|
1266
|
+
meetingZoomLink: string;
|
|
1267
|
+
meetingId: string;
|
|
1268
|
+
meetingPasscode: string;
|
|
1269
|
+
rescheduleUrl: string;
|
|
1270
|
+
eventName: string;
|
|
1271
|
+
isRescheduled: boolean;
|
|
1272
|
+
status: CalendlyMeetingStatus;
|
|
1273
|
+
cancelledAt: Date;
|
|
1274
|
+
cancelReason: string;
|
|
1275
|
+
rescheduledAt: Date;
|
|
1276
|
+
isCompleted: boolean;
|
|
1277
|
+
meetingStartTime: Date;
|
|
1278
|
+
meetingEndTime: Date;
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1241
1281
|
declare enum AccountType {
|
|
1242
1282
|
ADMIN = "ADMIN",
|
|
1243
1283
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -1313,6 +1353,8 @@ declare class User extends BaseEntity {
|
|
|
1313
1353
|
givenRatings: Rating[];
|
|
1314
1354
|
receivedRatings: Rating[];
|
|
1315
1355
|
adminUserRoles: AdminUserRole[];
|
|
1356
|
+
clientF2FInterviews: F2FInterview[];
|
|
1357
|
+
freelancerF2FInterviews: F2FInterview[];
|
|
1316
1358
|
}
|
|
1317
1359
|
|
|
1318
1360
|
declare enum RatingTypeEnum {
|