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 = { export const commitinfo = {
name: '@serve.zone/interfaces', name: '@serve.zone/interfaces',
version: '1.0.57', version: '1.0.58',
description: 'interfaces for working with containers' description: 'interfaces for working with containers'
} }

View File

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