@uniteverses/shared 1.0.80 → 1.0.82

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.
@@ -5,12 +5,10 @@ export interface StudentsCommunicationStudentsPracticeDescriptionImageRandomImag
5
5
  export interface StudentsCommunicationStudentsPracticeDescriptionImagePhrase {
6
6
  id: string;
7
7
  text: string;
8
- accepted: boolean;
9
8
  }
10
9
  export interface StudentsCommunicationStudentsPracticeDescriptionImageWord {
11
10
  id: string;
12
11
  text: string;
13
- accepted: boolean;
14
12
  }
15
13
  export interface StudentsCommunicationStudentsPracticeDescriptionImageFeature {
16
14
  id: string;
@@ -36,7 +34,7 @@ export interface StudentsCommunicationStudentsPracticeDescriptionImageAttempt {
36
34
  export interface StudentsCommunicationStudentsPracticeDescriptionImageDrill {
37
35
  id: string;
38
36
  imageUrl: string;
39
- tagId: string | null;
37
+ topicId: string;
40
38
  retiredAt: string | null;
41
39
  createdAt: string;
42
40
  analysis: StudentsCommunicationStudentsPracticeDescriptionImageAnalysis | null;
@@ -45,7 +43,7 @@ export interface StudentsCommunicationStudentsPracticeDescriptionImageDrill {
45
43
  export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillSummary {
46
44
  id: string;
47
45
  imageUrl: string;
48
- tagId: string | null;
46
+ topicId: string;
49
47
  retiredAt: string | null;
50
48
  createdAt: string;
51
49
  attemptCount: number;
@@ -55,7 +53,7 @@ export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillSumma
55
53
  export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillCreateInput {
56
54
  imageUrl: string;
57
55
  description: string;
58
- tagId?: string | null;
56
+ topicId: string;
59
57
  }
60
58
  export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillAttemptCreateInput {
61
59
  description: string;
@@ -8,3 +8,7 @@ export interface StudentsCommunicationStudentsPracticeDescriptionImageTagCreateI
8
8
  name: string;
9
9
  groupId?: string | null;
10
10
  }
11
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTagUpdateInput {
12
+ name?: string;
13
+ groupId?: string | null;
14
+ }
@@ -8,3 +8,7 @@ export interface StudentsCommunicationStudentsPracticeDescriptionImageTagGroupCr
8
8
  name: string;
9
9
  parentGroupId?: string | null;
10
10
  }
11
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTagGroupUpdateInput {
12
+ name?: string;
13
+ parentGroupId?: string | null;
14
+ }
@@ -0,0 +1,14 @@
1
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTopic {
2
+ id: string;
3
+ name: string;
4
+ groupId: string | null;
5
+ createdAt: string;
6
+ }
7
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTopicCreateInput {
8
+ name: string;
9
+ groupId?: string | null;
10
+ }
11
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTopicUpdateInput {
12
+ name?: string;
13
+ groupId?: string | null;
14
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // Wire types for the user-owned DescriptionImageTopic.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTopicGroup {
2
+ id: string;
3
+ name: string;
4
+ parentGroupId: string | null;
5
+ createdAt: string;
6
+ }
7
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTopicGroupCreateInput {
8
+ name: string;
9
+ parentGroupId?: string | null;
10
+ }
11
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTopicGroupUpdateInput {
12
+ name?: string;
13
+ parentGroupId?: string | null;
14
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // Wire types for the user-owned, nestable DescriptionImageTopicGroup.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,3 @@
1
1
  export * from "./description/image/drill/types";
2
- export * from "./description/image/tag/types";
3
- export * from "./description/image/tag_group/types";
2
+ export * from "./description/image/topic/types";
3
+ export * from "./description/image/topic_group/types";
@@ -15,5 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./description/image/drill/types"), exports);
18
- __exportStar(require("./description/image/tag/types"), exports);
19
- __exportStar(require("./description/image/tag_group/types"), exports);
18
+ __exportStar(require("./description/image/topic/types"), exports);
19
+ __exportStar(require("./description/image/topic_group/types"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.80",
3
+ "version": "1.0.82",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [