This commit is contained in:
2025-08-21 15:34:33 +02:00
parent 4301da7dae
commit 63998a9859
3 changed files with 7 additions and 1 deletions

View File

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

@@ -30,3 +30,4 @@ export * from "./interfaces/confirmation-requests";
export * from "./interfaces/generic-user"; export * from "./interfaces/generic-user";
export * from "./interfaces/adult"; export * from "./interfaces/adult";
export * from "./interfaces/team-manager"; export * from "./interfaces/team-manager";
export * from "./interfaces/confirmation-request/confirmation-request-status";

View File

@@ -0,0 +1,5 @@
export enum ConfirmationRequestStatus {
PENDING = 1,
APPROVED = 2,
DECLINED = 3,
}