@natrave/shared-entities 1.4.8 → 1.4.10

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.
@@ -1,7 +1,7 @@
1
1
  import { BrazilianState } from '@natrave/tournaments-service-types';
2
- import { PlayerTeam, TeamJoinRequest, TeamModality } from '..';
3
2
  import { Gender } from '../../app-auth';
4
- import { TournamentTeam } from '../../tournaments';
3
+ import { PlayerTeam, TeamJoinRequest, TeamModality } from '../../teams';
4
+ import { TournamentTeam, TournamentTeamContactAttempt } from '../../tournaments';
5
5
  export declare class Team {
6
6
  id: number;
7
7
  name: string;
@@ -19,5 +19,6 @@ export declare class Team {
19
19
  playerMemberships: PlayerTeam[];
20
20
  teamModalities: TeamModality[];
21
21
  joinRequests: TeamJoinRequest[];
22
+ tournamentContactAttempts: TournamentTeamContactAttempt[];
22
23
  }
23
24
  //# sourceMappingURL=team.entity.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"team.entity.d.ts","sourceRoot":"","sources":["../../../src/teams/teams/team.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAWpE,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAC/D,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAEnD,qBAEa,IAAI;IAEf,EAAE,EAAE,MAAM,CAAC;IAGX,IAAI,EAAE,MAAM,CAAC;IAGb,YAAY,EAAE,MAAM,CAAC;IAGrB,IAAI,EAAE,MAAM,CAAC;IAGb,KAAK,EAAE,cAAc,CAAC;IAGtB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAG1B,WAAW,CAAC,EAAE,MAAM,CAAC;IAQrB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IAQtB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IAGrB,SAAS,EAAE,IAAI,CAAC;IAGhB,SAAS,EAAE,IAAI,CAAC;IAGhB,eAAe,EAAE,cAAc,EAAE,CAAC;IAGlC,iBAAiB,EAAE,UAAU,EAAE,CAAC;IAGhC,cAAc,EAAE,YAAY,EAAE,CAAC;IAG/B,YAAY,EAAE,eAAe,EAAE,CAAC;CACjC"}
1
+ {"version":3,"file":"team.entity.d.ts","sourceRoot":"","sources":["../../../src/teams/teams/team.entity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AAWpE,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEjF,qBAEa,IAAI;IAEf,EAAE,EAAE,MAAM,CAAC;IAGX,IAAI,EAAE,MAAM,CAAC;IAGb,YAAY,EAAE,MAAM,CAAC;IAGrB,IAAI,EAAE,MAAM,CAAC;IAGb,KAAK,EAAE,cAAc,CAAC;IAGtB,YAAY,CAAC,EAAE,MAAM,CAAC;IAGtB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAG1B,WAAW,CAAC,EAAE,MAAM,CAAC;IAQrB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IAQtB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IAGrB,SAAS,EAAE,IAAI,CAAC;IAGhB,SAAS,EAAE,IAAI,CAAC;IAGhB,eAAe,EAAE,cAAc,EAAE,CAAC;IAGlC,iBAAiB,EAAE,UAAU,EAAE,CAAC;IAGhC,cAAc,EAAE,YAAY,EAAE,CAAC;IAG/B,YAAY,EAAE,eAAe,EAAE,CAAC;IAGhC,yBAAyB,EAAE,4BAA4B,EAAE,CAAC;CAC3D"}
@@ -18,9 +18,9 @@ import {
18
18
  PrimaryGeneratedColumn,
19
19
  UpdateDateColumn
20
20
  } from "typeorm";
21
- import { PlayerTeam, TeamJoinRequest, TeamModality } from "..";
22
21
  import { Gender } from "../../app-auth/index.js";
23
- import { TournamentTeam } from "../../tournaments/index.js";
22
+ import { PlayerTeam, TeamJoinRequest, TeamModality } from "../../teams/index.js";
23
+ import { TournamentTeam, TournamentTeamContactAttempt } from "../../tournaments/index.js";
24
24
  let Team = class {
25
25
  };
26
26
  __decorateClass([
@@ -81,6 +81,9 @@ __decorateClass([
81
81
  __decorateClass([
82
82
  OneToMany(() => TeamJoinRequest, (tjr) => tjr.team)
83
83
  ], Team.prototype, "joinRequests", 2);
84
+ __decorateClass([
85
+ OneToMany(() => TournamentTeamContactAttempt, (attempt) => attempt.tournament)
86
+ ], Team.prototype, "tournamentContactAttempts", 2);
84
87
  Team = __decorateClass([
85
88
  Entity("teams"),
86
89
  Index("UQ_team_name", ["name"], { unique: true })
@@ -15,6 +15,7 @@ export * from './tournament-player-rules';
15
15
  export * from './tournament-players';
16
16
  export * from './tournament-prize-rules';
17
17
  export * from './tournament-rules';
18
+ export * from './tournament-team-contact-attempts';
18
19
  export * from './tournament-teams';
19
20
  export * from './tournaments';
20
21
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tournaments/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC;AACrC,cAAc,mCAAmC,CAAC;AAClD,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tournaments/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sBAAsB,CAAC;AACrC,cAAc,mCAAmC,CAAC;AAClD,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oCAAoC,CAAC;AACnD,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC"}
@@ -15,5 +15,6 @@ export * from "./tournament-player-rules/index.js";
15
15
  export * from "./tournament-players/index.js";
16
16
  export * from "./tournament-prize-rules/index.js";
17
17
  export * from "./tournament-rules/index.js";
18
+ export * from "./tournament-team-contact-attempts/index.js";
18
19
  export * from "./tournament-teams/index.js";
19
20
  export * from "./tournaments/index.js";
@@ -0,0 +1,2 @@
1
+ export { TournamentTeamContactAttempt } from './tournament-team-contact-attempt.entity';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-team-contact-attempts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,MAAM,0CAA0C,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { TournamentTeamContactAttempt } from "./tournament-team-contact-attempt.entity.js";
2
+ export {
3
+ TournamentTeamContactAttempt
4
+ };
@@ -0,0 +1,12 @@
1
+ import { Team } from '../../teams';
2
+ import { Tournament } from '../tournaments';
3
+ export declare class TournamentTeamContactAttempt {
4
+ id: number;
5
+ teamId: number;
6
+ tournamentId: number;
7
+ createdAt: Date;
8
+ updatedAt: Date;
9
+ team: Team;
10
+ tournament: Tournament;
11
+ }
12
+ //# sourceMappingURL=tournament-team-contact-attempt.entity.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tournament-team-contact-attempt.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournament-team-contact-attempts/tournament-team-contact-attempt.entity.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AACnC,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAO5C,qBACa,4BAA4B;IAIvC,EAAE,EAAE,MAAM,CAAC;IAOX,MAAM,EAAE,MAAM,CAAC;IAGf,YAAY,EAAE,MAAM,CAAC;IAOrB,SAAS,EAAE,IAAI,CAAC;IAOhB,SAAS,EAAE,IAAI,CAAC;IAIhB,IAAI,EAAE,IAAI,CAAC;IAIX,UAAU,EAAE,UAAU,CAAC;CACxB"}
@@ -0,0 +1,66 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __decorateClass = (decorators, target, key, kind) => {
4
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
5
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
6
+ if (decorator = decorators[i])
7
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
8
+ if (kind && result) __defProp(target, key, result);
9
+ return result;
10
+ };
11
+ import {
12
+ Column,
13
+ CreateDateColumn,
14
+ Entity,
15
+ JoinColumn,
16
+ ManyToOne,
17
+ PrimaryGeneratedColumn,
18
+ UpdateDateColumn
19
+ } from "typeorm";
20
+ import { Team } from "../../teams/index.js";
21
+ import { Tournament } from "../tournaments/index.js";
22
+ let TournamentTeamContactAttempt = class {
23
+ };
24
+ __decorateClass([
25
+ PrimaryGeneratedColumn({
26
+ comment: "Identificador \xFAnico da tentativa de contato."
27
+ })
28
+ ], TournamentTeamContactAttempt.prototype, "id", 2);
29
+ __decorateClass([
30
+ Column({
31
+ name: "team_id",
32
+ type: "int",
33
+ comment: "Identificador do time que clicou para contatar."
34
+ })
35
+ ], TournamentTeamContactAttempt.prototype, "teamId", 2);
36
+ __decorateClass([
37
+ Column({ name: "tournament_id", type: "int", comment: "Identificador do torneio." })
38
+ ], TournamentTeamContactAttempt.prototype, "tournamentId", 2);
39
+ __decorateClass([
40
+ CreateDateColumn({
41
+ name: "created_at",
42
+ type: "timestamptz",
43
+ comment: "Data/hora em que o contato foi iniciado."
44
+ })
45
+ ], TournamentTeamContactAttempt.prototype, "createdAt", 2);
46
+ __decorateClass([
47
+ UpdateDateColumn({
48
+ name: "updated_at",
49
+ type: "timestamptz",
50
+ comment: "Data/hora da \xFAltima atualiza\xE7\xE3o do registro."
51
+ })
52
+ ], TournamentTeamContactAttempt.prototype, "updatedAt", 2);
53
+ __decorateClass([
54
+ ManyToOne(() => Team, (team) => team.tournamentContactAttempts, { onDelete: "CASCADE" }),
55
+ JoinColumn({ name: "team_id" })
56
+ ], TournamentTeamContactAttempt.prototype, "team", 2);
57
+ __decorateClass([
58
+ ManyToOne(() => Tournament, (tournament) => tournament.contactAttempts, { onDelete: "CASCADE" }),
59
+ JoinColumn({ name: "tournament_id" })
60
+ ], TournamentTeamContactAttempt.prototype, "tournament", 2);
61
+ TournamentTeamContactAttempt = __decorateClass([
62
+ Entity("tournament_team_contact_attempts")
63
+ ], TournamentTeamContactAttempt);
64
+ export {
65
+ TournamentTeamContactAttempt
66
+ };
@@ -14,6 +14,7 @@ import { TournamentPayment } from '../tournament-payments';
14
14
  import { TournamentPlayerRule } from '../tournament-player-rules';
15
15
  import { TournamentPrizeRule } from '../tournament-prize-rules';
16
16
  import { TournamentRule } from '../tournament-rules';
17
+ import { TournamentTeamContactAttempt } from '../tournament-team-contact-attempts';
17
18
  import { TournamentTeam } from '../tournament-teams';
18
19
  export declare class Tournament implements ITournament {
19
20
  id: number;
@@ -53,5 +54,6 @@ export declare class Tournament implements ITournament {
53
54
  brackets: TournamentBracket[];
54
55
  matchRules: TournamentMatchRule[];
55
56
  contacts: TournamentContact[];
57
+ contactAttempts: TournamentTeamContactAttempt[];
56
58
  }
57
59
  //# sourceMappingURL=tournament.entity.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tournament.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournaments/tournament.entity.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"tournament.entity.d.ts","sourceRoot":"","sources":["../../../src/tournaments/tournaments/tournament.entity.ts"],"names":[],"mappings":"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"}
@@ -40,6 +40,7 @@ import { TournamentPayment } from "../tournament-payments/index.js";
40
40
  import { TournamentPlayerRule } from "../tournament-player-rules/index.js";
41
41
  import { TournamentPrizeRule } from "../tournament-prize-rules/index.js";
42
42
  import { TournamentRule } from "../tournament-rules/index.js";
43
+ import { TournamentTeamContactAttempt } from "../tournament-team-contact-attempts/index.js";
43
44
  import { TournamentTeam } from "../tournament-teams/index.js";
44
45
  let Tournament = class {
45
46
  };
@@ -253,6 +254,9 @@ __decorateClass([
253
254
  __decorateClass([
254
255
  OneToMany(() => TournamentContact, (contact) => contact.tournament)
255
256
  ], Tournament.prototype, "contacts", 2);
257
+ __decorateClass([
258
+ OneToMany(() => TournamentTeamContactAttempt, (attempt) => attempt.tournament)
259
+ ], Tournament.prototype, "contactAttempts", 2);
256
260
  Tournament = __decorateClass([
257
261
  Entity("tournaments")
258
262
  ], Tournament);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natrave/shared-entities",
3
- "version": "1.4.8",
3
+ "version": "1.4.10",
4
4
  "description": "Entidades compartilhadass da NaTrave",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.js",