@uniteverses/shared 1.0.81 → 1.0.83

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.
@@ -33,8 +33,7 @@ export interface StudentsCommunicationStudentsPracticeDescriptionImageAttempt {
33
33
  }
34
34
  export interface StudentsCommunicationStudentsPracticeDescriptionImageDrill {
35
35
  id: string;
36
- imageUrl: string;
37
- tagId: string;
36
+ imageId: string;
38
37
  retiredAt: string | null;
39
38
  createdAt: string;
40
39
  analysis: StudentsCommunicationStudentsPracticeDescriptionImageAnalysis | null;
@@ -42,8 +41,7 @@ export interface StudentsCommunicationStudentsPracticeDescriptionImageDrill {
42
41
  }
43
42
  export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillSummary {
44
43
  id: string;
45
- imageUrl: string;
46
- tagId: string;
44
+ imageId: string;
47
45
  retiredAt: string | null;
48
46
  createdAt: string;
49
47
  attemptCount: number;
@@ -51,9 +49,8 @@ export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillSumma
51
49
  latestScore: number | null;
52
50
  }
53
51
  export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillCreateInput {
54
- imageUrl: string;
52
+ imageId: string;
55
53
  description: string;
56
- tagId: string;
57
54
  }
58
55
  export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillAttemptCreateInput {
59
56
  description: string;
@@ -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 });
@@ -0,0 +1,10 @@
1
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTopicImage {
2
+ id: string;
3
+ topicId: string;
4
+ imageUrl: string;
5
+ createdAt: string;
6
+ }
7
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTopicImageFromPixabayInput {
8
+ topicId: string;
9
+ query: string;
10
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ // Wire types for a topic's images — the photos a drill describes. Pixabay-pulled
3
+ // and user-uploaded images are the same shape and interchangeable as subjects.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +1,4 @@
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";
4
+ export * from "./description/image/topic_image/types";
@@ -15,5 +15,6 @@ 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);
20
+ __exportStar(require("./description/image/topic_image/types"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.81",
3
+ "version": "1.0.83",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [