@experts_hub/shared 1.0.500 → 1.0.502
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/interview-invite.entity.d.ts +3 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +15 -0
- package/dist/index.mjs +15 -0
- package/package.json +1 -1
|
@@ -17,9 +17,12 @@ export declare class InterviewInvite extends BaseEntity {
|
|
|
17
17
|
job: Job;
|
|
18
18
|
fullName: string;
|
|
19
19
|
email: string;
|
|
20
|
+
mobileCode: string;
|
|
21
|
+
mobile: string;
|
|
20
22
|
status: InterviewInviteStatusEnum;
|
|
21
23
|
sentAt: Date;
|
|
22
24
|
expiresAt: Date;
|
|
23
25
|
respondedAt?: Date;
|
|
24
26
|
token: string;
|
|
27
|
+
talentId: string;
|
|
25
28
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -958,11 +958,14 @@ declare class InterviewInvite extends BaseEntity {
|
|
|
958
958
|
job: Job;
|
|
959
959
|
fullName: string;
|
|
960
960
|
email: string;
|
|
961
|
+
mobileCode: string;
|
|
962
|
+
mobile: string;
|
|
961
963
|
status: InterviewInviteStatusEnum;
|
|
962
964
|
sentAt: Date;
|
|
963
965
|
expiresAt: Date;
|
|
964
966
|
respondedAt?: Date;
|
|
965
967
|
token: string;
|
|
968
|
+
talentId: string;
|
|
966
969
|
}
|
|
967
970
|
|
|
968
971
|
declare enum AiInterviewStatusEnum {
|
package/dist/index.d.ts
CHANGED
|
@@ -958,11 +958,14 @@ declare class InterviewInvite extends BaseEntity {
|
|
|
958
958
|
job: Job;
|
|
959
959
|
fullName: string;
|
|
960
960
|
email: string;
|
|
961
|
+
mobileCode: string;
|
|
962
|
+
mobile: string;
|
|
961
963
|
status: InterviewInviteStatusEnum;
|
|
962
964
|
sentAt: Date;
|
|
963
965
|
expiresAt: Date;
|
|
964
966
|
respondedAt?: Date;
|
|
965
967
|
token: string;
|
|
968
|
+
talentId: string;
|
|
966
969
|
}
|
|
967
970
|
|
|
968
971
|
declare enum AiInterviewStatusEnum {
|
package/dist/index.js
CHANGED
|
@@ -2771,6 +2771,13 @@ __decorateClass([
|
|
|
2771
2771
|
}),
|
|
2772
2772
|
(0, import_typeorm14.Index)()
|
|
2773
2773
|
], InterviewInvite.prototype, "email", 2);
|
|
2774
|
+
__decorateClass([
|
|
2775
|
+
(0, import_typeorm14.Column)({ name: "mobile_code", type: "varchar", nullable: true })
|
|
2776
|
+
], InterviewInvite.prototype, "mobileCode", 2);
|
|
2777
|
+
__decorateClass([
|
|
2778
|
+
(0, import_typeorm14.Column)({ name: "mobile", type: "varchar", comment: "Candidate's mobile number (must be unique per invite)", nullable: true }),
|
|
2779
|
+
(0, import_typeorm14.Index)()
|
|
2780
|
+
], InterviewInvite.prototype, "mobile", 2);
|
|
2774
2781
|
__decorateClass([
|
|
2775
2782
|
(0, import_typeorm14.Column)({
|
|
2776
2783
|
name: "status",
|
|
@@ -2814,6 +2821,14 @@ __decorateClass([
|
|
|
2814
2821
|
}),
|
|
2815
2822
|
(0, import_typeorm14.Index)()
|
|
2816
2823
|
], InterviewInvite.prototype, "token", 2);
|
|
2824
|
+
__decorateClass([
|
|
2825
|
+
(0, import_typeorm14.Column)({
|
|
2826
|
+
name: "talent_id",
|
|
2827
|
+
type: "varchar",
|
|
2828
|
+
nullable: true
|
|
2829
|
+
}),
|
|
2830
|
+
(0, import_typeorm14.Index)()
|
|
2831
|
+
], InterviewInvite.prototype, "talentId", 2);
|
|
2817
2832
|
InterviewInvite = __decorateClass([
|
|
2818
2833
|
(0, import_typeorm14.Entity)("interview_invites")
|
|
2819
2834
|
], InterviewInvite);
|
package/dist/index.mjs
CHANGED
|
@@ -2653,6 +2653,13 @@ __decorateClass([
|
|
|
2653
2653
|
}),
|
|
2654
2654
|
Index9()
|
|
2655
2655
|
], InterviewInvite.prototype, "email", 2);
|
|
2656
|
+
__decorateClass([
|
|
2657
|
+
Column14({ name: "mobile_code", type: "varchar", nullable: true })
|
|
2658
|
+
], InterviewInvite.prototype, "mobileCode", 2);
|
|
2659
|
+
__decorateClass([
|
|
2660
|
+
Column14({ name: "mobile", type: "varchar", comment: "Candidate's mobile number (must be unique per invite)", nullable: true }),
|
|
2661
|
+
Index9()
|
|
2662
|
+
], InterviewInvite.prototype, "mobile", 2);
|
|
2656
2663
|
__decorateClass([
|
|
2657
2664
|
Column14({
|
|
2658
2665
|
name: "status",
|
|
@@ -2696,6 +2703,14 @@ __decorateClass([
|
|
|
2696
2703
|
}),
|
|
2697
2704
|
Index9()
|
|
2698
2705
|
], InterviewInvite.prototype, "token", 2);
|
|
2706
|
+
__decorateClass([
|
|
2707
|
+
Column14({
|
|
2708
|
+
name: "talent_id",
|
|
2709
|
+
type: "varchar",
|
|
2710
|
+
nullable: true
|
|
2711
|
+
}),
|
|
2712
|
+
Index9()
|
|
2713
|
+
], InterviewInvite.prototype, "talentId", 2);
|
|
2699
2714
|
InterviewInvite = __decorateClass([
|
|
2700
2715
|
Entity13("interview_invites")
|
|
2701
2716
|
], InterviewInvite);
|