@experts_hub/shared 1.0.332 → 1.0.333

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.
@@ -12,7 +12,7 @@ export declare enum F2fInterviewStatusEnum {
12
12
  EXITED = "EXITED"
13
13
  }
14
14
  export declare class F2FInterview extends BaseEntity {
15
- uniqueId: string;
15
+ interviewUniqueId: string;
16
16
  interviewId: number;
17
17
  interview: Interview;
18
18
  interviwerId: number;
package/dist/index.d.mts CHANGED
@@ -917,7 +917,7 @@ declare enum F2fInterviewStatusEnum {
917
917
  EXITED = "EXITED"
918
918
  }
919
919
  declare class F2FInterview extends BaseEntity {
920
- uniqueId: string;
920
+ interviewUniqueId: string;
921
921
  interviewId: number;
922
922
  interview: Interview;
923
923
  interviwerId: number;
package/dist/index.d.ts CHANGED
@@ -917,7 +917,7 @@ declare enum F2fInterviewStatusEnum {
917
917
  EXITED = "EXITED"
918
918
  }
919
919
  declare class F2FInterview extends BaseEntity {
920
- uniqueId: string;
920
+ interviewUniqueId: string;
921
921
  interviewId: number;
922
922
  interview: Interview;
923
923
  interviwerId: number;
package/dist/index.js CHANGED
@@ -2552,10 +2552,10 @@ __decorateClass([
2552
2552
  (0, import_typeorm16.Index)()
2553
2553
  ], CalendlyMeeting.prototype, "calendlyEventId", 2);
2554
2554
  __decorateClass([
2555
- (0, import_typeorm16.Column)({ name: "event_name", type: "varchar", nullable: false })
2555
+ (0, import_typeorm16.Column)({ name: "event_name", type: "varchar", nullable: true })
2556
2556
  ], CalendlyMeeting.prototype, "eventName", 2);
2557
2557
  __decorateClass([
2558
- (0, import_typeorm16.Column)({ name: "invitee_email", type: "varchar", nullable: false }),
2558
+ (0, import_typeorm16.Column)({ name: "invitee_email", type: "varchar", nullable: true }),
2559
2559
  (0, import_typeorm16.Index)()
2560
2560
  ], CalendlyMeeting.prototype, "inviteeEmail", 2);
2561
2561
  __decorateClass([
@@ -2588,8 +2588,8 @@ var F2fInterviewStatusEnum = /* @__PURE__ */ ((F2fInterviewStatusEnum2) => {
2588
2588
  var F2FInterview = class extends BaseEntity {
2589
2589
  };
2590
2590
  __decorateClass([
2591
- (0, import_typeorm17.Column)({ name: "unique_id", type: "varchar", nullable: true, unique: true })
2592
- ], F2FInterview.prototype, "uniqueId", 2);
2591
+ (0, import_typeorm17.Column)({ name: "interview_unique_id", type: "varchar", nullable: true, unique: true })
2592
+ ], F2FInterview.prototype, "interviewUniqueId", 2);
2593
2593
  __decorateClass([
2594
2594
  (0, import_typeorm17.Column)({ name: "interview_id", type: "integer", nullable: true })
2595
2595
  ], F2FInterview.prototype, "interviewId", 2);
@@ -2612,7 +2612,7 @@ __decorateClass([
2612
2612
  (0, import_typeorm17.JoinColumn)({ name: "candidate_id" })
2613
2613
  ], F2FInterview.prototype, "candidate", 2);
2614
2614
  __decorateClass([
2615
- (0, import_typeorm17.Column)({ name: "invitee_email", type: "varchar", nullable: false })
2615
+ (0, import_typeorm17.Column)({ name: "invitee_email", type: "varchar", nullable: true })
2616
2616
  ], F2FInterview.prototype, "inviteeEmail", 2);
2617
2617
  __decorateClass([
2618
2618
  (0, import_typeorm17.Column)({ name: "invitee_name", type: "varchar", nullable: true })
@@ -2630,7 +2630,7 @@ __decorateClass([
2630
2630
  (0, import_typeorm17.Column)({ name: "reschedule_url", type: "varchar", nullable: true })
2631
2631
  ], F2FInterview.prototype, "rescheduleUrl", 2);
2632
2632
  __decorateClass([
2633
- (0, import_typeorm17.Column)({ name: "event_name", type: "varchar", nullable: false })
2633
+ (0, import_typeorm17.Column)({ name: "event_name", type: "varchar", nullable: true })
2634
2634
  ], F2FInterview.prototype, "eventName", 2);
2635
2635
  __decorateClass([
2636
2636
  (0, import_typeorm17.Column)({ name: "is_rescheduled", type: "boolean", default: false })
@@ -2662,7 +2662,7 @@ __decorateClass([
2662
2662
  (0, import_typeorm17.Column)({ name: "meeting_end_time", type: "timestamp with time zone", nullable: true })
2663
2663
  ], F2FInterview.prototype, "meetingEndTime", 2);
2664
2664
  __decorateClass([
2665
- (0, import_typeorm17.Column)({ name: "calendly_meeting_id", type: "integer" })
2665
+ (0, import_typeorm17.Column)({ name: "calendly_meeting_id", type: "integer", nullable: true })
2666
2666
  ], F2FInterview.prototype, "calendlyMeetingId", 2);
2667
2667
  __decorateClass([
2668
2668
  (0, import_typeorm17.OneToOne)(() => CalendlyMeeting),
package/dist/index.mjs CHANGED
@@ -2513,10 +2513,10 @@ __decorateClass([
2513
2513
  Index11()
2514
2514
  ], CalendlyMeeting.prototype, "calendlyEventId", 2);
2515
2515
  __decorateClass([
2516
- Column16({ name: "event_name", type: "varchar", nullable: false })
2516
+ Column16({ name: "event_name", type: "varchar", nullable: true })
2517
2517
  ], CalendlyMeeting.prototype, "eventName", 2);
2518
2518
  __decorateClass([
2519
- Column16({ name: "invitee_email", type: "varchar", nullable: false }),
2519
+ Column16({ name: "invitee_email", type: "varchar", nullable: true }),
2520
2520
  Index11()
2521
2521
  ], CalendlyMeeting.prototype, "inviteeEmail", 2);
2522
2522
  __decorateClass([
@@ -2549,8 +2549,8 @@ var F2fInterviewStatusEnum = /* @__PURE__ */ ((F2fInterviewStatusEnum2) => {
2549
2549
  var F2FInterview = class extends BaseEntity {
2550
2550
  };
2551
2551
  __decorateClass([
2552
- Column17({ name: "unique_id", type: "varchar", nullable: true, unique: true })
2553
- ], F2FInterview.prototype, "uniqueId", 2);
2552
+ Column17({ name: "interview_unique_id", type: "varchar", nullable: true, unique: true })
2553
+ ], F2FInterview.prototype, "interviewUniqueId", 2);
2554
2554
  __decorateClass([
2555
2555
  Column17({ name: "interview_id", type: "integer", nullable: true })
2556
2556
  ], F2FInterview.prototype, "interviewId", 2);
@@ -2573,7 +2573,7 @@ __decorateClass([
2573
2573
  JoinColumn14({ name: "candidate_id" })
2574
2574
  ], F2FInterview.prototype, "candidate", 2);
2575
2575
  __decorateClass([
2576
- Column17({ name: "invitee_email", type: "varchar", nullable: false })
2576
+ Column17({ name: "invitee_email", type: "varchar", nullable: true })
2577
2577
  ], F2FInterview.prototype, "inviteeEmail", 2);
2578
2578
  __decorateClass([
2579
2579
  Column17({ name: "invitee_name", type: "varchar", nullable: true })
@@ -2591,7 +2591,7 @@ __decorateClass([
2591
2591
  Column17({ name: "reschedule_url", type: "varchar", nullable: true })
2592
2592
  ], F2FInterview.prototype, "rescheduleUrl", 2);
2593
2593
  __decorateClass([
2594
- Column17({ name: "event_name", type: "varchar", nullable: false })
2594
+ Column17({ name: "event_name", type: "varchar", nullable: true })
2595
2595
  ], F2FInterview.prototype, "eventName", 2);
2596
2596
  __decorateClass([
2597
2597
  Column17({ name: "is_rescheduled", type: "boolean", default: false })
@@ -2623,7 +2623,7 @@ __decorateClass([
2623
2623
  Column17({ name: "meeting_end_time", type: "timestamp with time zone", nullable: true })
2624
2624
  ], F2FInterview.prototype, "meetingEndTime", 2);
2625
2625
  __decorateClass([
2626
- Column17({ name: "calendly_meeting_id", type: "integer" })
2626
+ Column17({ name: "calendly_meeting_id", type: "integer", nullable: true })
2627
2627
  ], F2FInterview.prototype, "calendlyMeetingId", 2);
2628
2628
  __decorateClass([
2629
2629
  OneToOne2(() => CalendlyMeeting),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.332",
3
+ "version": "1.0.333",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",