@natrave/shared-entities 1.2.11 → 1.2.13

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.
Files changed (57) hide show
  1. package/dist/app-auth/password-resets/password-reset.entity.d.ts.map +1 -1
  2. package/dist/app-auth/password-resets/password-reset.entity.js +27 -6
  3. package/dist/app-auth/refresh-tokens/refresh-token.entity.d.ts.map +1 -1
  4. package/dist/app-auth/refresh-tokens/refresh-token.entity.js +28 -6
  5. package/dist/app-auth/user-auth-providers/user-auth-provider.entity.d.ts.map +1 -1
  6. package/dist/app-auth/user-auth-providers/user-auth-provider.entity.js +34 -7
  7. package/dist/app-auth/user-verifications/user-verification.entity.d.ts.map +1 -1
  8. package/dist/app-auth/user-verifications/user-verification.entity.js +45 -9
  9. package/dist/app-auth/users/user.entity.d.ts.map +1 -1
  10. package/dist/app-auth/users/user.entity.js +66 -13
  11. package/dist/facilities/addresses/address.entity.d.ts.map +1 -1
  12. package/dist/facilities/addresses/address.entity.js +60 -13
  13. package/dist/facilities/facilities/facility.entity.d.ts.map +1 -1
  14. package/dist/facilities/facilities/facility.entity.js +52 -11
  15. package/dist/facilities/facility-images/facility-image.entity.d.ts.map +1 -1
  16. package/dist/facilities/facility-images/facility-image.entity.js +34 -7
  17. package/dist/facilities/facility-owners/facility-owner.entity.d.ts.map +1 -1
  18. package/dist/facilities/facility-owners/facility-owner.entity.js +38 -7
  19. package/dist/facilities/fields/field.entity.d.ts.map +1 -1
  20. package/dist/facilities/fields/field.entity.js +52 -10
  21. package/dist/payments/payment-providers/payment-provider.entity.d.ts.map +1 -1
  22. package/dist/payments/payment-providers/payment-provider.entity.js +12 -4
  23. package/dist/payments/payments/payment.entity.d.ts.map +1 -1
  24. package/dist/payments/payments/payment.entity.js +48 -11
  25. package/dist/payments/user-payment-providers/user-payment-provider.entity.d.ts.map +1 -1
  26. package/dist/payments/user-payment-providers/user-payment-provider.entity.js +28 -6
  27. package/dist/tournaments/index.d.ts +1 -0
  28. package/dist/tournaments/index.d.ts.map +1 -1
  29. package/dist/tournaments/index.js +1 -0
  30. package/dist/tournaments/tournament-facilities/tournament-facility.entity.d.ts.map +1 -1
  31. package/dist/tournaments/tournament-facilities/tournament-facility.entity.js +29 -6
  32. package/dist/tournaments/tournament-format-configs/tournament-format-config.entity.d.ts.map +1 -1
  33. package/dist/tournaments/tournament-format-configs/tournament-format-config.entity.js +47 -9
  34. package/dist/tournaments/tournament-groups/tournament-group.entity.d.ts.map +1 -1
  35. package/dist/tournaments/tournament-groups/tournament-group.entity.js +23 -5
  36. package/dist/tournaments/tournament-match-cards/tournament-match-card.entity.d.ts.map +1 -1
  37. package/dist/tournaments/tournament-match-cards/tournament-match-card.entity.js +44 -9
  38. package/dist/tournaments/tournament-match-goals/tournament-match-goal.entity.d.ts.map +1 -1
  39. package/dist/tournaments/tournament-match-goals/tournament-match-goal.entity.js +49 -12
  40. package/dist/tournaments/tournament-match-schemas/tournament-match-schema.entity.d.ts.map +1 -1
  41. package/dist/tournaments/tournament-match-schemas/tournament-match-schema.entity.js +29 -6
  42. package/dist/tournaments/tournament-matches/tournament-match.entity.d.ts.map +1 -1
  43. package/dist/tournaments/tournament-matches/tournament-match.entity.js +54 -10
  44. package/dist/tournaments/tournament-payments/tournament-payment.entity.d.ts.map +1 -1
  45. package/dist/tournaments/tournament-payments/tournament-payment.entity.js +28 -6
  46. package/dist/tournaments/tournament-players/tournament-player.entity.d.ts.map +1 -1
  47. package/dist/tournaments/tournament-players/tournament-player.entity.js +29 -6
  48. package/dist/tournaments/tournament-prize-rules/tournament-prize-rule.entity.d.ts.map +1 -1
  49. package/dist/tournaments/tournament-prize-rules/tournament-prize-rule.entity.js +32 -7
  50. package/dist/tournaments/tournament-rules/tournament-rule.entity.d.ts.map +1 -1
  51. package/dist/tournaments/tournament-rules/tournament-rule.entity.js +44 -14
  52. package/dist/tournaments/tournament-teams/tournament-team.entity.d.ts.map +1 -1
  53. package/dist/tournaments/tournament-teams/tournament-team.entity.js +40 -13
  54. package/dist/tournaments/tournaments/tournament.entity.d.ts +2 -1
  55. package/dist/tournaments/tournaments/tournament.entity.d.ts.map +1 -1
  56. package/dist/tournaments/tournaments/tournament.entity.js +63 -21
  57. package/package.json +3 -3
@@ -24,19 +24,37 @@ import { Tournament } from "../tournaments/index.js";
24
24
  let TournamentGroup = class {
25
25
  };
26
26
  __decorateClass([
27
- PrimaryGeneratedColumn()
27
+ PrimaryGeneratedColumn({
28
+ comment: "Identificador \xFAnico do grupo de torneio."
29
+ })
28
30
  ], TournamentGroup.prototype, "id", 2);
29
31
  __decorateClass([
30
- Column({ name: "tournament_id", type: "int" })
32
+ Column({
33
+ name: "tournament_id",
34
+ type: "int",
35
+ comment: "Identificador do torneio ao qual o grupo pertence."
36
+ })
31
37
  ], TournamentGroup.prototype, "tournamentId", 2);
32
38
  __decorateClass([
33
- Column({ type: "varchar", length: 50 })
39
+ Column({
40
+ type: "varchar",
41
+ length: 50,
42
+ comment: "Nome do grupo (ex: Grupo A, Grupo B)."
43
+ })
34
44
  ], TournamentGroup.prototype, "name", 2);
35
45
  __decorateClass([
36
- CreateDateColumn({ name: "created_at", type: "timestamptz" })
46
+ CreateDateColumn({
47
+ name: "created_at",
48
+ type: "timestamptz",
49
+ comment: "Data e hora em que o grupo foi criado."
50
+ })
37
51
  ], TournamentGroup.prototype, "createdAt", 2);
38
52
  __decorateClass([
39
- UpdateDateColumn({ name: "updated_at", type: "timestamptz" })
53
+ UpdateDateColumn({
54
+ name: "updated_at",
55
+ type: "timestamptz",
56
+ comment: "Data e hora da \xFAltima atualiza\xE7\xE3o do grupo."
57
+ })
40
58
  ], TournamentGroup.prototype, "updatedAt", 2);
41
59
  __decorateClass([
42
60
  ManyToOne(() => Tournament, (tournament) => tournament.groups, {
@@ -1 +1 @@
1
- {"version":3,"file":"tournament-match-card.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-match-cards/tournament-match-card.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EACR,WAAW,EACX,KAAK,oBAAoB,EAC1B,MAAM,oCAAoC,CAAC;AAY5C,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAarD,qBAIa,mBAAoB,YAAW,oBAAoB;IAE9D,EAAE,EAAE,MAAM,CAAC;IAGX,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,MAAM,CAAC,EAAE,WAAW,CAAC;IAGrB,QAAQ,EAAE,MAAM,CAAC;IAGjB,MAAM,EAAE,MAAM,CAAC;IAGf,OAAO,EAAE,MAAM,CAAC;IAGhB,QAAQ,EAAE,QAAQ,CAAC;IAGnB,SAAS,EAAE,IAAI,CAAC;IAGhB,SAAS,EAAE,IAAI,CAAC;IAShB,IAAI,EAAE,cAAc,CAAC;IAOrB,KAAK,EAAE,eAAe,CAAC;IAOvB,MAAM,EAAE,gBAAgB,CAAC;CAC1B"}
1
+ {"version":3,"file":"tournament-match-card.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-match-cards/tournament-match-card.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EACR,WAAW,EACX,KAAK,oBAAoB,EAC1B,MAAM,oCAAoC,CAAC;AAY5C,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAarD,qBAIa,mBAAoB,YAAW,oBAAoB;IAI9D,EAAE,EAAE,MAAM,CAAC;IAOX,MAAM,CAAC,EAAE,MAAM,CAAC;IAQhB,MAAM,CAAC,EAAE,WAAW,CAAC;IAOrB,QAAQ,EAAE,MAAM,CAAC;IAOjB,MAAM,EAAE,MAAM,CAAC;IAOf,OAAO,EAAE,MAAM,CAAC;IAOhB,QAAQ,EAAE,QAAQ,CAAC;IAOnB,SAAS,EAAE,IAAI,CAAC;IAOhB,SAAS,EAAE,IAAI,CAAC;IAShB,IAAI,EAAE,cAAc,CAAC;IAOrB,KAAK,EAAE,eAAe,CAAC;IAOvB,MAAM,EAAE,gBAAgB,CAAC;CAC1B"}
@@ -28,31 +28,66 @@ import { TournamentTeam } from "../tournament-teams/index.js";
28
28
  let TournamentMatchCard = class {
29
29
  };
30
30
  __decorateClass([
31
- PrimaryGeneratedColumn()
31
+ PrimaryGeneratedColumn({
32
+ comment: "Identificador \xFAnico do evento de cart\xE3o."
33
+ })
32
34
  ], TournamentMatchCard.prototype, "id", 2);
33
35
  __decorateClass([
34
- Column({ type: "int", nullable: true })
36
+ Column({
37
+ type: "int",
38
+ nullable: true,
39
+ comment: "Minuto do jogo em que o cart\xE3o foi aplicado (opcional)."
40
+ })
35
41
  ], TournamentMatchCard.prototype, "minute", 2);
36
42
  __decorateClass([
37
- Column({ type: "enum", enum: MatchPeriod, nullable: true })
43
+ Column({
44
+ type: "enum",
45
+ enum: MatchPeriod,
46
+ nullable: true,
47
+ comment: "Per\xEDodo da partida em que o cart\xE3o foi aplicado (ex: 1\xBA tempo, 2\xBA tempo)."
48
+ })
38
49
  ], TournamentMatchCard.prototype, "period", 2);
39
50
  __decorateClass([
40
- Column({ name: "player_id", type: "int" })
51
+ Column({
52
+ name: "player_id",
53
+ type: "int",
54
+ comment: "Identificador do jogador que recebeu o cart\xE3o."
55
+ })
41
56
  ], TournamentMatchCard.prototype, "playerId", 2);
42
57
  __decorateClass([
43
- Column({ name: "team_id", type: "int" })
58
+ Column({
59
+ name: "team_id",
60
+ type: "int",
61
+ comment: "Identificador do time ao qual o jogador pertence."
62
+ })
44
63
  ], TournamentMatchCard.prototype, "teamId", 2);
45
64
  __decorateClass([
46
- Column({ name: "match_id", type: "int" })
65
+ Column({
66
+ name: "match_id",
67
+ type: "int",
68
+ comment: "Identificador da partida onde o cart\xE3o foi registrado."
69
+ })
47
70
  ], TournamentMatchCard.prototype, "matchId", 2);
48
71
  __decorateClass([
49
- Column({ type: "enum", enum: CardType })
72
+ Column({
73
+ type: "enum",
74
+ enum: CardType,
75
+ comment: "Tipo de cart\xE3o emitido (ex: amarelo, vermelho)."
76
+ })
50
77
  ], TournamentMatchCard.prototype, "cardType", 2);
51
78
  __decorateClass([
52
- CreateDateColumn({ name: "created_at", type: "timestamptz" })
79
+ CreateDateColumn({
80
+ name: "created_at",
81
+ type: "timestamptz",
82
+ comment: "Data e hora em que o registro do cart\xE3o foi criado."
83
+ })
53
84
  ], TournamentMatchCard.prototype, "createdAt", 2);
54
85
  __decorateClass([
55
- UpdateDateColumn({ name: "updated_at", type: "timestamptz" })
86
+ UpdateDateColumn({
87
+ name: "updated_at",
88
+ type: "timestamptz",
89
+ comment: "Data e hora da \xFAltima atualiza\xE7\xE3o do registro."
90
+ })
56
91
  ], TournamentMatchCard.prototype, "updatedAt", 2);
57
92
  __decorateClass([
58
93
  ManyToOne(() => TournamentTeam, (team) => team.cards, { onDelete: "CASCADE" }),
@@ -1 +1 @@
1
- {"version":3,"file":"tournament-match-goal.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-match-goals/tournament-match-goal.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AAYvF,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAarD,qBAGa,mBAAoB,YAAW,oBAAoB;IAE9D,EAAE,EAAE,MAAM,CAAC;IAGX,MAAM,EAAE,MAAM,CAAC;IAGf,OAAO,EAAE,MAAM,CAAC;IAGhB,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,MAAM,CAAC,EAAE,WAAW,CAAC;IAGrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,SAAS,EAAE,IAAI,CAAC;IAGhB,SAAS,EAAE,IAAI,CAAC;IAShB,IAAI,CAAC,EAAE,cAAc,CAAC;IAOtB,KAAK,CAAC,EAAE,eAAe,CAAC;IAOxB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAO1B,MAAM,CAAC,EAAE,gBAAgB,CAAC;CAC3B"}
1
+ {"version":3,"file":"tournament-match-goal.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-match-goals/tournament-match-goal.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,WAAW,EAAE,MAAM,oCAAoC,CAAC;AAYvF,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAOrD,qBAGa,mBAAoB,YAAW,oBAAoB;IAI9D,EAAE,EAAE,MAAM,CAAC;IAOX,MAAM,EAAE,MAAM,CAAC;IAOf,OAAO,EAAE,MAAM,CAAC;IAOhB,MAAM,CAAC,EAAE,MAAM,CAAC;IAQhB,MAAM,CAAC,EAAE,WAAW,CAAC;IAQrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAQlB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAOlB,SAAS,EAAE,IAAI,CAAC;IAOhB,SAAS,EAAE,IAAI,CAAC;IAMhB,IAAI,CAAC,EAAE,cAAc,CAAC;IAItB,KAAK,CAAC,EAAE,eAAe,CAAC;IAIxB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAI1B,MAAM,CAAC,EAAE,gBAAgB,CAAC;CAC3B"}
@@ -25,31 +25,68 @@ import { TournamentTeam } from "../tournament-teams/index.js";
25
25
  let TournamentMatchGoal = class {
26
26
  };
27
27
  __decorateClass([
28
- PrimaryGeneratedColumn()
28
+ PrimaryGeneratedColumn({
29
+ comment: "Identificador \xFAnico do evento de gol."
30
+ })
29
31
  ], TournamentMatchGoal.prototype, "id", 2);
30
32
  __decorateClass([
31
- Column({ name: "team_id", type: "int" })
33
+ Column({
34
+ name: "team_id",
35
+ type: "int",
36
+ comment: "Identificador do time que marcou o gol."
37
+ })
32
38
  ], TournamentMatchGoal.prototype, "teamId", 2);
33
39
  __decorateClass([
34
- Column({ name: "match_id", type: "int" })
40
+ Column({
41
+ name: "match_id",
42
+ type: "int",
43
+ comment: "Identificador da partida em que o gol foi marcado."
44
+ })
35
45
  ], TournamentMatchGoal.prototype, "matchId", 2);
36
46
  __decorateClass([
37
- Column({ type: "int", nullable: true })
47
+ Column({
48
+ type: "int",
49
+ nullable: true,
50
+ comment: "Minuto da partida em que o gol foi marcado (opcional)."
51
+ })
38
52
  ], TournamentMatchGoal.prototype, "minute", 2);
39
53
  __decorateClass([
40
- Column({ type: "enum", enum: MatchPeriod, nullable: true })
54
+ Column({
55
+ type: "enum",
56
+ enum: MatchPeriod,
57
+ nullable: true,
58
+ comment: "Per\xEDodo da partida em que o gol foi marcado (ex: 1\xBA tempo, 2\xBA tempo)."
59
+ })
41
60
  ], TournamentMatchGoal.prototype, "period", 2);
42
61
  __decorateClass([
43
- Column({ name: "scorer_id", type: "int", nullable: true })
62
+ Column({
63
+ name: "scorer_id",
64
+ type: "int",
65
+ nullable: true,
66
+ comment: "Identificador do jogador que marcou o gol (opcional)."
67
+ })
44
68
  ], TournamentMatchGoal.prototype, "scorerId", 2);
45
69
  __decorateClass([
46
- Column({ name: "assist_id", type: "int", nullable: true })
70
+ Column({
71
+ name: "assist_id",
72
+ type: "int",
73
+ nullable: true,
74
+ comment: "Identificador do jogador que fez a assist\xEAncia (opcional)."
75
+ })
47
76
  ], TournamentMatchGoal.prototype, "assistId", 2);
48
77
  __decorateClass([
49
- CreateDateColumn({ name: "created_at", type: "timestamptz" })
78
+ CreateDateColumn({
79
+ name: "created_at",
80
+ type: "timestamptz",
81
+ comment: "Data de cria\xE7\xE3o do registro do gol."
82
+ })
50
83
  ], TournamentMatchGoal.prototype, "createdAt", 2);
51
84
  __decorateClass([
52
- UpdateDateColumn({ name: "updated_at", type: "timestamptz" })
85
+ UpdateDateColumn({
86
+ name: "updated_at",
87
+ type: "timestamptz",
88
+ comment: "Data da \xFAltima atualiza\xE7\xE3o do registro do gol."
89
+ })
53
90
  ], TournamentMatchGoal.prototype, "updatedAt", 2);
54
91
  __decorateClass([
55
92
  ManyToOne(() => TournamentTeam, (team) => team.goals, { onDelete: "CASCADE" }),
@@ -57,14 +94,14 @@ __decorateClass([
57
94
  ], TournamentMatchGoal.prototype, "team", 2);
58
95
  __decorateClass([
59
96
  ManyToOne(() => TournamentMatch, (match) => match.goals, { onDelete: "CASCADE" }),
60
- JoinColumn({ name: "team_id" })
97
+ JoinColumn({ name: "match_id" })
61
98
  ], TournamentMatchGoal.prototype, "match", 2);
62
99
  __decorateClass([
63
- ManyToOne(() => TournamentPlayer, (team) => team.goals, { onDelete: "CASCADE" }),
100
+ ManyToOne(() => TournamentPlayer, (player) => player.goals, { onDelete: "CASCADE" }),
64
101
  JoinColumn({ name: "scorer_id" })
65
102
  ], TournamentMatchGoal.prototype, "scorer", 2);
66
103
  __decorateClass([
67
- ManyToOne(() => TournamentPlayer, (team) => team.assists, { onDelete: "CASCADE" }),
104
+ ManyToOne(() => TournamentPlayer, (player) => player.assists, { onDelete: "CASCADE" }),
68
105
  JoinColumn({ name: "assist_id" })
69
106
  ], TournamentMatchGoal.prototype, "assist", 2);
70
107
  TournamentMatchGoal = __decorateClass([
@@ -1 +1 @@
1
- {"version":3,"file":"tournament-match-schema.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-match-schemas/tournament-match-schema.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAW5E,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAW5C,qBAEa,qBAAsB,YAAW,sBAAsB;IAElE,EAAE,EAAE,MAAM,CAAC;IAGX,IAAI,EAAE,MAAM,CAAC;IAGb,WAAW,CAAC,EAAE,MAAM,CAAC;IAGrB,cAAc,EAAE,MAAM,CAAC;IAGvB,SAAS,EAAE,IAAI,CAAC;IAGhB,SAAS,EAAE,IAAI,CAAC;IAQhB,WAAW,EAAE,UAAU,EAAE,CAAC;CAC3B"}
1
+ {"version":3,"file":"tournament-match-schema.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-match-schemas/tournament-match-schema.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAW5E,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAO5C,qBAEa,qBAAsB,YAAW,sBAAsB;IAIlE,EAAE,EAAE,MAAM,CAAC;IAOX,IAAI,EAAE,MAAM,CAAC;IAQb,WAAW,CAAC,EAAE,MAAM,CAAC;IAOrB,cAAc,EAAE,MAAM,CAAC;IAOvB,SAAS,EAAE,IAAI,CAAC;IAOhB,SAAS,EAAE,IAAI,CAAC;IAKhB,WAAW,EAAE,UAAU,EAAE,CAAC;CAC3B"}
@@ -21,22 +21,45 @@ import { Tournament } from "../tournaments/index.js";
21
21
  let TournamentMatchSchema = class {
22
22
  };
23
23
  __decorateClass([
24
- PrimaryGeneratedColumn()
24
+ PrimaryGeneratedColumn({
25
+ comment: "Identificador \xFAnico do esquema de partidas."
26
+ })
25
27
  ], TournamentMatchSchema.prototype, "id", 2);
26
28
  __decorateClass([
27
- Column({ type: "varchar", length: 100 })
29
+ Column({
30
+ type: "varchar",
31
+ length: 100,
32
+ comment: "Nome do esquema (ex: 5v5, 7v7)."
33
+ })
28
34
  ], TournamentMatchSchema.prototype, "name", 2);
29
35
  __decorateClass([
30
- Column({ type: "varchar", length: 255, nullable: true })
36
+ Column({
37
+ type: "varchar",
38
+ length: 255,
39
+ nullable: true,
40
+ comment: "Descri\xE7\xE3o adicional do esquema (opcional)."
41
+ })
31
42
  ], TournamentMatchSchema.prototype, "description", 2);
32
43
  __decorateClass([
33
- Column({ type: "int", name: "players_per_team" })
44
+ Column({
45
+ type: "int",
46
+ name: "players_per_team",
47
+ comment: "Quantidade de jogadores por equipe no esquema."
48
+ })
34
49
  ], TournamentMatchSchema.prototype, "playersPerTeam", 2);
35
50
  __decorateClass([
36
- CreateDateColumn({ name: "created_at", type: "timestamptz" })
51
+ CreateDateColumn({
52
+ name: "created_at",
53
+ type: "timestamptz",
54
+ comment: "Data de cria\xE7\xE3o do esquema."
55
+ })
37
56
  ], TournamentMatchSchema.prototype, "createdAt", 2);
38
57
  __decorateClass([
39
- UpdateDateColumn({ name: "updated_at", type: "timestamptz" })
58
+ UpdateDateColumn({
59
+ name: "updated_at",
60
+ type: "timestamptz",
61
+ comment: "Data da \xFAltima atualiza\xE7\xE3o do esquema."
62
+ })
40
63
  ], TournamentMatchSchema.prototype, "updatedAt", 2);
41
64
  __decorateClass([
42
65
  OneToMany(() => Tournament, (tournament) => tournament.matchSchema)
@@ -1 +1 @@
1
- {"version":3,"file":"tournament-match.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-matches/tournament-match.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAY5F,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAW5C,qBACa,eAAgB,YAAW,gBAAgB;IAEtD,EAAE,EAAE,MAAM,CAAC;IAGX,YAAY,EAAE,MAAM,CAAC;IAGrB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAG1B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAG1B,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,SAAS,EAAE,IAAI,GAAG,IAAI,CAAC;IAUvB,KAAK,EAAE,oBAAoB,CAAC;IAS5B,cAAc,EAAE,MAAM,CAAC;IAGvB,SAAS,EAAE,IAAI,CAAC;IAGhB,SAAS,EAAE,IAAI,CAAC;IAShB,KAAK,CAAC,EAAE,KAAK,CAAC;IASd,UAAU,EAAE,UAAU,CAAC;IASvB,QAAQ,EAAE,cAAc,CAAC;IASzB,QAAQ,EAAE,cAAc,CAAC;IAMzB,KAAK,EAAE,mBAAmB,EAAE,CAAC;IAM7B,KAAK,EAAE,mBAAmB,EAAE,CAAC;CAC9B"}
1
+ {"version":3,"file":"tournament-match.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-matches/tournament-match.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAY5F,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAO5C,qBACa,eAAgB,YAAW,gBAAgB;IAItD,EAAE,EAAE,MAAM,CAAC;IAOX,YAAY,EAAE,MAAM,CAAC;IAQrB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAQ1B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAQ1B,OAAO,CAAC,EAAE,MAAM,CAAC;IASjB,SAAS,EAAE,IAAI,GAAG,IAAI,CAAC;IAOvB,KAAK,EAAE,oBAAoB,CAAC;IAQ5B,cAAc,EAAE,MAAM,CAAC;IAOvB,SAAS,EAAE,IAAI,CAAC;IAOhB,SAAS,EAAE,IAAI,CAAC;IAMhB,KAAK,CAAC,EAAE,KAAK,CAAC;IAMd,UAAU,EAAE,UAAU,CAAC;IAMvB,QAAQ,EAAE,cAAc,CAAC;IAMzB,QAAQ,EAAE,cAAc,CAAC;IAGzB,KAAK,EAAE,mBAAmB,EAAE,CAAC;IAG7B,KAAK,EAAE,mBAAmB,EAAE,CAAC;CAC9B"}
@@ -27,34 +27,78 @@ import { Tournament } from "../tournaments/index.js";
27
27
  let TournamentMatch = class {
28
28
  };
29
29
  __decorateClass([
30
- PrimaryGeneratedColumn()
30
+ PrimaryGeneratedColumn({
31
+ comment: "Identificador \xFAnico da partida."
32
+ })
31
33
  ], TournamentMatch.prototype, "id", 2);
32
34
  __decorateClass([
33
- Column({ name: "tournament_id", type: "int" })
35
+ Column({
36
+ name: "tournament_id",
37
+ type: "int",
38
+ comment: "Identificador do torneio ao qual a partida pertence."
39
+ })
34
40
  ], TournamentMatch.prototype, "tournamentId", 2);
35
41
  __decorateClass([
36
- Column({ name: "home_team_id", type: "int", nullable: true })
42
+ Column({
43
+ name: "home_team_id",
44
+ type: "int",
45
+ nullable: true,
46
+ comment: "Identificador do time da casa (opcional)."
47
+ })
37
48
  ], TournamentMatch.prototype, "homeTeamId", 2);
38
49
  __decorateClass([
39
- Column({ name: "away_team_id", type: "int", nullable: true })
50
+ Column({
51
+ name: "away_team_id",
52
+ type: "int",
53
+ nullable: true,
54
+ comment: "Identificador do time visitante (opcional)."
55
+ })
40
56
  ], TournamentMatch.prototype, "awayTeamId", 2);
41
57
  __decorateClass([
42
- Column({ name: "field_id", type: "int", nullable: true })
58
+ Column({
59
+ name: "field_id",
60
+ type: "int",
61
+ nullable: true,
62
+ comment: "Identificador do campo onde ocorrer\xE1 a partida (opcional)."
63
+ })
43
64
  ], TournamentMatch.prototype, "fieldId", 2);
44
65
  __decorateClass([
45
- Column({ name: "match_date", type: "timestamptz", default: null, nullable: true })
66
+ Column({
67
+ name: "match_date",
68
+ type: "timestamptz",
69
+ default: null,
70
+ nullable: true,
71
+ comment: "Data e hora da partida (opcional)."
72
+ })
46
73
  ], TournamentMatch.prototype, "matchDate", 2);
47
74
  __decorateClass([
48
- Column({ type: "enum", enum: TournamentMatchPhase })
75
+ Column({
76
+ type: "enum",
77
+ enum: TournamentMatchPhase,
78
+ comment: "Fase do torneio em que a partida ocorre."
79
+ })
49
80
  ], TournamentMatch.prototype, "phase", 2);
50
81
  __decorateClass([
51
- Column({ name: "round_indicator", type: "int", default: 1 })
82
+ Column({
83
+ name: "round_indicator",
84
+ type: "int",
85
+ default: 1,
86
+ comment: "N\xFAmero da rodada ou jogo dentro da fase."
87
+ })
52
88
  ], TournamentMatch.prototype, "roundIndicator", 2);
53
89
  __decorateClass([
54
- CreateDateColumn({ name: "created_at", type: "timestamptz" })
90
+ CreateDateColumn({
91
+ name: "created_at",
92
+ type: "timestamptz",
93
+ comment: "Data de cria\xE7\xE3o do registro da partida."
94
+ })
55
95
  ], TournamentMatch.prototype, "createdAt", 2);
56
96
  __decorateClass([
57
- UpdateDateColumn({ name: "updated_at", type: "timestamptz" })
97
+ UpdateDateColumn({
98
+ name: "updated_at",
99
+ type: "timestamptz",
100
+ comment: "Data da \xFAltima atualiza\xE7\xE3o do registro da partida."
101
+ })
58
102
  ], TournamentMatch.prototype, "updatedAt", 2);
59
103
  __decorateClass([
60
104
  ManyToOne(() => Field, (field) => field.tournamentMatches, { onDelete: "SET NULL" }),
@@ -1 +1 @@
1
- {"version":3,"file":"tournament-payment.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-payments/tournament-payment.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AAWxE,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAW5C,qBACa,iBAAkB,YAAW,kBAAkB;IAE1D,EAAE,EAAE,MAAM,CAAC;IAGX,SAAS,EAAE,MAAM,CAAC;IAGlB,YAAY,EAAE,MAAM,CAAC;IAGrB,MAAM,EAAE,MAAM,CAAC;IAGf,SAAS,EAAE,IAAI,CAAC;IAGhB,SAAS,EAAE,IAAI,CAAC;IAShB,IAAI,EAAE,IAAI,CAAC;IAOX,OAAO,EAAE,OAAO,CAAC;IAOjB,UAAU,EAAE,UAAU,CAAC;CACxB"}
1
+ {"version":3,"file":"tournament-payment.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-payments/tournament-payment.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AAWxE,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAO5C,qBACa,iBAAkB,YAAW,kBAAkB;IAI1D,EAAE,EAAE,MAAM,CAAC;IAOX,SAAS,EAAE,MAAM,CAAC;IAOlB,YAAY,EAAE,MAAM,CAAC;IAOrB,MAAM,EAAE,MAAM,CAAC;IAOf,SAAS,EAAE,IAAI,CAAC;IAOhB,SAAS,EAAE,IAAI,CAAC;IAMhB,IAAI,EAAE,IAAI,CAAC;IAIX,OAAO,EAAE,OAAO,CAAC;IAIjB,UAAU,EAAE,UAAU,CAAC;CACxB"}
@@ -23,22 +23,44 @@ import { Tournament } from "../tournaments/index.js";
23
23
  let TournamentPayment = class {
24
24
  };
25
25
  __decorateClass([
26
- PrimaryGeneratedColumn("uuid")
26
+ PrimaryGeneratedColumn("uuid", {
27
+ comment: "Identificador \xFAnico do pagamento de torneio."
28
+ })
27
29
  ], TournamentPayment.prototype, "id", 2);
28
30
  __decorateClass([
29
- Column({ name: "payment_id", type: "int" })
31
+ Column({
32
+ name: "payment_id",
33
+ type: "int",
34
+ comment: "Identificador do pagamento associado."
35
+ })
30
36
  ], TournamentPayment.prototype, "paymentId", 2);
31
37
  __decorateClass([
32
- Column({ name: "tournament_id", type: "int" })
38
+ Column({
39
+ name: "tournament_id",
40
+ type: "int",
41
+ comment: "Identificador do torneio ao qual o pagamento se refere."
42
+ })
33
43
  ], TournamentPayment.prototype, "tournamentId", 2);
34
44
  __decorateClass([
35
- Column({ name: "user_id", type: "uuid" })
45
+ Column({
46
+ name: "user_id",
47
+ type: "uuid",
48
+ comment: "Identificador do usu\xE1rio que realizou o pagamento."
49
+ })
36
50
  ], TournamentPayment.prototype, "userId", 2);
37
51
  __decorateClass([
38
- CreateDateColumn({ name: "created_at", type: "timestamptz" })
52
+ CreateDateColumn({
53
+ name: "created_at",
54
+ type: "timestamptz",
55
+ comment: "Data e hora de cria\xE7\xE3o do registro de pagamento."
56
+ })
39
57
  ], TournamentPayment.prototype, "createdAt", 2);
40
58
  __decorateClass([
41
- UpdateDateColumn({ name: "updated_at", type: "timestamptz" })
59
+ UpdateDateColumn({
60
+ name: "updated_at",
61
+ type: "timestamptz",
62
+ comment: "Data e hora da \xFAltima atualiza\xE7\xE3o do registro de pagamento."
63
+ })
42
64
  ], TournamentPayment.prototype, "updatedAt", 2);
43
65
  __decorateClass([
44
66
  ManyToOne(() => User, { onDelete: "CASCADE" }),
@@ -1 +1 @@
1
- {"version":3,"file":"tournament-player.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-players/tournament-player.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AAcvE,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACtC,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAcrD,qBAIa,gBAAiB,YAAW,iBAAiB;IAExD,EAAE,EAAE,MAAM,CAAC;IAGX,MAAM,EAAE,MAAM,CAAC;IAGf,MAAM,EAAE,MAAM,CAAC;IAGf,OAAO,EAAE,OAAO,CAAC;IAGjB,SAAS,EAAE,IAAI,CAAC;IAGhB,SAAS,EAAE,IAAI,CAAC;IAahB,IAAI,EAAE,cAAc,CAAC;IAWrB,IAAI,EAAE,IAAI,CAAC;IAMX,KAAK,EAAE,mBAAmB,EAAE,CAAC;IAM7B,OAAO,EAAE,mBAAmB,EAAE,CAAC;IAM/B,KAAK,EAAE,mBAAmB,EAAE,CAAC;CAC9B"}
1
+ {"version":3,"file":"tournament-player.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-players/tournament-player.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AAcvE,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACtC,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAOrD,qBAIa,gBAAiB,YAAW,iBAAiB;IAIxD,EAAE,EAAE,MAAM,CAAC;IAOX,MAAM,EAAE,MAAM,CAAC;IAOf,MAAM,EAAE,MAAM,CAAC;IAQf,OAAO,EAAE,OAAO,CAAC;IAOjB,SAAS,EAAE,IAAI,CAAC;IAOhB,SAAS,EAAE,IAAI,CAAC;IAShB,IAAI,EAAE,cAAc,CAAC;IAOrB,IAAI,EAAE,IAAI,CAAC;IAGX,KAAK,EAAE,mBAAmB,EAAE,CAAC;IAG7B,OAAO,EAAE,mBAAmB,EAAE,CAAC;IAG/B,KAAK,EAAE,mBAAmB,EAAE,CAAC;CAC9B"}
@@ -27,22 +27,45 @@ import { TournamentTeam } from "../tournament-teams/index.js";
27
27
  let TournamentPlayer = class {
28
28
  };
29
29
  __decorateClass([
30
- PrimaryGeneratedColumn()
30
+ PrimaryGeneratedColumn({
31
+ comment: "Identificador \xFAnico do jogador no torneio."
32
+ })
31
33
  ], TournamentPlayer.prototype, "id", 2);
32
34
  __decorateClass([
33
- Column({ name: "user_id", type: "uuid" })
35
+ Column({
36
+ name: "user_id",
37
+ type: "uuid",
38
+ comment: "Identificador do usu\xE1rio associado ao jogador."
39
+ })
34
40
  ], TournamentPlayer.prototype, "userId", 2);
35
41
  __decorateClass([
36
- Column({ name: "team_id", type: "int" })
42
+ Column({
43
+ name: "team_id",
44
+ type: "int",
45
+ comment: "Identificador do time ao qual o jogador pertence."
46
+ })
37
47
  ], TournamentPlayer.prototype, "teamId", 2);
38
48
  __decorateClass([
39
- Column({ name: "is_owner", type: "boolean", default: false })
49
+ Column({
50
+ name: "is_owner",
51
+ type: "boolean",
52
+ default: false,
53
+ comment: "Indica se o jogador \xE9 o dono do time."
54
+ })
40
55
  ], TournamentPlayer.prototype, "isOwner", 2);
41
56
  __decorateClass([
42
- CreateDateColumn({ name: "created_at", type: "timestamptz" })
57
+ CreateDateColumn({
58
+ name: "created_at",
59
+ type: "timestamptz",
60
+ comment: "Data de cria\xE7\xE3o do registro do jogador."
61
+ })
43
62
  ], TournamentPlayer.prototype, "createdAt", 2);
44
63
  __decorateClass([
45
- UpdateDateColumn({ name: "updated_at", type: "timestamptz" })
64
+ UpdateDateColumn({
65
+ name: "updated_at",
66
+ type: "timestamptz",
67
+ comment: "Data da \xFAltima atualiza\xE7\xE3o do jogador."
68
+ })
46
69
  ], TournamentPlayer.prototype, "updatedAt", 2);
47
70
  __decorateClass([
48
71
  ManyToOne(() => TournamentTeam, (team) => team.players, {
@@ -1 +1 @@
1
- {"version":3,"file":"tournament-prize-rule.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-prize-rules/tournament-prize-rule.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAa1E,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAe5C,qBAGa,mBAAoB,YAAW,oBAAoB;IAE9D,EAAE,EAAE,MAAM,CAAC;IAGX,YAAY,EAAE,MAAM,CAAC;IAGrB,MAAM,EAAE,MAAM,CAAC;IAGf,IAAI,EAAE,MAAM,CAAC;IAGb,WAAW,CAAC,EAAE,MAAM,CAAC;IAGrB,SAAS,EAAE,IAAI,CAAC;IAGhB,SAAS,EAAE,IAAI,CAAC;IAYhB,UAAU,EAAE,UAAU,CAAC;CACxB"}
1
+ {"version":3,"file":"tournament-prize-rule.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-prize-rules/tournament-prize-rule.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAa1E,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAO5C,qBAGa,mBAAoB,YAAW,oBAAoB;IAI9D,EAAE,EAAE,MAAM,CAAC;IAOX,YAAY,EAAE,MAAM,CAAC;IAMrB,MAAM,EAAE,MAAM,CAAC;IAMf,IAAI,EAAE,MAAM,CAAC;IAQb,WAAW,CAAC,EAAE,MAAM,CAAC;IAOrB,SAAS,EAAE,IAAI,CAAC;IAOhB,SAAS,EAAE,IAAI,CAAC;IAQhB,UAAU,EAAE,UAAU,CAAC;CACxB"}
@@ -23,25 +23,50 @@ import { Tournament } from "../tournaments/index.js";
23
23
  let TournamentPrizeRule = class {
24
24
  };
25
25
  __decorateClass([
26
- PrimaryGeneratedColumn()
26
+ PrimaryGeneratedColumn({
27
+ comment: "Identificador \xFAnico da regra de premia\xE7\xE3o."
28
+ })
27
29
  ], TournamentPrizeRule.prototype, "id", 2);
28
30
  __decorateClass([
29
- Column({ name: "tournament_id", type: "int" })
31
+ Column({
32
+ name: "tournament_id",
33
+ type: "int",
34
+ comment: "Identificador do torneio ao qual a regra pertence."
35
+ })
30
36
  ], TournamentPrizeRule.prototype, "tournamentId", 2);
31
37
  __decorateClass([
32
- Column({ type: "int" })
38
+ Column({
39
+ type: "int",
40
+ comment: "Valor da premia\xE7\xE3o em centavos."
41
+ })
33
42
  ], TournamentPrizeRule.prototype, "amount", 2);
34
43
  __decorateClass([
35
- Column({ type: "int" })
44
+ Column({
45
+ type: "int",
46
+ comment: "Classifica\xE7\xE3o correspondente \xE0 premia\xE7\xE3o (ex: 1 para campe\xE3o)."
47
+ })
36
48
  ], TournamentPrizeRule.prototype, "rank", 2);
37
49
  __decorateClass([
38
- Column({ type: "varchar", length: 255, nullable: true })
50
+ Column({
51
+ type: "varchar",
52
+ length: 255,
53
+ nullable: true,
54
+ comment: "Descri\xE7\xE3o opcional da premia\xE7\xE3o."
55
+ })
39
56
  ], TournamentPrizeRule.prototype, "description", 2);
40
57
  __decorateClass([
41
- CreateDateColumn({ name: "created_at", type: "timestamptz" })
58
+ CreateDateColumn({
59
+ name: "created_at",
60
+ type: "timestamptz",
61
+ comment: "Data de cria\xE7\xE3o da regra de premia\xE7\xE3o."
62
+ })
42
63
  ], TournamentPrizeRule.prototype, "createdAt", 2);
43
64
  __decorateClass([
44
- UpdateDateColumn({ name: "updated_at", type: "timestamptz" })
65
+ UpdateDateColumn({
66
+ name: "updated_at",
67
+ type: "timestamptz",
68
+ comment: "Data da \xFAltima atualiza\xE7\xE3o da regra."
69
+ })
45
70
  ], TournamentPrizeRule.prototype, "updatedAt", 2);
46
71
  __decorateClass([
47
72
  ManyToOne(() => Tournament, (tournament) => tournament.prizeRules, {
@@ -1 +1 @@
1
- {"version":3,"file":"tournament-rule.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-rules/tournament-rule.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAYrE,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAW5C,qBAIa,cAAe,YAAW,eAAe;IAEpD,EAAE,EAAE,MAAM,CAAC;IAGX,YAAY,EAAE,MAAM,CAAC;IAGrB,gBAAgB,EAAE,MAAM,CAAC;IAGzB,gBAAgB,EAAE,MAAM,CAAC;IAGzB,MAAM,EAAE,MAAM,CAAC;IAGf,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,aAAa,EAAE,MAAM,CAAC;IAGtB,KAAK,CAAC,EAAE,MAAM,CAAC;IAQf,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAG1B,SAAS,EAAE,IAAI,CAAC;IAGhB,SAAS,EAAE,IAAI,CAAC;IAWhB,UAAU,EAAE,UAAU,CAAC;CACxB"}
1
+ {"version":3,"file":"tournament-rule.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-rules/tournament-rule.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAYrE,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAW5C,qBAIa,cAAe,YAAW,eAAe;IAEpD,EAAE,EAAE,MAAM,CAAC;IAQX,YAAY,EAAE,MAAM,CAAC;IAOrB,gBAAgB,EAAE,MAAM,CAAC;IAOzB,gBAAgB,EAAE,MAAM,CAAC;IAGzB,MAAM,EAAE,MAAM,CAAC;IAQf,MAAM,CAAC,EAAE,MAAM,CAAC;IAGhB,aAAa,EAAE,MAAM,CAAC;IAQtB,KAAK,CAAC,EAAE,MAAM,CAAC;IASf,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAO1B,SAAS,EAAE,IAAI,CAAC;IAOhB,SAAS,EAAE,IAAI,CAAC;IAKhB,UAAU,EAAE,UAAU,CAAC;CACxB"}