@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.
- package/dist/types/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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;
|