@octopusx/ndk
Version:
octopus x sdk to connect to the octopusx grids and services
30 lines (27 loc) • 504 B
text/typescript
export interface NewUser {
firstname?: string;
lastname?: string;
profile_id?: number;
gender?: string;
phone?: string;
email?: string;
role_id?: string;
group_id?: string;
password?: string;
}
export interface LoginUser {
username?: string;
grant_type?: string;
password?: string;
scope?: string;
client_id?: number;
client_secret?: string;
}
export interface NewGroup {
name?:string,
description?:string
}
export interface NewRole {
name?:string,
slug?:string
}