@experts_hub/shared 1.0.712 → 1.0.713
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 +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
|
@@ -114,6 +114,7 @@ export declare class Job extends BaseEntity {
|
|
|
114
114
|
viewedCount: number;
|
|
115
115
|
applicationCount: number;
|
|
116
116
|
isContractSigned: boolean;
|
|
117
|
+
isJobCreatedAsIs: boolean;
|
|
117
118
|
isInterviewCreated: boolean;
|
|
118
119
|
isJobCreatedViaAI: boolean;
|
|
119
120
|
interviewInvites: InterviewInvite[];
|
package/dist/index.d.mts
CHANGED
|
@@ -1502,6 +1502,7 @@ declare class Job extends BaseEntity {
|
|
|
1502
1502
|
viewedCount: number;
|
|
1503
1503
|
applicationCount: number;
|
|
1504
1504
|
isContractSigned: boolean;
|
|
1505
|
+
isJobCreatedAsIs: boolean;
|
|
1505
1506
|
isInterviewCreated: boolean;
|
|
1506
1507
|
isJobCreatedViaAI: boolean;
|
|
1507
1508
|
interviewInvites: InterviewInvite[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1502,6 +1502,7 @@ declare class Job extends BaseEntity {
|
|
|
1502
1502
|
viewedCount: number;
|
|
1503
1503
|
applicationCount: number;
|
|
1504
1504
|
isContractSigned: boolean;
|
|
1505
|
+
isJobCreatedAsIs: boolean;
|
|
1505
1506
|
isInterviewCreated: boolean;
|
|
1506
1507
|
isJobCreatedViaAI: boolean;
|
|
1507
1508
|
interviewInvites: InterviewInvite[];
|
package/dist/index.js
CHANGED
|
@@ -5222,6 +5222,9 @@ __decorateClass([
|
|
|
5222
5222
|
__decorateClass([
|
|
5223
5223
|
(0, import_typeorm43.Column)({ name: "is_contract_signed", type: "boolean", default: false })
|
|
5224
5224
|
], Job.prototype, "isContractSigned", 2);
|
|
5225
|
+
__decorateClass([
|
|
5226
|
+
(0, import_typeorm43.Column)({ name: "is_job_created_as_is", type: "boolean", default: false })
|
|
5227
|
+
], Job.prototype, "isJobCreatedAsIs", 2);
|
|
5225
5228
|
__decorateClass([
|
|
5226
5229
|
(0, import_typeorm43.Column)({ name: "is_interview_created", type: "boolean", default: false })
|
|
5227
5230
|
], Job.prototype, "isInterviewCreated", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -4915,6 +4915,9 @@ __decorateClass([
|
|
|
4915
4915
|
__decorateClass([
|
|
4916
4916
|
Column43({ name: "is_contract_signed", type: "boolean", default: false })
|
|
4917
4917
|
], Job.prototype, "isContractSigned", 2);
|
|
4918
|
+
__decorateClass([
|
|
4919
|
+
Column43({ name: "is_job_created_as_is", type: "boolean", default: false })
|
|
4920
|
+
], Job.prototype, "isJobCreatedAsIs", 2);
|
|
4918
4921
|
__decorateClass([
|
|
4919
4922
|
Column43({ name: "is_interview_created", type: "boolean", default: false })
|
|
4920
4923
|
], Job.prototype, "isInterviewCreated", 2);
|