fix(core): update

This commit is contained in:
Philipp Kunz 2024-05-31 16:52:23 +02:00
parent 38c914670d
commit c26f35000f
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/interfaces',
version: '1.0.57',
version: '1.0.58',
description: 'interfaces for working with containers'
}

View File

@ -1,7 +1,7 @@
export interface IUser {
id: string;
data: {
role: 'admin' | 'user';
role: 'admin' | 'user' | 'api' | 'cluster';
username: string;
password: string;
}