@experts_hub/shared 1.0.363 → 1.0.364

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.
@@ -1,4 +1,4 @@
1
- import { BaseEntity } from "typeorm";
1
+ import { BaseEntity } from "./base.entity";
2
2
  import { Job } from "./job.entity";
3
3
  import { User } from "./user.entity";
4
4
  export declare enum ContractStatusEnum {
package/dist/index.d.mts CHANGED
@@ -1,4 +1,3 @@
1
- import { BaseEntity as BaseEntity$1 } from 'typeorm';
2
1
  import { MicroserviceOptions } from '@nestjs/microservices';
3
2
 
4
3
  declare const AUTHENTICATION_PATTERN: {
@@ -1043,7 +1042,7 @@ declare enum ContractTypeEnum {
1043
1042
  NDA = "NDA",
1044
1043
  WORK = "WORK"
1045
1044
  }
1046
- declare class Contract extends BaseEntity$1 {
1045
+ declare class Contract extends BaseEntity {
1047
1046
  contractUniqueId: string;
1048
1047
  jobId: number;
1049
1048
  job: Job;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { BaseEntity as BaseEntity$1 } from 'typeorm';
2
1
  import { MicroserviceOptions } from '@nestjs/microservices';
3
2
 
4
3
  declare const AUTHENTICATION_PATTERN: {
@@ -1043,7 +1042,7 @@ declare enum ContractTypeEnum {
1043
1042
  NDA = "NDA",
1044
1043
  WORK = "WORK"
1045
1044
  }
1046
- declare class Contract extends BaseEntity$1 {
1045
+ declare class Contract extends BaseEntity {
1047
1046
  contractUniqueId: string;
1048
1047
  jobId: number;
1049
1048
  job: Job;
package/dist/index.js CHANGED
@@ -2955,7 +2955,7 @@ var ContractTypeEnum = /* @__PURE__ */ ((ContractTypeEnum2) => {
2955
2955
  ContractTypeEnum2["WORK"] = "WORK";
2956
2956
  return ContractTypeEnum2;
2957
2957
  })(ContractTypeEnum || {});
2958
- var Contract = class extends import_typeorm21.BaseEntity {
2958
+ var Contract = class extends BaseEntity {
2959
2959
  };
2960
2960
  __decorateClass([
2961
2961
  (0, import_typeorm21.Column)({ name: "contract_unique_id", type: "varchar", nullable: true, unique: true })
package/dist/index.mjs CHANGED
@@ -2895,7 +2895,7 @@ JobRecommendation = __decorateClass([
2895
2895
  ], JobRecommendation);
2896
2896
 
2897
2897
  // src/entities/contract.entity.ts
2898
- import { Entity as Entity20, Column as Column21, Index as Index14, BaseEntity as BaseEntity2, ManyToOne as ManyToOne19, JoinColumn as JoinColumn19 } from "typeorm";
2898
+ import { Entity as Entity20, Column as Column21, Index as Index14, ManyToOne as ManyToOne19, JoinColumn as JoinColumn19 } from "typeorm";
2899
2899
  var ContractStatusEnum = /* @__PURE__ */ ((ContractStatusEnum2) => {
2900
2900
  ContractStatusEnum2["ACTIVE"] = "ACTIVE";
2901
2901
  ContractStatusEnum2["SENT"] = "SENT";
@@ -2909,7 +2909,7 @@ var ContractTypeEnum = /* @__PURE__ */ ((ContractTypeEnum2) => {
2909
2909
  ContractTypeEnum2["WORK"] = "WORK";
2910
2910
  return ContractTypeEnum2;
2911
2911
  })(ContractTypeEnum || {});
2912
- var Contract = class extends BaseEntity2 {
2912
+ var Contract = class extends BaseEntity {
2913
2913
  };
2914
2914
  __decorateClass([
2915
2915
  Column21({ name: "contract_unique_id", type: "varchar", nullable: true, unique: true })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.363",
3
+ "version": "1.0.364",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",