UNPKG

@dodi-smart/nuki-graphql-api

Version:
43 lines 1.07 kB
export type SmartlocksAuthAdvancedCreate = { /** * The name of the authorization (max 32 chars) */ name: string; /** * The allowed from date */ allowedFromDate?: string; /** * The allowed until date */ allowedUntilDate?: string; /** * The allowed weekdays bitmask: 64 .. monday, 32 .. tuesday, 16 .. wednesday, 8 .. thursday, 4 .. friday, 2 .. saturday, 1 .. sunday */ allowedWeekDays?: number; /** * The allowed from time (in minutes from midnight) */ allowedFromTime?: number; /** * The allowed until time (in minutes from midnight) */ allowedUntilTime?: number; /** * The id of the linked account user */ accountUserId: number; /** * The list of smartlock ids */ smartlockIds: Array<number>; /** * True if the auth has remote access */ remoteAllowed: boolean; /** * The smart actions enabled flag */ smartActionsEnabled?: boolean; }; //# sourceMappingURL=SmartlocksAuthAdvancedCreate.d.ts.map