@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.
- package/dist/types/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -167,10 +167,11 @@ export interface IClientAccount {
|
|
|
167
167
|
export interface IDBBot {
|
|
168
168
|
id: string;
|
|
169
169
|
owner: string;
|
|
170
|
-
parent
|
|
170
|
+
parent?: string;
|
|
171
171
|
nickname: string;
|
|
172
172
|
type: BotTypes;
|
|
173
|
-
email
|
|
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 {
|