This commit is contained in:
2025-07-11 14:45:45 +02:00
parent dfa40e5397
commit cff48d1e96
4 changed files with 10 additions and 3 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@mtlsz/common", "name": "@mtlsz/common",
"version": "2.0.2", "version": "3.2.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@mtlsz/common", "name": "@mtlsz/common",
"version": "2.0.2", "version": "3.2.0",
"license": "ISC", "license": "ISC",
"devDependencies": { "devDependencies": {
"typescript": "^5.8.2" "typescript": "^5.8.2"

View File

@@ -1,6 +1,6 @@
{ {
"name": "@mtlsz/common", "name": "@mtlsz/common",
"version": "3.2.0", "version": "3.2.1",
"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

@@ -26,3 +26,4 @@ export * from "./interfaces/confirmation-request/official-confirmation-request";
export * from "./interfaces/confirmation-request/player-confirmation-request"; export * from "./interfaces/confirmation-request/player-confirmation-request";
export * from "./interfaces/confirmation-request/team-admin-confirmation-request"; export * from "./interfaces/confirmation-request/team-admin-confirmation-request";
export * from "./interfaces/confirmation-request/team-manager-confirmation-request"; export * from "./interfaces/confirmation-request/team-manager-confirmation-request";
export * from "./interfaces/confirmation-requests";

View File

@@ -0,0 +1,6 @@
import { ConfirmationRequest } from "./confirmation-request";
export interface ConfirmationRequests {
roles: ConfirmationRequest[];
canAddNewRole: boolean;
}