@tolinax/ayoune-interfaces 2024.128.0 → 2024.129.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.
- package/interfaces/IJournal.d.ts +10 -0
- package/interfaces/IJournal.js +2 -0
- package/interfaces/index.d.ts +1 -0
- package/interfaces/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDefaultFields } from "./IDefaultFields";
|
|
2
|
+
export type Emotion = "happiness" | "sadness" | "anger" | "fear" | "surprise" | "disgust" | "love" | "hope" | "pride" | "guilt" | "shame" | "envy" | "jealousy" | "relief" | "compassion" | "gratitude" | "curiosity" | "boredom" | "contentment" | "embarrassment" | "excitement" | "loneliness" | "frustration" | "confidence" | "anxiety" | "tension" | "despair" | "trust" | "anticipation" | "nostalgia" | "admiration" | "contempt" | "vulnerability" | "courage" | "awe" | "regret" | "resentment";
|
|
3
|
+
export interface IJournal extends IDefaultFields {
|
|
4
|
+
_customerID: ObjectId;
|
|
5
|
+
_clientID?: ObjectId[];
|
|
6
|
+
_subID?: ObjectId[];
|
|
7
|
+
_user?: ObjectId;
|
|
8
|
+
description?: any;
|
|
9
|
+
emotion: Emotion;
|
|
10
|
+
}
|
package/interfaces/index.d.ts
CHANGED
|
@@ -327,6 +327,7 @@ export * from "./IInventoryList";
|
|
|
327
327
|
export * from "./IInvoice";
|
|
328
328
|
export * from "./IIoTDevice";
|
|
329
329
|
export * from "./IJobOffer";
|
|
330
|
+
export * from "./IJournal";
|
|
330
331
|
export * from "./IK8Cluster";
|
|
331
332
|
export * from "./IK8Deployment";
|
|
332
333
|
export * from "./IKanbanBoard";
|
package/interfaces/index.js
CHANGED
|
@@ -343,6 +343,7 @@ __exportStar(require("./IInventoryList"), exports);
|
|
|
343
343
|
__exportStar(require("./IInvoice"), exports);
|
|
344
344
|
__exportStar(require("./IIoTDevice"), exports);
|
|
345
345
|
__exportStar(require("./IJobOffer"), exports);
|
|
346
|
+
__exportStar(require("./IJournal"), exports);
|
|
346
347
|
__exportStar(require("./IK8Cluster"), exports);
|
|
347
348
|
__exportStar(require("./IK8Deployment"), exports);
|
|
348
349
|
__exportStar(require("./IKanbanBoard"), exports);
|