@experts_hub/shared 1.0.388 → 1.0.390
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/job.entity.d.ts +2 -0
- package/dist/entities/timesheets.entity.d.ts +4 -0
- package/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +18 -0
- package/dist/index.mjs +18 -0
- package/package.json +1 -1
|
@@ -70,6 +70,8 @@ export declare class Job extends BaseEntity {
|
|
|
70
70
|
status: JobStatusEnum;
|
|
71
71
|
viewedCount: number;
|
|
72
72
|
applicationCount: number;
|
|
73
|
+
isContractSigned: boolean;
|
|
74
|
+
isInterviewCreated: boolean;
|
|
73
75
|
jobSkills: JobSkill[];
|
|
74
76
|
jobApplications: JobApplication[];
|
|
75
77
|
interviews: Interview[];
|
|
@@ -26,6 +26,10 @@ export declare class Timesheet extends BaseEntity {
|
|
|
26
26
|
description: string;
|
|
27
27
|
weekStartDate: Date;
|
|
28
28
|
weekEndDate: Date;
|
|
29
|
+
rejectedAt: Date;
|
|
30
|
+
submittedAt: Date;
|
|
31
|
+
resubmittedAt: Date;
|
|
32
|
+
approvedAt: Date;
|
|
29
33
|
status: TimesheetStatusEnum;
|
|
30
34
|
clientSendBackReason: string;
|
|
31
35
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1098,6 +1098,10 @@ declare class Timesheet extends BaseEntity {
|
|
|
1098
1098
|
description: string;
|
|
1099
1099
|
weekStartDate: Date;
|
|
1100
1100
|
weekEndDate: Date;
|
|
1101
|
+
rejectedAt: Date;
|
|
1102
|
+
submittedAt: Date;
|
|
1103
|
+
resubmittedAt: Date;
|
|
1104
|
+
approvedAt: Date;
|
|
1101
1105
|
status: TimesheetStatusEnum;
|
|
1102
1106
|
clientSendBackReason: string;
|
|
1103
1107
|
}
|
|
@@ -1163,6 +1167,8 @@ declare class Job extends BaseEntity {
|
|
|
1163
1167
|
status: JobStatusEnum;
|
|
1164
1168
|
viewedCount: number;
|
|
1165
1169
|
applicationCount: number;
|
|
1170
|
+
isContractSigned: boolean;
|
|
1171
|
+
isInterviewCreated: boolean;
|
|
1166
1172
|
jobSkills: JobSkill[];
|
|
1167
1173
|
jobApplications: JobApplication[];
|
|
1168
1174
|
interviews: Interview[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1098,6 +1098,10 @@ declare class Timesheet extends BaseEntity {
|
|
|
1098
1098
|
description: string;
|
|
1099
1099
|
weekStartDate: Date;
|
|
1100
1100
|
weekEndDate: Date;
|
|
1101
|
+
rejectedAt: Date;
|
|
1102
|
+
submittedAt: Date;
|
|
1103
|
+
resubmittedAt: Date;
|
|
1104
|
+
approvedAt: Date;
|
|
1101
1105
|
status: TimesheetStatusEnum;
|
|
1102
1106
|
clientSendBackReason: string;
|
|
1103
1107
|
}
|
|
@@ -1163,6 +1167,8 @@ declare class Job extends BaseEntity {
|
|
|
1163
1167
|
status: JobStatusEnum;
|
|
1164
1168
|
viewedCount: number;
|
|
1165
1169
|
applicationCount: number;
|
|
1170
|
+
isContractSigned: boolean;
|
|
1171
|
+
isInterviewCreated: boolean;
|
|
1166
1172
|
jobSkills: JobSkill[];
|
|
1167
1173
|
jobApplications: JobApplication[];
|
|
1168
1174
|
interviews: Interview[];
|
package/dist/index.js
CHANGED
|
@@ -3171,6 +3171,18 @@ __decorateClass([
|
|
|
3171
3171
|
__decorateClass([
|
|
3172
3172
|
(0, import_typeorm22.Column)({ name: "week_end_date", type: "date", nullable: true })
|
|
3173
3173
|
], Timesheet.prototype, "weekEndDate", 2);
|
|
3174
|
+
__decorateClass([
|
|
3175
|
+
(0, import_typeorm22.Column)({ name: "rejected_at", type: "timestamp with time zone", nullable: true })
|
|
3176
|
+
], Timesheet.prototype, "rejectedAt", 2);
|
|
3177
|
+
__decorateClass([
|
|
3178
|
+
(0, import_typeorm22.Column)({ name: "submitted_at", type: "timestamp with time zone", nullable: true })
|
|
3179
|
+
], Timesheet.prototype, "submittedAt", 2);
|
|
3180
|
+
__decorateClass([
|
|
3181
|
+
(0, import_typeorm22.Column)({ name: "resubmiited_at", type: "timestamp with time zone", nullable: true })
|
|
3182
|
+
], Timesheet.prototype, "resubmittedAt", 2);
|
|
3183
|
+
__decorateClass([
|
|
3184
|
+
(0, import_typeorm22.Column)({ name: "approved_at", type: "timestamp with time zone", nullable: true })
|
|
3185
|
+
], Timesheet.prototype, "approvedAt", 2);
|
|
3174
3186
|
__decorateClass([
|
|
3175
3187
|
(0, import_typeorm22.Column)({ name: "status", type: "enum", enum: TimesheetStatusEnum, nullable: true })
|
|
3176
3188
|
], Timesheet.prototype, "status", 2);
|
|
@@ -3365,6 +3377,12 @@ __decorateClass([
|
|
|
3365
3377
|
__decorateClass([
|
|
3366
3378
|
(0, import_typeorm23.Column)({ name: "application_count", type: "integer", default: 0 })
|
|
3367
3379
|
], Job.prototype, "applicationCount", 2);
|
|
3380
|
+
__decorateClass([
|
|
3381
|
+
(0, import_typeorm23.Column)({ name: "is_contract_signed", type: "boolean", default: false })
|
|
3382
|
+
], Job.prototype, "isContractSigned", 2);
|
|
3383
|
+
__decorateClass([
|
|
3384
|
+
(0, import_typeorm23.Column)({ name: "is_interview_created", type: "boolean", default: false })
|
|
3385
|
+
], Job.prototype, "isInterviewCreated", 2);
|
|
3368
3386
|
__decorateClass([
|
|
3369
3387
|
(0, import_typeorm23.OneToMany)(() => JobSkill, (jobSkill) => jobSkill.job, { cascade: true })
|
|
3370
3388
|
], Job.prototype, "jobSkills", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -3105,6 +3105,18 @@ __decorateClass([
|
|
|
3105
3105
|
__decorateClass([
|
|
3106
3106
|
Column22({ name: "week_end_date", type: "date", nullable: true })
|
|
3107
3107
|
], Timesheet.prototype, "weekEndDate", 2);
|
|
3108
|
+
__decorateClass([
|
|
3109
|
+
Column22({ name: "rejected_at", type: "timestamp with time zone", nullable: true })
|
|
3110
|
+
], Timesheet.prototype, "rejectedAt", 2);
|
|
3111
|
+
__decorateClass([
|
|
3112
|
+
Column22({ name: "submitted_at", type: "timestamp with time zone", nullable: true })
|
|
3113
|
+
], Timesheet.prototype, "submittedAt", 2);
|
|
3114
|
+
__decorateClass([
|
|
3115
|
+
Column22({ name: "resubmiited_at", type: "timestamp with time zone", nullable: true })
|
|
3116
|
+
], Timesheet.prototype, "resubmittedAt", 2);
|
|
3117
|
+
__decorateClass([
|
|
3118
|
+
Column22({ name: "approved_at", type: "timestamp with time zone", nullable: true })
|
|
3119
|
+
], Timesheet.prototype, "approvedAt", 2);
|
|
3108
3120
|
__decorateClass([
|
|
3109
3121
|
Column22({ name: "status", type: "enum", enum: TimesheetStatusEnum, nullable: true })
|
|
3110
3122
|
], Timesheet.prototype, "status", 2);
|
|
@@ -3299,6 +3311,12 @@ __decorateClass([
|
|
|
3299
3311
|
__decorateClass([
|
|
3300
3312
|
Column23({ name: "application_count", type: "integer", default: 0 })
|
|
3301
3313
|
], Job.prototype, "applicationCount", 2);
|
|
3314
|
+
__decorateClass([
|
|
3315
|
+
Column23({ name: "is_contract_signed", type: "boolean", default: false })
|
|
3316
|
+
], Job.prototype, "isContractSigned", 2);
|
|
3317
|
+
__decorateClass([
|
|
3318
|
+
Column23({ name: "is_interview_created", type: "boolean", default: false })
|
|
3319
|
+
], Job.prototype, "isInterviewCreated", 2);
|
|
3302
3320
|
__decorateClass([
|
|
3303
3321
|
OneToMany9(() => JobSkill, (jobSkill) => jobSkill.job, { cascade: true })
|
|
3304
3322
|
], Job.prototype, "jobSkills", 2);
|