@experts_hub/shared 1.0.289 → 1.0.291

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.
@@ -6,5 +6,6 @@ export declare class State extends BaseEntity {
6
6
  country: Country;
7
7
  cities: City[];
8
8
  stateName: string;
9
+ stateCode: string;
9
10
  isActive: boolean;
10
11
  }
package/dist/index.d.mts CHANGED
@@ -655,6 +655,7 @@ declare class State extends BaseEntity {
655
655
  country: Country;
656
656
  cities: City[];
657
657
  stateName: string;
658
+ stateCode: string;
658
659
  isActive: boolean;
659
660
  }
660
661
 
package/dist/index.d.ts CHANGED
@@ -655,6 +655,7 @@ declare class State extends BaseEntity {
655
655
  country: Country;
656
656
  cities: City[];
657
657
  stateName: string;
658
+ stateCode: string;
658
659
  isActive: boolean;
659
660
  }
660
661
 
package/dist/index.js CHANGED
@@ -1688,6 +1688,14 @@ __decorateClass([
1688
1688
  comment: "Name of the state"
1689
1689
  })
1690
1690
  ], State.prototype, "stateName", 2);
1691
+ __decorateClass([
1692
+ (0, import_typeorm6.Column)({
1693
+ name: "state_code",
1694
+ type: "varchar",
1695
+ nullable: true,
1696
+ comment: ""
1697
+ })
1698
+ ], State.prototype, "stateCode", 2);
1691
1699
  __decorateClass([
1692
1700
  (0, import_typeorm6.Column)({
1693
1701
  name: "is_active",
package/dist/index.mjs CHANGED
@@ -1632,6 +1632,14 @@ __decorateClass([
1632
1632
  comment: "Name of the state"
1633
1633
  })
1634
1634
  ], State.prototype, "stateName", 2);
1635
+ __decorateClass([
1636
+ Column6({
1637
+ name: "state_code",
1638
+ type: "varchar",
1639
+ nullable: true,
1640
+ comment: ""
1641
+ })
1642
+ ], State.prototype, "stateCode", 2);
1635
1643
  __decorateClass([
1636
1644
  Column6({
1637
1645
  name: "is_active",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.289",
3
+ "version": "1.0.291",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",