@fnlb-project/shared 1.5.8 → 1.5.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -167,10 +167,11 @@ export interface IClientAccount {
167
167
  export interface IDBBot {
168
168
  id: string;
169
169
  owner: string;
170
- parent: string;
170
+ parent?: string;
171
171
  nickname: string;
172
172
  type: BotTypes;
173
- email: string;
173
+ email?: string;
174
+ disabled?: boolean;
174
175
  deviceAuth: {
175
176
  accountId: string;
176
177
  deviceId: string;
@@ -333,6 +334,7 @@ export interface IDBCategory {
333
334
  id: string;
334
335
  owner: string;
335
336
  name: string;
337
+ disabled?: boolean;
336
338
  config: ICategoryConfig;
337
339
  }
338
340
  export interface ICategory extends IDBCategory {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fnlb-project/shared",
3
- "version": "1.5.8",
3
+ "version": "1.5.9",
4
4
  "description": "FNLB Shared Library",
5
5
  "files": ["dist"],
6
6
  "author": "FNLB-Project",