@experts_hub/shared 1.0.438 → 1.0.439
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 +4 -3
- package/dist/index.mjs +4 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4906,7 +4906,8 @@ __decorateClass([
|
|
|
4906
4906
|
(0, import_typeorm56.Column)({ name: "dispute_unique_id", type: "varchar", unique: true })
|
|
4907
4907
|
], Dispute.prototype, "disputeUniqueId", 2);
|
|
4908
4908
|
__decorateClass([
|
|
4909
|
-
(0, import_typeorm56.Column)({ name: "dispute_type", type: "varchar", nullable: true })
|
|
4909
|
+
(0, import_typeorm56.Column)({ name: "dispute_type", type: "varchar", nullable: true }),
|
|
4910
|
+
(0, import_typeorm56.Index)()
|
|
4910
4911
|
], Dispute.prototype, "disputeType", 2);
|
|
4911
4912
|
__decorateClass([
|
|
4912
4913
|
(0, import_typeorm56.Column)({ name: "description", type: "varchar", nullable: true })
|
|
@@ -4931,11 +4932,11 @@ __decorateClass([
|
|
|
4931
4932
|
(0, import_typeorm56.JoinColumn)({ name: "initiator_id" })
|
|
4932
4933
|
], Dispute.prototype, "initiator", 2);
|
|
4933
4934
|
__decorateClass([
|
|
4934
|
-
(0, import_typeorm56.Column)({ name: "respondent_id", type: "integer" }),
|
|
4935
|
+
(0, import_typeorm56.Column)({ name: "respondent_id", type: "integer", nullable: true }),
|
|
4935
4936
|
(0, import_typeorm56.Index)()
|
|
4936
4937
|
], Dispute.prototype, "respondentId", 2);
|
|
4937
4938
|
__decorateClass([
|
|
4938
|
-
(0, import_typeorm56.ManyToOne)(() => User, (user) => user.respondentDisputes),
|
|
4939
|
+
(0, import_typeorm56.ManyToOne)(() => User, (user) => user.respondentDisputes, { nullable: true }),
|
|
4939
4940
|
(0, import_typeorm56.JoinColumn)({ name: "respondent_id" })
|
|
4940
4941
|
], Dispute.prototype, "respondent", 2);
|
|
4941
4942
|
__decorateClass([
|
package/dist/index.mjs
CHANGED
|
@@ -4939,7 +4939,8 @@ __decorateClass([
|
|
|
4939
4939
|
Column56({ name: "dispute_unique_id", type: "varchar", unique: true })
|
|
4940
4940
|
], Dispute.prototype, "disputeUniqueId", 2);
|
|
4941
4941
|
__decorateClass([
|
|
4942
|
-
Column56({ name: "dispute_type", type: "varchar", nullable: true })
|
|
4942
|
+
Column56({ name: "dispute_type", type: "varchar", nullable: true }),
|
|
4943
|
+
Index48()
|
|
4943
4944
|
], Dispute.prototype, "disputeType", 2);
|
|
4944
4945
|
__decorateClass([
|
|
4945
4946
|
Column56({ name: "description", type: "varchar", nullable: true })
|
|
@@ -4964,11 +4965,11 @@ __decorateClass([
|
|
|
4964
4965
|
JoinColumn50({ name: "initiator_id" })
|
|
4965
4966
|
], Dispute.prototype, "initiator", 2);
|
|
4966
4967
|
__decorateClass([
|
|
4967
|
-
Column56({ name: "respondent_id", type: "integer" }),
|
|
4968
|
+
Column56({ name: "respondent_id", type: "integer", nullable: true }),
|
|
4968
4969
|
Index48()
|
|
4969
4970
|
], Dispute.prototype, "respondentId", 2);
|
|
4970
4971
|
__decorateClass([
|
|
4971
|
-
ManyToOne49(() => User, (user) => user.respondentDisputes),
|
|
4972
|
+
ManyToOne49(() => User, (user) => user.respondentDisputes, { nullable: true }),
|
|
4972
4973
|
JoinColumn50({ name: "respondent_id" })
|
|
4973
4974
|
], Dispute.prototype, "respondent", 2);
|
|
4974
4975
|
__decorateClass([
|