@tolinax/ayoune-interfaces 2024.19.0 → 2024.20.0
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.
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export interface INewsMonitor extends IDefaultFields {
|
|
3
|
+
_customerID: ObjectId;
|
|
4
|
+
_clientID?: ObjectId[];
|
|
5
|
+
_subID?: ObjectId[];
|
|
6
|
+
active?: boolean;
|
|
7
|
+
name?: string;
|
|
8
|
+
value?: string;
|
|
9
|
+
operator?: string;
|
|
10
|
+
extractContent?: boolean;
|
|
11
|
+
createSummary?: boolean;
|
|
12
|
+
}
|
|
@@ -15,6 +15,10 @@ interface LastChecks {
|
|
|
15
15
|
price?: Date;
|
|
16
16
|
trends?: Date;
|
|
17
17
|
keyword_planner?: Date;
|
|
18
|
+
suggestions_prepositions?: Date;
|
|
19
|
+
suggestions_questionWords?: Date;
|
|
20
|
+
suggestions_alphabetical?: Date;
|
|
21
|
+
suggestions_comparisons?: Date;
|
|
18
22
|
}
|
|
19
23
|
interface Cost {
|
|
20
24
|
createdAt?: Date;
|
package/interfaces/index.d.ts
CHANGED
|
@@ -346,6 +346,7 @@ export * from "./ILocalization";
|
|
|
346
346
|
export * from "./ILocation";
|
|
347
347
|
export * from "./ILog";
|
|
348
348
|
export * from "./ILogMonitor";
|
|
349
|
+
export * from "./INewsMonitor";
|
|
349
350
|
export * from "./ILot";
|
|
350
351
|
export * from "./ILoyaltyPoint";
|
|
351
352
|
export * from "./ILoyaltyProgram";
|
package/interfaces/index.js
CHANGED
|
@@ -362,6 +362,7 @@ __exportStar(require("./ILocalization"), exports);
|
|
|
362
362
|
__exportStar(require("./ILocation"), exports);
|
|
363
363
|
__exportStar(require("./ILog"), exports);
|
|
364
364
|
__exportStar(require("./ILogMonitor"), exports);
|
|
365
|
+
__exportStar(require("./INewsMonitor"), exports);
|
|
365
366
|
__exportStar(require("./ILot"), exports);
|
|
366
367
|
__exportStar(require("./ILoyaltyPoint"), exports);
|
|
367
368
|
__exportStar(require("./ILoyaltyProgram"), exports);
|