@fnlb-project/shared 1.5.99 → 1.5.100
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 +6 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -379,10 +379,16 @@ export interface IDBUser {
|
|
|
379
379
|
verified?: boolean;
|
|
380
380
|
};
|
|
381
381
|
};
|
|
382
|
+
applications?: {
|
|
383
|
+
id: string;
|
|
384
|
+
token: string;
|
|
385
|
+
scope: number;
|
|
386
|
+
}[];
|
|
382
387
|
}
|
|
383
388
|
export interface IClientUser extends IDBUser {
|
|
384
389
|
token: never;
|
|
385
390
|
password: never;
|
|
391
|
+
applications?: never;
|
|
386
392
|
}
|
|
387
393
|
export declare const defaultCategoryConfig: ICategoryConfig;
|
|
388
394
|
export declare enum GeneralErrorCodes {
|