@tolinax/ayoune-interfaces 2024.4.3 → 2024.4.5

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.
@@ -11,8 +11,8 @@ export interface IComment extends IDefaultFields {
11
11
  _question?: ObjectId;
12
12
  isDiscussion?: boolean;
13
13
  isDiscussionResolved?: boolean;
14
- votes: IVote[];
15
- mentions: any[];
16
- consumerMentions: any[];
17
- reactions: IReaction[];
14
+ votes?: IVote[];
15
+ mentions?: any[];
16
+ consumerMentions?: any[];
17
+ reactions?: IReaction[];
18
18
  }
@@ -3,6 +3,7 @@ export interface IFilterCondition {
3
3
  condition: string;
4
4
  typ: string;
5
5
  link: string;
6
+ operator: string;
6
7
  }
7
8
  export interface IFilter extends IDefaultFields {
8
9
  _customerID: ObjectId;
@@ -42,7 +42,7 @@ interface IK8DeploymentLogger {
42
42
  colorize: boolean;
43
43
  }
44
44
  interface IK8DeploymentJobQ {
45
- disabled: string;
45
+ disabled: boolean;
46
46
  name: string;
47
47
  agendaConfig: AgendaConfig;
48
48
  bullConfig: BullConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.4.3",
3
+ "version": "2024.4.5",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",