@natrave/shared-entities 1.1.9 → 1.2.1

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 (137) hide show
  1. package/dist/app-auth/index.js +5 -6
  2. package/dist/app-auth/password-resets/index.js +4 -2
  3. package/dist/app-auth/password-resets/password-reset.entity.js +48 -45
  4. package/dist/app-auth/refresh-tokens/index.js +4 -2
  5. package/dist/app-auth/refresh-tokens/refresh-token.entity.js +48 -45
  6. package/dist/app-auth/user-auth-providers/enums/auth-provider.enum.js +9 -7
  7. package/dist/app-auth/user-auth-providers/index.js +6 -3
  8. package/dist/app-auth/user-auth-providers/user-auth-provider.entity.js +53 -50
  9. package/dist/app-auth/user-verifications/enums/verification-type.enum.js +8 -6
  10. package/dist/app-auth/user-verifications/index.js +6 -3
  11. package/dist/app-auth/user-verifications/user-verification.entity.js +57 -57
  12. package/dist/app-auth/users/index.js +4 -2
  13. package/dist/app-auth/users/user.entity.js +123 -133
  14. package/dist/app-auth/users/utils/format-data.utils.js +19 -17
  15. package/dist/common/utils/decimal-transformer.utils.js +15 -14
  16. package/dist/facilities/addresses/address.entity.js +79 -84
  17. package/dist/facilities/addresses/index.js +4 -2
  18. package/dist/facilities/facilities/enums/facility-status.enum.js +9 -7
  19. package/dist/facilities/facilities/facility.entity.js +118 -121
  20. package/dist/facilities/facilities/index.js +6 -3
  21. package/dist/facilities/facilities/utils/sanititze.utils.js +12 -10
  22. package/dist/facilities/facility-images/facility-image.entity.js +60 -56
  23. package/dist/facilities/facility-images/index.js +4 -2
  24. package/dist/facilities/facility-owners/facility-owner.entity.js +64 -62
  25. package/dist/facilities/facility-owners/index.js +4 -2
  26. package/dist/facilities/facility-owners/utils/sanitize.utils.js +10 -8
  27. package/dist/facilities/fields/enums/surface-type.enum.js +11 -9
  28. package/dist/facilities/fields/field.entity.js +69 -69
  29. package/dist/facilities/fields/index.js +6 -3
  30. package/dist/facilities/index.js +5 -6
  31. package/dist/index.js +4 -5
  32. package/dist/payments/index.js +3 -4
  33. package/dist/payments/payment-providers/enums/payment-provider-name.enum.js +7 -5
  34. package/dist/payments/payment-providers/index.js +6 -3
  35. package/dist/payments/payment-providers/payment-provider.entity.js +57 -47
  36. package/dist/payments/payments/enums/payment-method.enum.js +8 -6
  37. package/dist/payments/payments/enums/payment-status.enum.js +13 -11
  38. package/dist/payments/payments/index.js +8 -4
  39. package/dist/payments/payments/payment.entity.js +79 -82
  40. package/dist/payments/user-payment-providers/index.js +4 -2
  41. package/dist/payments/user-payment-providers/user-payment-provider.entity.js +62 -58
  42. package/dist/tournaments/index.js +12 -13
  43. package/dist/tournaments/tournament-facilities/index.js +4 -2
  44. package/dist/tournaments/tournament-facilities/tournament-facility.entity.js +62 -58
  45. package/dist/tournaments/tournament-format-configs/index.js +4 -2
  46. package/dist/tournaments/tournament-format-configs/tournament-format-config.entity.js +70 -73
  47. package/dist/tournaments/tournament-match-cards/index.js +4 -2
  48. package/dist/tournaments/tournament-match-cards/tournament-match-card.entity.js +74 -72
  49. package/dist/tournaments/tournament-match-goals/index.js +4 -2
  50. package/dist/tournaments/tournament-match-goals/tournament-match-goal.entity.js +74 -76
  51. package/dist/tournaments/tournament-match-schemas/index.js +4 -2
  52. package/dist/tournaments/tournament-match-schemas/tournament-match-schema.entity.js +47 -44
  53. package/dist/tournaments/tournament-matches/index.js +4 -2
  54. package/dist/tournaments/tournament-matches/tournament-match.entity.js +89 -94
  55. package/dist/tournaments/tournament-payments/index.js +4 -2
  56. package/dist/tournaments/tournament-payments/tournament-payment.entity.js +57 -56
  57. package/dist/tournaments/tournament-players/index.js +4 -2
  58. package/dist/tournaments/tournament-players/tournament-player.entity.js +75 -73
  59. package/dist/tournaments/tournament-prize-rules/index.js +4 -2
  60. package/dist/tournaments/tournament-prize-rules/tournament-prize-rule.entity.js +56 -52
  61. package/dist/tournaments/tournament-rules/index.js +4 -2
  62. package/dist/tournaments/tournament-rules/tournament-rule.entity.js +73 -74
  63. package/dist/tournaments/tournament-teams/enums/tournament-team-status.enum.js +8 -6
  64. package/dist/tournaments/tournament-teams/index.js +6 -3
  65. package/dist/tournaments/tournament-teams/tournament-team.entity.js +93 -97
  66. package/dist/tournaments/tournament-teams/utils/invite-code-generator.js +5 -3
  67. package/dist/tournaments/tournaments/index.js +4 -2
  68. package/dist/tournaments/tournaments/tournament.entity.js +129 -144
  69. package/package.json +6 -2
  70. package/dist/app-auth/index.js.map +0 -1
  71. package/dist/app-auth/password-resets/index.js.map +0 -1
  72. package/dist/app-auth/password-resets/password-reset.entity.js.map +0 -1
  73. package/dist/app-auth/refresh-tokens/index.js.map +0 -1
  74. package/dist/app-auth/refresh-tokens/refresh-token.entity.js.map +0 -1
  75. package/dist/app-auth/user-auth-providers/enums/auth-provider.enum.js.map +0 -1
  76. package/dist/app-auth/user-auth-providers/index.js.map +0 -1
  77. package/dist/app-auth/user-auth-providers/user-auth-provider.entity.js.map +0 -1
  78. package/dist/app-auth/user-verifications/enums/verification-type.enum.js.map +0 -1
  79. package/dist/app-auth/user-verifications/index.js.map +0 -1
  80. package/dist/app-auth/user-verifications/user-verification.entity.js.map +0 -1
  81. package/dist/app-auth/users/index.js.map +0 -1
  82. package/dist/app-auth/users/user.entity.js.map +0 -1
  83. package/dist/app-auth/users/utils/format-data.utils.js.map +0 -1
  84. package/dist/common/utils/decimal-transformer.utils.js.map +0 -1
  85. package/dist/facilities/addresses/address.entity.js.map +0 -1
  86. package/dist/facilities/addresses/index.js.map +0 -1
  87. package/dist/facilities/facilities/enums/facility-status.enum.js.map +0 -1
  88. package/dist/facilities/facilities/facility.entity.js.map +0 -1
  89. package/dist/facilities/facilities/index.js.map +0 -1
  90. package/dist/facilities/facilities/utils/sanititze.utils.js.map +0 -1
  91. package/dist/facilities/facility-images/facility-image.entity.js.map +0 -1
  92. package/dist/facilities/facility-images/index.js.map +0 -1
  93. package/dist/facilities/facility-owners/facility-owner.entity.js.map +0 -1
  94. package/dist/facilities/facility-owners/index.js.map +0 -1
  95. package/dist/facilities/facility-owners/utils/sanitize.utils.js.map +0 -1
  96. package/dist/facilities/fields/enums/surface-type.enum.js.map +0 -1
  97. package/dist/facilities/fields/field.entity.js.map +0 -1
  98. package/dist/facilities/fields/index.js.map +0 -1
  99. package/dist/facilities/index.js.map +0 -1
  100. package/dist/index.js.map +0 -1
  101. package/dist/payments/index.js.map +0 -1
  102. package/dist/payments/payment-providers/enums/payment-provider-name.enum.js.map +0 -1
  103. package/dist/payments/payment-providers/index.js.map +0 -1
  104. package/dist/payments/payment-providers/payment-provider.entity.js.map +0 -1
  105. package/dist/payments/payments/enums/payment-method.enum.js.map +0 -1
  106. package/dist/payments/payments/enums/payment-status.enum.js.map +0 -1
  107. package/dist/payments/payments/index.js.map +0 -1
  108. package/dist/payments/payments/payment.entity.js.map +0 -1
  109. package/dist/payments/user-payment-providers/index.js.map +0 -1
  110. package/dist/payments/user-payment-providers/user-payment-provider.entity.js.map +0 -1
  111. package/dist/tournaments/index.js.map +0 -1
  112. package/dist/tournaments/tournament-facilities/index.js.map +0 -1
  113. package/dist/tournaments/tournament-facilities/tournament-facility.entity.js.map +0 -1
  114. package/dist/tournaments/tournament-format-configs/index.js.map +0 -1
  115. package/dist/tournaments/tournament-format-configs/tournament-format-config.entity.js.map +0 -1
  116. package/dist/tournaments/tournament-match-cards/index.js.map +0 -1
  117. package/dist/tournaments/tournament-match-cards/tournament-match-card.entity.js.map +0 -1
  118. package/dist/tournaments/tournament-match-goals/index.js.map +0 -1
  119. package/dist/tournaments/tournament-match-goals/tournament-match-goal.entity.js.map +0 -1
  120. package/dist/tournaments/tournament-match-schemas/index.js.map +0 -1
  121. package/dist/tournaments/tournament-match-schemas/tournament-match-schema.entity.js.map +0 -1
  122. package/dist/tournaments/tournament-matches/index.js.map +0 -1
  123. package/dist/tournaments/tournament-matches/tournament-match.entity.js.map +0 -1
  124. package/dist/tournaments/tournament-payments/index.js.map +0 -1
  125. package/dist/tournaments/tournament-payments/tournament-payment.entity.js.map +0 -1
  126. package/dist/tournaments/tournament-players/index.js.map +0 -1
  127. package/dist/tournaments/tournament-players/tournament-player.entity.js.map +0 -1
  128. package/dist/tournaments/tournament-prize-rules/index.js.map +0 -1
  129. package/dist/tournaments/tournament-prize-rules/tournament-prize-rule.entity.js.map +0 -1
  130. package/dist/tournaments/tournament-rules/index.js.map +0 -1
  131. package/dist/tournaments/tournament-rules/tournament-rule.entity.js.map +0 -1
  132. package/dist/tournaments/tournament-teams/enums/tournament-team-status.enum.js.map +0 -1
  133. package/dist/tournaments/tournament-teams/index.js.map +0 -1
  134. package/dist/tournaments/tournament-teams/tournament-team.entity.js.map +0 -1
  135. package/dist/tournaments/tournament-teams/utils/invite-code-generator.js.map +0 -1
  136. package/dist/tournaments/tournaments/index.js.map +0 -1
  137. package/dist/tournaments/tournaments/tournament.entity.js.map +0 -1
@@ -1,100 +1,96 @@
1
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
- return c > 3 && r && Object.defineProperty(target, key, r), r;
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;
6
10
  };
7
- var __metadata = (this && this.__metadata) || function (k, v) {
8
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
11
+ import {
12
+ BeforeInsert,
13
+ Column,
14
+ CreateDateColumn,
15
+ Entity,
16
+ Index,
17
+ JoinColumn,
18
+ ManyToOne,
19
+ OneToMany,
20
+ PrimaryGeneratedColumn,
21
+ Unique,
22
+ UpdateDateColumn
23
+ } from "typeorm";
24
+ import { TournamentMatchCard } from "../tournament-match-cards";
25
+ import { TournamentMatchGoal } from "../tournament-match-goals";
26
+ import { TournamentMatch } from "../tournament-matches";
27
+ import { TournamentPlayer } from "../tournament-players";
28
+ import { Tournament } from "../tournaments";
29
+ import { TournamentTeamStatus } from "./enums/tournament-team-status.enum.js";
30
+ import { generateRandomInviteCode } from "./utils/invite-code-generator.js";
31
+ let TournamentTeam = class {
32
+ generateInviteCode() {
33
+ this.inviteCode = generateRandomInviteCode();
34
+ }
9
35
  };
10
- import { BeforeInsert, Column, CreateDateColumn, Entity, Index, JoinColumn, ManyToOne, OneToMany, PrimaryGeneratedColumn, Unique, UpdateDateColumn, } from 'typeorm';
11
- import { TournamentMatchCard } from '../tournament-match-cards';
12
- import { TournamentMatchGoal } from '../tournament-match-goals';
13
- import { TournamentMatch } from '../tournament-matches';
14
- import { TournamentPlayer } from '../tournament-players';
15
- import { Tournament } from '../tournaments';
16
- import { TournamentTeamStatus } from './enums/tournament-team-status.enum';
17
- import { generateRandomInviteCode } from './utils/invite-code-generator';
18
- let TournamentTeam = class TournamentTeam {
19
- generateInviteCode() {
20
- this.inviteCode = generateRandomInviteCode();
21
- }
22
- };
23
- __decorate([
24
- PrimaryGeneratedColumn(),
25
- __metadata("design:type", Number)
26
- ], TournamentTeam.prototype, "id", void 0);
27
- __decorate([
28
- Column({ name: 'tournament_id', type: 'int' }),
29
- __metadata("design:type", Number)
30
- ], TournamentTeam.prototype, "tournamentId", void 0);
31
- __decorate([
32
- Column({ type: 'varchar', length: 100 }),
33
- __metadata("design:type", String)
34
- ], TournamentTeam.prototype, "name", void 0);
35
- __decorate([
36
- Column({ name: 'team_logo_url', type: 'text', nullable: true }),
37
- __metadata("design:type", String)
38
- ], TournamentTeam.prototype, "teamLogoUrl", void 0);
39
- __decorate([
40
- Column({ type: 'varchar', length: 255, nullable: true }),
41
- __metadata("design:type", String)
42
- ], TournamentTeam.prototype, "description", void 0);
43
- __decorate([
44
- Column({ name: 'invite_code', type: 'varchar', length: 5, unique: true }),
45
- __metadata("design:type", String)
46
- ], TournamentTeam.prototype, "inviteCode", void 0);
47
- __decorate([
48
- Column({ type: 'enum', enum: TournamentTeamStatus, default: TournamentTeamStatus.DEFAULT }),
49
- __metadata("design:type", String)
50
- ], TournamentTeam.prototype, "status", void 0);
51
- __decorate([
52
- CreateDateColumn({ name: 'created_at', type: 'timestamptz' }),
53
- __metadata("design:type", Date)
54
- ], TournamentTeam.prototype, "createdAt", void 0);
55
- __decorate([
56
- UpdateDateColumn({ name: 'updated_at', type: 'timestamptz' }),
57
- __metadata("design:type", Date)
58
- ], TournamentTeam.prototype, "updatedAt", void 0);
59
- __decorate([
60
- ManyToOne(() => Tournament, (tournament) => tournament.teams, {
61
- onDelete: 'CASCADE',
62
- }),
63
- JoinColumn({ name: 'tournament_id' }),
64
- __metadata("design:type", Tournament)
65
- ], TournamentTeam.prototype, "tournament", void 0);
66
- __decorate([
67
- OneToMany(() => TournamentPlayer, (player) => player.team),
68
- __metadata("design:type", Array)
69
- ], TournamentTeam.prototype, "players", void 0);
70
- __decorate([
71
- OneToMany(() => TournamentMatch, (match) => match.homeTeam),
72
- __metadata("design:type", Array)
73
- ], TournamentTeam.prototype, "homeMatches", void 0);
74
- __decorate([
75
- OneToMany(() => TournamentMatch, (match) => match.awayTeam),
76
- __metadata("design:type", Array)
77
- ], TournamentTeam.prototype, "awayMatches", void 0);
78
- __decorate([
79
- OneToMany(() => TournamentMatchGoal, (goal) => goal.team),
80
- __metadata("design:type", Array)
81
- ], TournamentTeam.prototype, "goals", void 0);
82
- __decorate([
83
- OneToMany(() => TournamentMatchCard, (card) => card.team),
84
- __metadata("design:type", Array)
85
- ], TournamentTeam.prototype, "cards", void 0);
86
- __decorate([
87
- BeforeInsert(),
88
- __metadata("design:type", Function),
89
- __metadata("design:paramtypes", []),
90
- __metadata("design:returntype", void 0)
91
- ], TournamentTeam.prototype, "generateInviteCode", null);
92
- TournamentTeam = __decorate([
93
- Entity('tournament_teams'),
94
- Unique(['tournamentId', 'name']),
95
- Unique(['inviteCode']),
96
- Index('IDX_tournament_team_tournament_id', ['tournamentId']),
97
- Index('IDX_tournament_team_invite_code', ['inviteCode'])
36
+ __decorateClass([
37
+ PrimaryGeneratedColumn()
38
+ ], TournamentTeam.prototype, "id", 2);
39
+ __decorateClass([
40
+ Column({ name: "tournament_id", type: "int" })
41
+ ], TournamentTeam.prototype, "tournamentId", 2);
42
+ __decorateClass([
43
+ Column({ type: "varchar", length: 100 })
44
+ ], TournamentTeam.prototype, "name", 2);
45
+ __decorateClass([
46
+ Column({ name: "team_logo_url", type: "text", nullable: true })
47
+ ], TournamentTeam.prototype, "teamLogoUrl", 2);
48
+ __decorateClass([
49
+ Column({ type: "varchar", length: 255, nullable: true })
50
+ ], TournamentTeam.prototype, "description", 2);
51
+ __decorateClass([
52
+ Column({ name: "invite_code", type: "varchar", length: 5, unique: true })
53
+ ], TournamentTeam.prototype, "inviteCode", 2);
54
+ __decorateClass([
55
+ Column({ type: "enum", enum: TournamentTeamStatus, default: TournamentTeamStatus.DEFAULT })
56
+ ], TournamentTeam.prototype, "status", 2);
57
+ __decorateClass([
58
+ CreateDateColumn({ name: "created_at", type: "timestamptz" })
59
+ ], TournamentTeam.prototype, "createdAt", 2);
60
+ __decorateClass([
61
+ UpdateDateColumn({ name: "updated_at", type: "timestamptz" })
62
+ ], TournamentTeam.prototype, "updatedAt", 2);
63
+ __decorateClass([
64
+ ManyToOne(() => Tournament, (tournament) => tournament.teams, {
65
+ onDelete: "CASCADE"
66
+ }),
67
+ JoinColumn({ name: "tournament_id" })
68
+ ], TournamentTeam.prototype, "tournament", 2);
69
+ __decorateClass([
70
+ OneToMany(() => TournamentPlayer, (player) => player.team)
71
+ ], TournamentTeam.prototype, "players", 2);
72
+ __decorateClass([
73
+ OneToMany(() => TournamentMatch, (match) => match.homeTeam)
74
+ ], TournamentTeam.prototype, "homeMatches", 2);
75
+ __decorateClass([
76
+ OneToMany(() => TournamentMatch, (match) => match.awayTeam)
77
+ ], TournamentTeam.prototype, "awayMatches", 2);
78
+ __decorateClass([
79
+ OneToMany(() => TournamentMatchGoal, (goal) => goal.team)
80
+ ], TournamentTeam.prototype, "goals", 2);
81
+ __decorateClass([
82
+ OneToMany(() => TournamentMatchCard, (card) => card.team)
83
+ ], TournamentTeam.prototype, "cards", 2);
84
+ __decorateClass([
85
+ BeforeInsert()
86
+ ], TournamentTeam.prototype, "generateInviteCode", 1);
87
+ TournamentTeam = __decorateClass([
88
+ Entity("tournament_teams"),
89
+ Unique(["tournamentId", "name"]),
90
+ Unique(["inviteCode"]),
91
+ Index("IDX_tournament_team_tournament_id", ["tournamentId"]),
92
+ Index("IDX_tournament_team_invite_code", ["inviteCode"])
98
93
  ], TournamentTeam);
99
- export { TournamentTeam };
100
- //# sourceMappingURL=tournament-team.entity.js.map
94
+ export {
95
+ TournamentTeam
96
+ };
@@ -1,4 +1,6 @@
1
- export function generateRandomInviteCode() {
2
- return Math.floor(10000 + Math.random() * 90000).toString();
1
+ function generateRandomInviteCode() {
2
+ return Math.floor(1e4 + Math.random() * 9e4).toString();
3
3
  }
4
- //# sourceMappingURL=invite-code-generator.js.map
4
+ export {
5
+ generateRandomInviteCode
6
+ };
@@ -1,2 +1,4 @@
1
- export { Tournament } from './tournament.entity';
2
- //# sourceMappingURL=index.js.map
1
+ import { Tournament } from "./tournament.entity.js";
2
+ export {
3
+ Tournament
4
+ };
@@ -1,147 +1,132 @@
1
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
- return c > 3 && r && Object.defineProperty(target, key, r), r;
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;
6
10
  };
7
- var __metadata = (this && this.__metadata) || function (k, v) {
8
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
11
+ import { DayOfWeek, TournamentGender } from "@natrave/tournaments-service-types";
12
+ import {
13
+ Column,
14
+ CreateDateColumn,
15
+ Entity,
16
+ JoinColumn,
17
+ ManyToOne,
18
+ OneToMany,
19
+ OneToOne,
20
+ PrimaryGeneratedColumn,
21
+ UpdateDateColumn
22
+ } from "typeorm";
23
+ import { TournamentFacility } from "../tournament-facilities";
24
+ import { TournamentFormatConfig } from "../tournament-format-configs";
25
+ import { TournamentMatchSchema } from "../tournament-match-schemas";
26
+ import { TournamentMatch } from "../tournament-matches";
27
+ import { TournamentPayment } from "../tournament-payments";
28
+ import { TournamentPrizeRule } from "../tournament-prize-rules";
29
+ import { TournamentRule } from "../tournament-rules";
30
+ import { TournamentTeam } from "../tournament-teams";
31
+ let Tournament = class {
9
32
  };
10
- import { DayOfWeek, TournamentGender } from '@natrave/tournaments-service-types';
11
- import { Column, CreateDateColumn, Entity, JoinColumn, ManyToOne, OneToMany, OneToOne, PrimaryGeneratedColumn, UpdateDateColumn, } from 'typeorm';
12
- import { TournamentFacility } from '../tournament-facilities';
13
- import { TournamentFormatConfig } from '../tournament-format-configs';
14
- import { TournamentMatchSchema } from '../tournament-match-schemas';
15
- import { TournamentMatch } from '../tournament-matches';
16
- import { TournamentPayment } from '../tournament-payments';
17
- import { TournamentPrizeRule } from '../tournament-prize-rules';
18
- import { TournamentRule } from '../tournament-rules';
19
- import { TournamentTeam } from '../tournament-teams';
20
- let Tournament = class Tournament {
21
- };
22
- __decorate([
23
- PrimaryGeneratedColumn(),
24
- __metadata("design:type", Number)
25
- ], Tournament.prototype, "id", void 0);
26
- __decorate([
27
- Column({ type: 'varchar', length: 255 }),
28
- __metadata("design:type", String)
29
- ], Tournament.prototype, "name", void 0);
30
- __decorate([
31
- Column({ name: 'initial_date', type: 'timestamptz' }),
32
- __metadata("design:type", Date)
33
- ], Tournament.prototype, "initialDate", void 0);
34
- __decorate([
35
- Column({ name: 'end_date', type: 'timestamptz' }),
36
- __metadata("design:type", Date)
37
- ], Tournament.prototype, "endDate", void 0);
38
- __decorate([
39
- Column({ type: 'text', nullable: true }),
40
- __metadata("design:type", Object)
41
- ], Tournament.prototype, "description", void 0);
42
- __decorate([
43
- Column({ name: 'tournament_image', type: 'text', nullable: true }),
44
- __metadata("design:type", Object)
45
- ], Tournament.prototype, "tournamentImage", void 0);
46
- __decorate([
47
- Column({ name: 'match_schema_id', type: 'int', nullable: true }),
48
- __metadata("design:type", Object)
49
- ], Tournament.prototype, "matchSchemaId", void 0);
50
- __decorate([
51
- Column({ name: 'rule_id', type: 'int' }),
52
- __metadata("design:type", Number)
53
- ], Tournament.prototype, "ruleId", void 0);
54
- __decorate([
55
- Column({ name: 'format_config_id', type: 'int' }),
56
- __metadata("design:type", Number)
57
- ], Tournament.prototype, "formatConfigId", void 0);
58
- __decorate([
59
- Column({
60
- name: 'match_days',
61
- type: 'enum',
62
- enum: Object.values(DayOfWeek),
63
- array: true,
64
- }),
65
- __metadata("design:type", Array)
66
- ], Tournament.prototype, "matchDays", void 0);
67
- __decorate([
68
- Column({ name: 'price_per_team', type: 'int' }),
69
- __metadata("design:type", Number)
70
- ], Tournament.prototype, "pricePerTeam", void 0);
71
- __decorate([
72
- Column({ name: 'match_start_time', type: 'time' }),
73
- __metadata("design:type", String)
74
- ], Tournament.prototype, "matchStartTime", void 0);
75
- __decorate([
76
- Column({ name: 'match_end_time', type: 'time' }),
77
- __metadata("design:type", String)
78
- ], Tournament.prototype, "matchEndTime", void 0);
79
- __decorate([
80
- Column({ type: 'varchar', length: 100 }),
81
- __metadata("design:type", String)
82
- ], Tournament.prototype, "city", void 0);
83
- __decorate([
84
- Column({ type: 'varchar', length: 2 }),
85
- __metadata("design:type", String)
86
- ], Tournament.prototype, "state", void 0);
87
- __decorate([
88
- Column({
89
- type: 'enum',
90
- enum: Object.values(TournamentGender),
91
- }),
92
- __metadata("design:type", String)
93
- ], Tournament.prototype, "gender", void 0);
94
- __decorate([
95
- Column({ name: 'deleted_at', type: 'timestamptz', nullable: true }),
96
- __metadata("design:type", Object)
97
- ], Tournament.prototype, "deletedAt", void 0);
98
- __decorate([
99
- CreateDateColumn({ name: 'created_at', type: 'timestamptz' }),
100
- __metadata("design:type", Date)
101
- ], Tournament.prototype, "createdAt", void 0);
102
- __decorate([
103
- UpdateDateColumn({ name: 'updated_at', type: 'timestamptz' }),
104
- __metadata("design:type", Date)
105
- ], Tournament.prototype, "updatedAt", void 0);
106
- __decorate([
107
- ManyToOne(() => TournamentMatchSchema, (matchSchema) => matchSchema.tournaments, {
108
- onDelete: 'CASCADE',
109
- }),
110
- JoinColumn({ name: 'match_schema_id' }),
111
- __metadata("design:type", TournamentMatchSchema)
112
- ], Tournament.prototype, "matchSchema", void 0);
113
- __decorate([
114
- OneToMany(() => TournamentTeam, (team) => team.tournament),
115
- __metadata("design:type", Array)
116
- ], Tournament.prototype, "teams", void 0);
117
- __decorate([
118
- OneToOne(() => TournamentRule, (rule) => rule.tournament, { cascade: true }),
119
- JoinColumn({ name: 'rule_id' }),
120
- __metadata("design:type", TournamentRule)
121
- ], Tournament.prototype, "rule", void 0);
122
- __decorate([
123
- OneToOne(() => TournamentFormatConfig, (format) => format.tournament, { cascade: true }),
124
- JoinColumn({ name: 'format_config_id' }),
125
- __metadata("design:type", TournamentFormatConfig)
126
- ], Tournament.prototype, "format", void 0);
127
- __decorate([
128
- OneToMany(() => TournamentPrizeRule, (prizeRule) => prizeRule.tournament),
129
- __metadata("design:type", Array)
130
- ], Tournament.prototype, "prizeRules", void 0);
131
- __decorate([
132
- OneToMany(() => TournamentPayment, (payment) => payment.tournament),
133
- __metadata("design:type", Array)
134
- ], Tournament.prototype, "payments", void 0);
135
- __decorate([
136
- OneToMany(() => TournamentMatch, (match) => match.tournament),
137
- __metadata("design:type", Array)
138
- ], Tournament.prototype, "matches", void 0);
139
- __decorate([
140
- OneToMany(() => TournamentFacility, (facility) => facility.tournament),
141
- __metadata("design:type", Array)
142
- ], Tournament.prototype, "tournamentFacilities", void 0);
143
- Tournament = __decorate([
144
- Entity('tournaments')
33
+ __decorateClass([
34
+ PrimaryGeneratedColumn()
35
+ ], Tournament.prototype, "id", 2);
36
+ __decorateClass([
37
+ Column({ type: "varchar", length: 255 })
38
+ ], Tournament.prototype, "name", 2);
39
+ __decorateClass([
40
+ Column({ name: "initial_date", type: "timestamptz" })
41
+ ], Tournament.prototype, "initialDate", 2);
42
+ __decorateClass([
43
+ Column({ name: "end_date", type: "timestamptz" })
44
+ ], Tournament.prototype, "endDate", 2);
45
+ __decorateClass([
46
+ Column({ type: "text", nullable: true })
47
+ ], Tournament.prototype, "description", 2);
48
+ __decorateClass([
49
+ Column({ name: "tournament_image", type: "text", nullable: true })
50
+ ], Tournament.prototype, "tournamentImage", 2);
51
+ __decorateClass([
52
+ Column({ name: "match_schema_id", type: "int", nullable: true })
53
+ ], Tournament.prototype, "matchSchemaId", 2);
54
+ __decorateClass([
55
+ Column({ name: "rule_id", type: "int" })
56
+ ], Tournament.prototype, "ruleId", 2);
57
+ __decorateClass([
58
+ Column({ name: "format_config_id", type: "int" })
59
+ ], Tournament.prototype, "formatConfigId", 2);
60
+ __decorateClass([
61
+ Column({
62
+ name: "match_days",
63
+ type: "enum",
64
+ enum: Object.values(DayOfWeek),
65
+ array: true
66
+ })
67
+ ], Tournament.prototype, "matchDays", 2);
68
+ __decorateClass([
69
+ Column({ name: "price_per_team", type: "int" })
70
+ ], Tournament.prototype, "pricePerTeam", 2);
71
+ __decorateClass([
72
+ Column({ name: "match_start_time", type: "time" })
73
+ ], Tournament.prototype, "matchStartTime", 2);
74
+ __decorateClass([
75
+ Column({ name: "match_end_time", type: "time" })
76
+ ], Tournament.prototype, "matchEndTime", 2);
77
+ __decorateClass([
78
+ Column({ type: "varchar", length: 100 })
79
+ ], Tournament.prototype, "city", 2);
80
+ __decorateClass([
81
+ Column({ type: "varchar", length: 2 })
82
+ ], Tournament.prototype, "state", 2);
83
+ __decorateClass([
84
+ Column({
85
+ type: "enum",
86
+ enum: Object.values(TournamentGender)
87
+ })
88
+ ], Tournament.prototype, "gender", 2);
89
+ __decorateClass([
90
+ Column({ name: "deleted_at", type: "timestamptz", nullable: true })
91
+ ], Tournament.prototype, "deletedAt", 2);
92
+ __decorateClass([
93
+ CreateDateColumn({ name: "created_at", type: "timestamptz" })
94
+ ], Tournament.prototype, "createdAt", 2);
95
+ __decorateClass([
96
+ UpdateDateColumn({ name: "updated_at", type: "timestamptz" })
97
+ ], Tournament.prototype, "updatedAt", 2);
98
+ __decorateClass([
99
+ ManyToOne(() => TournamentMatchSchema, (matchSchema) => matchSchema.tournaments, {
100
+ onDelete: "CASCADE"
101
+ }),
102
+ JoinColumn({ name: "match_schema_id" })
103
+ ], Tournament.prototype, "matchSchema", 2);
104
+ __decorateClass([
105
+ OneToMany(() => TournamentTeam, (team) => team.tournament)
106
+ ], Tournament.prototype, "teams", 2);
107
+ __decorateClass([
108
+ OneToOne(() => TournamentRule, (rule) => rule.tournament, { cascade: true }),
109
+ JoinColumn({ name: "rule_id" })
110
+ ], Tournament.prototype, "rule", 2);
111
+ __decorateClass([
112
+ OneToOne(() => TournamentFormatConfig, (format) => format.tournament, { cascade: true }),
113
+ JoinColumn({ name: "format_config_id" })
114
+ ], Tournament.prototype, "format", 2);
115
+ __decorateClass([
116
+ OneToMany(() => TournamentPrizeRule, (prizeRule) => prizeRule.tournament)
117
+ ], Tournament.prototype, "prizeRules", 2);
118
+ __decorateClass([
119
+ OneToMany(() => TournamentPayment, (payment) => payment.tournament)
120
+ ], Tournament.prototype, "payments", 2);
121
+ __decorateClass([
122
+ OneToMany(() => TournamentMatch, (match) => match.tournament)
123
+ ], Tournament.prototype, "matches", 2);
124
+ __decorateClass([
125
+ OneToMany(() => TournamentFacility, (facility) => facility.tournament)
126
+ ], Tournament.prototype, "tournamentFacilities", 2);
127
+ Tournament = __decorateClass([
128
+ Entity("tournaments")
145
129
  ], Tournament);
146
- export { Tournament };
147
- //# sourceMappingURL=tournament.entity.js.map
130
+ export {
131
+ Tournament
132
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natrave/shared-entities",
3
- "version": "1.1.9",
3
+ "version": "1.2.1",
4
4
  "description": "Entidades compartilhadass da NaTrave",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.js",
@@ -29,12 +29,14 @@
29
29
  "@eslint/js": "^9.23.0",
30
30
  "@typescript-eslint/eslint-plugin": "^8.28.0",
31
31
  "@typescript-eslint/parser": "^8.28.0",
32
+ "esbuild": "^0.25.1",
32
33
  "eslint": "^9.23.0",
33
34
  "eslint-config-prettier": "^10.1.1",
34
35
  "eslint-import-resolver-typescript": "^4.2.4",
35
36
  "eslint-plugin-import": "^2.31.0",
36
37
  "eslint-plugin-prettier": "^5.2.5",
37
38
  "eslint-plugin-unused-imports": "^4.1.4",
39
+ "glob": "^11.0.1",
38
40
  "husky": "^9.1.7",
39
41
  "lint-staged": "^15.5.0",
40
42
  "prettier": "^3.5.3",
@@ -46,7 +48,9 @@
46
48
  "typeorm": "^0.3.21"
47
49
  },
48
50
  "scripts": {
49
- "build": "tsc",
51
+ "build:types": "tsc --emitDeclarationOnly",
52
+ "build:js": "node build.js",
53
+ "build": "pnpm run build:types && pnpm run build:js",
50
54
  "clean": "rm -rf dist",
51
55
  "lint": "eslint src --ext .ts",
52
56
  "check:types": "tsc --noEmit"
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/app-auth/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,uBAAuB,CAAC;AACtC,cAAc,sBAAsB,CAAC;AACrC,cAAc,SAAS,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/app-auth/password-resets/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"password-reset.entity.js","sourceRoot":"","sources":["../../../src/app-auth/password-resets/password-reset.entity.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,MAAM,EACN,gBAAgB,EAChB,MAAM,EACN,UAAU,EACV,SAAS,EACT,sBAAsB,EACtB,MAAM,GACP,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,IAAI,EAAE,MAAM,UAAU,CAAC;AAczB,IAAM,aAAa,GAAnB,MAAM,aAAa;CA2BzB,CAAA;AAzBC;IADC,sBAAsB,EAAE;;yCACd;AAGX;IADC,gBAAgB,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACnD,IAAI;gDAAC;AAGhB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACzC,IAAI;gDAAC;AAGhB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC7C;AAGpB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;6CAC3B;AAGf;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;4CAC3B;AASd;IAFC,SAAS,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,cAAc,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;IAC7E,UAAU,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,IAAI;2CAAC;AA1BA,aAAa;IAFzB,MAAM,CAAC,iBAAiB,CAAC;IACzB,MAAM,CAAC,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;GACf,aAAa,CA2BzB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/app-auth/refresh-tokens/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"refresh-token.entity.js","sourceRoot":"","sources":["../../../src/app-auth/refresh-tokens/refresh-token.entity.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,MAAM,EACN,gBAAgB,EAChB,MAAM,EACN,UAAU,EACV,SAAS,EACT,sBAAsB,EACtB,MAAM,GACP,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,IAAI,EAAE,MAAM,UAAU,CAAC;AAczB,IAAM,YAAY,GAAlB,MAAM,YAAY;CA2BxB,CAAA;AAzBC;IADC,sBAAsB,CAAC,MAAM,CAAC;;wCACpB;AAGX;IADC,gBAAgB,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACnD,IAAI;+CAAC;AAGhB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACzC,IAAI;+CAAC;AAGhB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC7C;AAGvB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;;2CACzC;AAGd;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;4CAC3B;AASf;IAFC,SAAS,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,aAAa,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;IAC5E,UAAU,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,IAAI;0CAAC;AA1BA,YAAY;IAFxB,MAAM,CAAC,gBAAgB,CAAC;IACxB,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;GACL,YAAY,CA2BxB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"auth-provider.enum.js","sourceRoot":"","sources":["../../../../src/app-auth/user-auth-providers/enums/auth-provider.enum.ts"],"names":[],"mappings":"AAQA,MAAM,CAAN,IAAY,YAeX;AAfD,WAAY,YAAY;IAItB,iCAAiB,CAAA;IAKjB,6BAAa,CAAA;IAKb,+BAAe,CAAA;AACjB,CAAC,EAfW,YAAY,KAAZ,YAAY,QAevB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/app-auth/user-auth-providers/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAE1D,OAAO,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"user-auth-provider.entity.js","sourceRoot":"","sources":["../../../src/app-auth/user-auth-providers/user-auth-provider.entity.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,MAAM,EACN,gBAAgB,EAChB,MAAM,EACN,UAAU,EACV,SAAS,EACT,sBAAsB,EACtB,MAAM,EACN,gBAAgB,GACjB,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,IAAI,EAAE,MAAM,UAAU,CAAC;AAEhC,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAcnD,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CA8B5B,CAAA;AA5BC;IADC,sBAAsB,EAAE;;4CACd;AAGX;IADC,gBAAgB,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACnD,IAAI;mDAAC;AAGhB;IADC,gBAAgB,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACnD,IAAI;mDAAC;AAGhB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;gDAC3B;AAGf;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC;;kDACtB;AAGvB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;wDAC5B;AAGvB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACpC;AAS7B;IAFC,SAAS,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,iBAAiB,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;IAChF,UAAU,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,IAAI;8CAAC;AA7BA,gBAAgB;IAF5B,MAAM,CAAC,qBAAqB,CAAC;IAC7B,MAAM,CAAC,CAAC,UAAU,EAAE,gBAAgB,CAAC,CAAC;GAC1B,gBAAgB,CA8B5B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"verification-type.enum.js","sourceRoot":"","sources":["../../../../src/app-auth/user-verifications/enums/verification-type.enum.ts"],"names":[],"mappings":"AAQA,MAAM,CAAN,IAAY,gBAUX;AAVD,WAAY,gBAAgB;IAI1B,mCAAe,CAAA;IAKf,mCAAe,CAAA;AACjB,CAAC,EAVW,gBAAgB,KAAhB,gBAAgB,QAU3B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/app-auth/user-verifications/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAElE,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"user-verification.entity.js","sourceRoot":"","sources":["../../../src/app-auth/user-verifications/user-verification.entity.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,MAAM,EACN,gBAAgB,EAChB,MAAM,EACN,UAAU,EACV,SAAS,EACT,sBAAsB,EACtB,gBAAgB,GACjB,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,IAAI,EAAE,MAAM,UAAU,CAAC;AAEhC,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAa3D,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CAoC5B,CAAA;AAlCC;IADC,sBAAsB,EAAE;;4CACd;AAGX;IADC,gBAAgB,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACnD,IAAI;mDAAC;AAGhB;IADC,gBAAgB,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACnD,IAAI;mDAAC;AAGhB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACzC,IAAI;mDAAC;AAGhB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC7C;AAGxB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC;;mDACzB;AAGnB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;;+CACzC;AAGd;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;gDAC3B;AAGf;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;;8CAC1B;AASvB;IAFC,SAAS,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,aAAa,EAAE,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC;IAC5E,UAAU,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;8BAC1B,IAAI;8CAAC;AAnCA,gBAAgB;IAD5B,MAAM,CAAC,oBAAoB,CAAC;GAChB,gBAAgB,CAoC5B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/app-auth/users/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"user.entity.js","sourceRoot":"","sources":["../../../src/app-auth/users/user.entity.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"format-data.utils.js","sourceRoot":"","sources":["../../../../src/app-auth/users/utils/format-data.utils.ts"],"names":[],"mappings":"AAWA,MAAM,UAAU,0BAA0B,CAAC,IAK1C;IACC,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;QACf,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,EAAE,CAAC,IAAI,EAAE,CAAC;IAC/C,CAAC;IACD,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;QAClB,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,EAAE,CAAC,IAAI,EAAE,CAAC;IACrD,CAAC;IACD,IAAI,IAAI,CAAC,GAAG,EAAE,CAAC;QAEb,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC;IAChD,CAAC;IACD,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;QAEf,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC;QAElD,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC;YACjC,IAAI,CAAC,KAAK,GAAG,KAAK,IAAI,CAAC,KAAK,EAAE,CAAC;QACjC,CAAC;QAED,IAAI,CAAC,KAAK,GAAG,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;IAChC,CAAC;AACH,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"decimal-transformer.utils.js","sourceRoot":"","sources":["../../../src/common/utils/decimal-transformer.utils.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,EAAE,EAAE,CAAC,KAAa,EAAU,EAAE;QAC5B,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC;YAC9C,OAAO,GAAG,CAAC;QACb,CAAC;QACD,OAAO,KAAK,CAAC;IACf,CAAC;IACD,IAAI,EAAE,CAAC,KAAa,EAAU,EAAE;QAC9B,IAAI,CAAC,KAAK;YAAE,OAAO,GAAG,CAAC;QACvB,MAAM,MAAM,GAAG,UAAU,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC;QACxC,OAAO,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC;IACtC,CAAC;CACF,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"address.entity.js","sourceRoot":"","sources":["../../../src/facilities/addresses/address.entity.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,MAAM,EACN,gBAAgB,EAChB,MAAM,EACN,SAAS,EACT,sBAAsB,EACtB,gBAAgB,GACjB,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,kBAAkB,EAAE,MAAM,8CAA8C,CAAC;AAClF,OAAO,EAAE,QAAQ,EAAE,MAAM,6CAA6C,CAAC;AAYhE,IAAM,OAAO,GAAb,MAAM,OAAO;CA2DnB,CAAA;AAzDC;IADC,sBAAsB,EAAE;;mCACd;AAGX;IADC,gBAAgB,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACnD,IAAI;0CAAC;AAGhB;IADC,gBAAgB,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;8BACnD,IAAI;0CAAC;AAGhB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;8CAC3C;AAGtB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;uCACzB;AAGf;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;2CACrC;AAGpB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;6CACpB;AAGrB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;qCAC5B;AAGb;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;sCAC3B;AAGd;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;2CAC1C;AAGnB;IADC,MAAM,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;;wCACzB;AAQhB;IANC,MAAM,CAAC;QACN,IAAI,EAAE,SAAS;QACf,SAAS,EAAE,EAAE;QACb,KAAK,EAAE,CAAC;QACR,WAAW,EAAE,kBAAkB;KAChC,CAAC;;yCACe;AAQjB;IANC,MAAM,CAAC;QACN,IAAI,EAAE,SAAS;QACf,SAAS,EAAE,EAAE;QACb,KAAK,EAAE,CAAC;QACR,WAAW,EAAE,kBAAkB;KAChC,CAAC;;0CACgB;AAUlB;IAHC,SAAS,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,OAAO,EAAE;QACzD,QAAQ,EAAE,SAAS;KACpB,CAAC;;2CACqB;AA1DZ,OAAO;IADnB,MAAM,CAAC,WAAW,CAAC;GACP,OAAO,CA2DnB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/facilities/addresses/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"facility-status.enum.js","sourceRoot":"","sources":["../../../../src/facilities/facilities/enums/facility-status.enum.ts"],"names":[],"mappings":"AASA,MAAM,CAAN,IAAY,cAeX;AAfD,WAAY,cAAc;IAIxB,qCAAmB,CAAA;IAKnB,uCAAqB,CAAA;IAKrB,uCAAqB,CAAA;AACvB,CAAC,EAfW,cAAc,KAAd,cAAc,QAezB"}