diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 36f76e1..95617bf 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/interfaces', - version: '1.0.56', + version: '1.0.57', description: 'interfaces for working with containers' } diff --git a/ts/data/index.ts b/ts/data/index.ts index 8e95a6d..3ef8876 100644 --- a/ts/data/index.ts +++ b/ts/data/index.ts @@ -12,4 +12,5 @@ export * from './server.js'; export * from './service.js'; export * from './status.js'; export * from './traffic.js'; +export * from './user.js'; export * from './version.js'; diff --git a/ts/data/user.ts b/ts/data/user.ts new file mode 100644 index 0000000..b2ab85b --- /dev/null +++ b/ts/data/user.ts @@ -0,0 +1,8 @@ +export interface IUser { + id: string; + data: { + role: 'admin' | 'user'; + username: string; + password: string; + } +} \ No newline at end of file