diff --git a/package-lock.json b/package-lock.json index 7f01004..70e1d70 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@mtlsz/common", - "version": "2.0.2", + "version": "3.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@mtlsz/common", - "version": "2.0.2", + "version": "3.2.0", "license": "ISC", "devDependencies": { "typescript": "^5.8.2" diff --git a/package.json b/package.json index ad98381..faf522c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mtlsz/common", - "version": "3.2.0", + "version": "3.2.1", "description": "MTLSZ frontend packages", "main": "dist/index.ts", "types": "dist/index.d.ts", diff --git a/src/index.ts b/src/index.ts index 024e814..1aede93 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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/team-admin-confirmation-request"; export * from "./interfaces/confirmation-request/team-manager-confirmation-request"; +export * from "./interfaces/confirmation-requests"; diff --git a/src/interfaces/confirmation-requests.ts b/src/interfaces/confirmation-requests.ts new file mode 100644 index 0000000..1b50ba1 --- /dev/null +++ b/src/interfaces/confirmation-requests.ts @@ -0,0 +1,6 @@ +import { ConfirmationRequest } from "./confirmation-request"; + +export interface ConfirmationRequests { + roles: ConfirmationRequest[]; + canAddNewRole: boolean; +}