@experts_hub/shared 1.0.397 → 1.0.398

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.
@@ -22,4 +22,5 @@ export declare class AiInterview extends BaseEntity {
22
22
  inviteId: number;
23
23
  status: AiInterviewStatusEnum;
24
24
  isF2fInterviewScheduled: boolean;
25
+ isContractSent: boolean;
25
26
  }
package/dist/index.d.mts CHANGED
@@ -916,6 +916,7 @@ declare class AiInterview extends BaseEntity {
916
916
  inviteId: number;
917
917
  status: AiInterviewStatusEnum;
918
918
  isF2fInterviewScheduled: boolean;
919
+ isContractSent: boolean;
919
920
  }
920
921
 
921
922
  declare enum F2fInterviewRescheduleRequestStatusEnum {
package/dist/index.d.ts CHANGED
@@ -916,6 +916,7 @@ declare class AiInterview extends BaseEntity {
916
916
  inviteId: number;
917
917
  status: AiInterviewStatusEnum;
918
918
  isF2fInterviewScheduled: boolean;
919
+ isContractSent: boolean;
919
920
  }
920
921
 
921
922
  declare enum F2fInterviewRescheduleRequestStatusEnum {
package/dist/index.js CHANGED
@@ -2608,6 +2608,9 @@ __decorateClass([
2608
2608
  __decorateClass([
2609
2609
  (0, import_typeorm15.Column)({ name: "is_f2f_interview_scheduled", type: "boolean", default: false })
2610
2610
  ], AiInterview.prototype, "isF2fInterviewScheduled", 2);
2611
+ __decorateClass([
2612
+ (0, import_typeorm15.Column)({ name: "is_contract_sent", type: "boolean", default: false })
2613
+ ], AiInterview.prototype, "isContractSent", 2);
2611
2614
  AiInterview = __decorateClass([
2612
2615
  (0, import_typeorm15.Entity)("ai_interviews")
2613
2616
  ], AiInterview);
package/dist/index.mjs CHANGED
@@ -2511,6 +2511,9 @@ __decorateClass([
2511
2511
  __decorateClass([
2512
2512
  Column15({ name: "is_f2f_interview_scheduled", type: "boolean", default: false })
2513
2513
  ], AiInterview.prototype, "isF2fInterviewScheduled", 2);
2514
+ __decorateClass([
2515
+ Column15({ name: "is_contract_sent", type: "boolean", default: false })
2516
+ ], AiInterview.prototype, "isContractSent", 2);
2514
2517
  AiInterview = __decorateClass([
2515
2518
  Entity14("ai_interviews")
2516
2519
  ], AiInterview);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.397",
3
+ "version": "1.0.398",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",