@natrave/shared-entities 1.6.8 → 1.6.9
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.
|
@@ -9,5 +9,5 @@ import { Player, PlayerPersonalData, PlayerPosition } from '../players';
|
|
|
9
9
|
import { PlayerTeam, Team, TeamAccessCode, TeamJoinRequest, TeamModality, TeamTrophy } from '../teams';
|
|
10
10
|
import { Tournament, TournamentAllowedPhone, TournamentBracket, TournamentBracketSlot, TournamentContact, TournamentCoupon, TournamentFacility, TournamentFormatConfig, TournamentGroup, TournamentMatch, TournamentMatchAvailability, TournamentMatchCard, TournamentMatchGoal, TournamentMatchRule, TournamentMatchSchema, TournamentPayment, TournamentPenaltyShootout, TournamentPlayer, TournamentPlayerRule, TournamentPrizeRule, TournamentPublicationChargeRule, TournamentRegistrationRequest, TournamentRegistrationRequirement, TournamentTeam, TournamentTeamContactAttempt } from '../tournaments';
|
|
11
11
|
import { UserDomainEvent, UserEventView } from '../user-events';
|
|
12
|
-
export declare const DATABASE_ENTITIES: (typeof PasswordReset | typeof Notification | typeof User | typeof NotificationDelivery | typeof NotificationDispatchLog | typeof PushDeviceToken | typeof UserNotificationPreference | typeof TeamPlayerMergeHistory | typeof Team | typeof PlayerTeam | typeof Player | typeof
|
|
12
|
+
export declare const DATABASE_ENTITIES: (typeof PasswordReset | typeof Notification | typeof User | typeof NotificationDelivery | typeof NotificationDispatchLog | typeof PushDeviceToken | typeof UserNotificationPreference | typeof TeamPlayerMergeHistory | typeof Team | typeof PlayerTeam | typeof Player | typeof TournamentMatchGoal | typeof TournamentTeam | typeof TournamentMatch | typeof TournamentPlayer | typeof TournamentPenaltyShootout | typeof TournamentAllowedPhone | typeof Tournament | typeof PhoneNumber | typeof TournamentContact | typeof Coupon | typeof CouponUsage | typeof TournamentCoupon | typeof FacilityImage | typeof Facility | typeof FacilityOwner | typeof Field | typeof FieldImage | typeof TournamentFacility | typeof TournamentFormatConfig | typeof TournamentMatchRule | typeof TournamentMatchSchema | typeof TournamentMatchAvailability | typeof UserPaymentProvider | typeof PaymentProvider | typeof Payment | typeof TournamentPayment | typeof OrganizationUser | typeof TournamentPlayerRule | typeof TournamentPrizeRule | typeof TournamentPublicationChargeRule | typeof TournamentRegistrationRequest | typeof TournamentRegistrationRequirement | typeof TournamentTeamContactAttempt | typeof Address | typeof OrganizationUserBillingInfo | typeof Organization | typeof TournamentGroup | typeof TournamentBracket | typeof TournamentBracketSlot | typeof TeamTrophy | typeof TournamentMatchCard | typeof TeamAccessCode | typeof TeamJoinRequest | typeof TeamModality | typeof PlayerPosition | typeof PlayerPersonalData | typeof UserAuthProvider | typeof RefreshToken | typeof UserVerification | typeof UserDomainEvent | typeof UserEventView)[];
|
|
13
13
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare enum TechnicalStaffRole {
|
|
2
2
|
HEAD_COACH = "head_coach",
|
|
3
3
|
ASSISTANT_COACH = "assistant_coach",
|
|
4
|
-
FITNESS_COACH = "fitness_coach"
|
|
4
|
+
FITNESS_COACH = "fitness_coach",
|
|
5
|
+
GOALKEEPER_COACH = "goalkeeper_coach"
|
|
5
6
|
}
|
|
6
7
|
//# sourceMappingURL=technical-staff-role.enum.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"technical-staff-role.enum.d.ts","sourceRoot":"","sources":["../../../../src/teams/player-team/enums/technical-staff-role.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAC5B,UAAU,eAAe;IACzB,eAAe,oBAAoB;IACnC,aAAa,kBAAkB;
|
|
1
|
+
{"version":3,"file":"technical-staff-role.enum.d.ts","sourceRoot":"","sources":["../../../../src/teams/player-team/enums/technical-staff-role.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAC5B,UAAU,eAAe;IACzB,eAAe,oBAAoB;IACnC,aAAa,kBAAkB;IAC/B,gBAAgB,qBAAqB;CACtC"}
|
|
@@ -2,6 +2,7 @@ var TechnicalStaffRole = /* @__PURE__ */ ((TechnicalStaffRole2) => {
|
|
|
2
2
|
TechnicalStaffRole2["HEAD_COACH"] = "head_coach";
|
|
3
3
|
TechnicalStaffRole2["ASSISTANT_COACH"] = "assistant_coach";
|
|
4
4
|
TechnicalStaffRole2["FITNESS_COACH"] = "fitness_coach";
|
|
5
|
+
TechnicalStaffRole2["GOALKEEPER_COACH"] = "goalkeeper_coach";
|
|
5
6
|
return TechnicalStaffRole2;
|
|
6
7
|
})(TechnicalStaffRole || {});
|
|
7
8
|
export {
|