@natrave/shared-entities 1.2.17 → 1.2.18

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.
@@ -152,11 +152,11 @@ __decorateClass([
152
152
  OneToMany(() => TournamentGroup, (team) => team.tournament)
153
153
  ], Tournament.prototype, "groups", 2);
154
154
  __decorateClass([
155
- OneToOne(() => TournamentRule, (rule) => rule.tournament, { cascade: true }),
155
+ OneToOne(() => TournamentRule, (rule) => rule.tournament),
156
156
  JoinColumn({ name: "rule_id" })
157
157
  ], Tournament.prototype, "rule", 2);
158
158
  __decorateClass([
159
- OneToOne(() => TournamentFormatConfig, (format) => format.tournament, { cascade: true }),
159
+ OneToOne(() => TournamentFormatConfig, (format) => format.tournament),
160
160
  JoinColumn({ name: "format_config_id" })
161
161
  ], Tournament.prototype, "format", 2);
162
162
  __decorateClass([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natrave/shared-entities",
3
- "version": "1.2.17",
3
+ "version": "1.2.18",
4
4
  "description": "Entidades compartilhadass da NaTrave",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.js",