This commit is contained in:
2025-12-11 14:26:07 +01:00
parent a22c15da0d
commit bc1911e26d
3 changed files with 9 additions and 1 deletions

View File

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

View File

@@ -16,6 +16,7 @@ export * from "./interfaces/team-entry";
export * from "./interfaces/team"; export * from "./interfaces/team";
export * from "./interfaces/tournament"; export * from "./interfaces/tournament";
export * from "./interfaces/guest-player-request"; export * from "./interfaces/guest-player-request";
export * from "./interfaces/guest-player-from-other-country-request";
export * from "./interfaces/single-tournament"; export * from "./interfaces/single-tournament";
export * from "./interfaces/team-championship"; export * from "./interfaces/team-championship";
export * from "./interfaces/tag"; export * from "./interfaces/tag";

View File

@@ -0,0 +1,7 @@
export interface GuestPlayerFromOtherCountryRequest {
id?: number;
name: string;
rankingSingles: number | null;
rankingDoubles: number | null;
rankingMixed: number | null;
}