@experts_hub/shared 1.0.118 → 1.0.119

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 { User } from "./user.entity";
3
3
  export declare class CompanyRole extends BaseEntity {
4
4
  userId: number;
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: {
@@ -466,7 +465,7 @@ declare class Rating extends BaseEntity {
466
465
  review: string;
467
466
  }
468
467
 
469
- declare class CompanyRole extends BaseEntity$1 {
468
+ declare class CompanyRole extends BaseEntity {
470
469
  userId: number;
471
470
  user: User;
472
471
  name: string;
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: {
@@ -466,7 +465,7 @@ declare class Rating extends BaseEntity {
466
465
  review: string;
467
466
  }
468
467
 
469
- declare class CompanyRole extends BaseEntity$1 {
468
+ declare class CompanyRole extends BaseEntity {
470
469
  userId: number;
471
470
  user: User;
472
471
  name: string;
package/dist/index.js CHANGED
@@ -1239,7 +1239,7 @@ Rating = __decorateClass([
1239
1239
 
1240
1240
  // src/entities/company-role.entity.ts
1241
1241
  var import_typeorm13 = require("typeorm");
1242
- var CompanyRole = class extends import_typeorm13.BaseEntity {
1242
+ var CompanyRole = class extends BaseEntity {
1243
1243
  };
1244
1244
  // individual index to find company roles by user
1245
1245
  __decorateClass([
package/dist/index.mjs CHANGED
@@ -1244,8 +1244,8 @@ Rating = __decorateClass([
1244
1244
  ], Rating);
1245
1245
 
1246
1246
  // src/entities/company-role.entity.ts
1247
- import { BaseEntity as BaseEntity2, Column as Column13, Entity as Entity12, Index as Index9, JoinColumn as JoinColumn11, ManyToOne as ManyToOne11 } from "typeorm";
1248
- var CompanyRole = class extends BaseEntity2 {
1247
+ import { Column as Column13, Entity as Entity12, Index as Index9, JoinColumn as JoinColumn11, ManyToOne as ManyToOne11 } from "typeorm";
1248
+ var CompanyRole = class extends BaseEntity {
1249
1249
  };
1250
1250
  // individual index to find company roles by user
1251
1251
  __decorateClass([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.118",
3
+ "version": "1.0.119",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",