@experts_hub/shared 1.0.289 → 1.0.290
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.
- package/dist/entities/state.entity.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +9 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1688,6 +1688,15 @@ __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
|
+
length: 2,
|
|
1696
|
+
nullable: true,
|
|
1697
|
+
comment: ""
|
|
1698
|
+
})
|
|
1699
|
+
], State.prototype, "stateCode", 2);
|
|
1691
1700
|
__decorateClass([
|
|
1692
1701
|
(0, import_typeorm6.Column)({
|
|
1693
1702
|
name: "is_active",
|
package/dist/index.mjs
CHANGED
|
@@ -1632,6 +1632,15 @@ __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
|
+
length: 2,
|
|
1640
|
+
nullable: true,
|
|
1641
|
+
comment: ""
|
|
1642
|
+
})
|
|
1643
|
+
], State.prototype, "stateCode", 2);
|
|
1635
1644
|
__decorateClass([
|
|
1636
1645
|
Column6({
|
|
1637
1646
|
name: "is_active",
|