@fnlb-project/shared 1.5.86 → 1.5.87
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 -4
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -137,9 +137,6 @@ export interface IConnectedClientBot extends IClientBot {
|
|
|
137
137
|
};
|
|
138
138
|
matches: number;
|
|
139
139
|
}
|
|
140
|
-
export declare enum TriggerFlags {
|
|
141
|
-
Disabled = 1
|
|
142
|
-
}
|
|
143
140
|
export interface ICategoryConfigUser {
|
|
144
141
|
id?: string;
|
|
145
142
|
name?: string;
|
|
@@ -158,7 +155,7 @@ export type ICategoryConfigTriggerActionNode = {
|
|
|
158
155
|
};
|
|
159
156
|
export type ICategoryConfigTrigger = {
|
|
160
157
|
name: string;
|
|
161
|
-
flags
|
|
158
|
+
flags?: number;
|
|
162
159
|
actions: ICategoryConfigTriggerActionNode[];
|
|
163
160
|
} & {
|
|
164
161
|
type: ICategoryConfigTriggerType.Event;
|
|
@@ -455,6 +452,9 @@ export declare enum CategoryFlags {
|
|
|
455
452
|
export declare enum CosmeticFlags {
|
|
456
453
|
NotWearable = 1
|
|
457
454
|
}
|
|
455
|
+
export declare enum TriggerFlags {
|
|
456
|
+
Disabled = 1
|
|
457
|
+
}
|
|
458
458
|
export declare enum UserFlags {
|
|
459
459
|
Staff = 1,
|
|
460
460
|
Admin = 2,
|