@tolinax/ayoune-interfaces 2024.128.0 → 2024.129.1

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,9 @@
1
+ import { IDefaultFields } from "./IDefaultFields";
2
+ export interface IJournal extends IDefaultFields {
3
+ _customerID: ObjectId;
4
+ _clientID?: ObjectId[];
5
+ _subID?: ObjectId[];
6
+ _user?: ObjectId;
7
+ name?: string;
8
+ description?: string;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 IJournalEntry extends IDefaultFields {
4
+ _customerID: ObjectId;
5
+ _clientID?: ObjectId[];
6
+ _subID?: ObjectId[];
7
+ _journal?: ObjectId;
8
+ description?: string;
9
+ emotion: Emotion;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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";
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.128.0",
3
+ "version": "2024.129.1",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",