@experts_hub/shared 1.0.443 → 1.0.444

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.
@@ -22,4 +22,5 @@ export declare class Dispute extends BaseEntity {
22
22
  respondentId: number;
23
23
  respondent: User;
24
24
  attachments: any[];
25
+ dynamicFields: Record<string, any>;
25
26
  }
package/dist/index.d.mts CHANGED
@@ -1673,6 +1673,7 @@ declare class Dispute extends BaseEntity {
1673
1673
  respondentId: number;
1674
1674
  respondent: User;
1675
1675
  attachments: any[];
1676
+ dynamicFields: Record<string, any>;
1676
1677
  }
1677
1678
 
1678
1679
  declare enum AccountType {
package/dist/index.d.ts CHANGED
@@ -1673,6 +1673,7 @@ declare class Dispute extends BaseEntity {
1673
1673
  respondentId: number;
1674
1674
  respondent: User;
1675
1675
  attachments: any[];
1676
+ dynamicFields: Record<string, any>;
1676
1677
  }
1677
1678
 
1678
1679
  declare enum AccountType {
package/dist/index.js CHANGED
@@ -4948,6 +4948,9 @@ __decorateClass([
4948
4948
  __decorateClass([
4949
4949
  (0, import_typeorm56.Column)({ name: "attachments", type: "jsonb", nullable: true })
4950
4950
  ], Dispute.prototype, "attachments", 2);
4951
+ __decorateClass([
4952
+ (0, import_typeorm56.Column)({ name: "dynamic_fields", type: "jsonb", nullable: true })
4953
+ ], Dispute.prototype, "dynamicFields", 2);
4951
4954
  Dispute = __decorateClass([
4952
4955
  (0, import_typeorm56.Entity)("disputes")
4953
4956
  ], Dispute);
package/dist/index.mjs CHANGED
@@ -4978,6 +4978,9 @@ __decorateClass([
4978
4978
  __decorateClass([
4979
4979
  Column56({ name: "attachments", type: "jsonb", nullable: true })
4980
4980
  ], Dispute.prototype, "attachments", 2);
4981
+ __decorateClass([
4982
+ Column56({ name: "dynamic_fields", type: "jsonb", nullable: true })
4983
+ ], Dispute.prototype, "dynamicFields", 2);
4981
4984
  Dispute = __decorateClass([
4982
4985
  Entity55("disputes")
4983
4986
  ], Dispute);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.443",
3
+ "version": "1.0.444",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",