Compare commits

2 Commits

Author SHA1 Message Date
1d4fb2f180 3.3.6 2025-09-20 11:50:46 +02:00
c5a3f47a4f 3.3.5 2025-08-21 22:08:50 +02:00
7 changed files with 7 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@mtlsz/common",
"version": "3.3.4",
"version": "3.3.6",
"description": "MTLSZ frontend packages",
"main": "dist/index.ts",
"types": "dist/index.d.ts",

View File

@@ -1,5 +1,6 @@
import { Player } from "../player";
export interface AdultConfirmationRequest {
id?: number;
kids: Player[];
}

View File

@@ -1,4 +1,4 @@
export enum ConfirmationRequestStatus {
export const enum ConfirmationRequestStatus {
PENDING = 1,
APPROVED = 2,
DECLINED = 3,

View File

@@ -1,4 +1,5 @@
export interface OfficialConfirmationRequest {
id?: number;
referee: boolean;
umpire: boolean;
}

View File

@@ -1,5 +1,6 @@
import { Club } from "../club";
export interface PlayerConfirmationRequest {
id?: number;
club: Club;
}

View File

@@ -1,6 +1,7 @@
import { Club } from "../club";
export interface TeamAdminConfirmationRequest {
id?: number;
active: boolean;
club: Club;
}

View File

@@ -1,5 +1,6 @@
import { Club } from "../club";
export interface TeamManagerConfirmationRequest {
id?: number;
club: Club;
}