@uniteverses/shared 1.0.113 → 1.0.115
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/dist/domains/students/life/students/live/ideal/types.d.ts +20 -0
- package/dist/domains/students/life/students/live/ideal/types.js +8 -0
- package/dist/domains/students/life/students/live/index.d.ts +1 -0
- package/dist/domains/students/life/students/live/index.js +1 -0
- package/dist/domains/students/life/students/live/reminder/types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare const STUDENTS_LIFE_STUDENTS_LIVE_PARTS_OF_SPEECH: readonly ["noun", "verb", "adjective"];
|
|
2
|
+
export type StudentsLifeStudentsLivePartOfSpeech = (typeof STUDENTS_LIFE_STUDENTS_LIVE_PARTS_OF_SPEECH)[number];
|
|
3
|
+
export type StudentsLifeStudentsLiveIdeal = {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
isGood: boolean;
|
|
7
|
+
word: string;
|
|
8
|
+
pos: StudentsLifeStudentsLivePartOfSpeech;
|
|
9
|
+
createdAt: string;
|
|
10
|
+
};
|
|
11
|
+
export type StudentsLifeStudentsLiveIdealCreateInput = {
|
|
12
|
+
isGood: boolean;
|
|
13
|
+
word: string;
|
|
14
|
+
pos: StudentsLifeStudentsLivePartOfSpeech;
|
|
15
|
+
};
|
|
16
|
+
export type StudentsLifeStudentsLiveIdealUpdateInput = {
|
|
17
|
+
isGood: boolean;
|
|
18
|
+
word: string;
|
|
19
|
+
pos: StudentsLifeStudentsLivePartOfSpeech;
|
|
20
|
+
};
|