@fnlb-project/shared 1.5.20 → 1.5.22

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.
@@ -62,6 +62,7 @@ export interface IClientAccount {
62
62
  username: string;
63
63
  email: string;
64
64
  apiToken: string;
65
+ verified?: boolean;
65
66
  connections?: {
66
67
  discord?: ConnectionSchema;
67
68
  epic?: ConnectionSchema;
@@ -226,6 +227,7 @@ export interface IDBCategory {
226
227
  owner: string;
227
228
  name: string;
228
229
  disabled?: boolean;
230
+ managed?: boolean;
229
231
  config: ICategoryConfig;
230
232
  }
231
233
  export interface ICategory extends IDBCategory {
@@ -334,6 +336,7 @@ export interface IDBUser {
334
336
  email: string;
335
337
  password: string;
336
338
  apiToken: string;
339
+ verified?: boolean;
337
340
  connections?: {
338
341
  epic?: {
339
342
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fnlb-project/shared",
3
- "version": "1.5.20",
3
+ "version": "1.5.22",
4
4
  "description": "FNLB Shared Library",
5
5
  "files": ["dist"],
6
6
  "author": "FNLB-Project",