@experts_hub/shared 1.0.687 → 1.0.688

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/index.js CHANGED
@@ -14329,7 +14329,7 @@ __decorateClass([
14329
14329
  (0, import_typeorm93.Column)({ name: "original_price", type: "decimal", precision: 10, scale: 2, nullable: true })
14330
14330
  ], PlanPricing.prototype, "originalPrice", 2);
14331
14331
  __decorateClass([
14332
- (0, import_typeorm93.Column)({ name: "discount_pct", type: "smallint", nullable: true })
14332
+ (0, import_typeorm93.Column)({ name: "discount_pct", type: "decimal", precision: 5, scale: 2, nullable: true })
14333
14333
  ], PlanPricing.prototype, "discountPct", 2);
14334
14334
  __decorateClass([
14335
14335
  (0, import_typeorm93.Column)({ name: "currency", type: "varchar", length: 3, default: "USD" })
package/dist/index.mjs CHANGED
@@ -14512,7 +14512,7 @@ __decorateClass([
14512
14512
  Column90({ name: "original_price", type: "decimal", precision: 10, scale: 2, nullable: true })
14513
14513
  ], PlanPricing.prototype, "originalPrice", 2);
14514
14514
  __decorateClass([
14515
- Column90({ name: "discount_pct", type: "smallint", nullable: true })
14515
+ Column90({ name: "discount_pct", type: "decimal", precision: 5, scale: 2, nullable: true })
14516
14516
  ], PlanPricing.prototype, "discountPct", 2);
14517
14517
  __decorateClass([
14518
14518
  Column90({ name: "currency", type: "varchar", length: 3, default: "USD" })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.687",
3
+ "version": "1.0.688",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",