UNPKG

@dodi-smart/nuki-graphql-api

Version:
25 lines 669 B
import type { Account_Profile } from './Account_Profile'; export type AccountSubCreate = { /** * The email address */ email: string; /** * The password (must be at least 7 chars long) */ password: string; /** * The name of the sub account */ name: string; /** * The right bitmask of the sub account: 1 .. operate smartlock, 2 .. change smartlock config, 4 .. manage smartlock users, 8 .. view smartlock logs, 16 .. manage sub accounts */ rights: number; /** * The language code */ language: string; profile?: Account_Profile; }; //# sourceMappingURL=AccountSubCreate.d.ts.map