@tolinax/ayoune-interfaces 2024.129.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.
@@ -1,10 +1,9 @@
1
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
2
  export interface IJournal extends IDefaultFields {
4
3
  _customerID: ObjectId;
5
4
  _clientID?: ObjectId[];
6
5
  _subID?: ObjectId[];
7
6
  _user?: ObjectId;
8
- description?: any;
9
- emotion: Emotion;
7
+ name?: string;
8
+ description?: string;
10
9
  }
@@ -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 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.129.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",