@uniteverses/shared 1.0.79 → 1.0.81

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,60 @@
1
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageRandomImage {
2
+ imageUrl: string;
3
+ tags: string;
4
+ }
5
+ export interface StudentsCommunicationStudentsPracticeDescriptionImagePhrase {
6
+ id: string;
7
+ text: string;
8
+ }
9
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageWord {
10
+ id: string;
11
+ text: string;
12
+ }
13
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageFeature {
14
+ id: string;
15
+ label: string;
16
+ phrases: StudentsCommunicationStudentsPracticeDescriptionImagePhrase[];
17
+ words: StudentsCommunicationStudentsPracticeDescriptionImageWord[];
18
+ }
19
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageAnalysis {
20
+ id: string;
21
+ expertDescription: string;
22
+ features: StudentsCommunicationStudentsPracticeDescriptionImageFeature[];
23
+ createdAt: string;
24
+ }
25
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageAttempt {
26
+ id: string;
27
+ userResponse: string;
28
+ score: number;
29
+ mentionedFeatureIds: string[];
30
+ usedPhraseIds: string[];
31
+ usedWordIds: string[];
32
+ createdAt: string;
33
+ }
34
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageDrill {
35
+ id: string;
36
+ imageUrl: string;
37
+ tagId: string;
38
+ retiredAt: string | null;
39
+ createdAt: string;
40
+ analysis: StudentsCommunicationStudentsPracticeDescriptionImageAnalysis | null;
41
+ attempts: StudentsCommunicationStudentsPracticeDescriptionImageAttempt[];
42
+ }
43
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillSummary {
44
+ id: string;
45
+ imageUrl: string;
46
+ tagId: string;
47
+ retiredAt: string | null;
48
+ createdAt: string;
49
+ attemptCount: number;
50
+ bestScore: number | null;
51
+ latestScore: number | null;
52
+ }
53
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillCreateInput {
54
+ imageUrl: string;
55
+ description: string;
56
+ tagId: string;
57
+ }
58
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageDrillAttemptCreateInput {
59
+ description: string;
60
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ // Wire types for the "describe an image" drill aggregate (DescriptionImageDrill
3
+ // and its analysis / attempts). The drill is the aggregate root; analysis,
4
+ // features, phrases, words and attempts are nested sub-shapes on the wire.
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTag {
2
+ id: string;
3
+ name: string;
4
+ groupId: string | null;
5
+ createdAt: string;
6
+ }
7
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTagCreateInput {
8
+ name: string;
9
+ groupId?: string | null;
10
+ }
11
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTagUpdateInput {
12
+ name?: string;
13
+ groupId?: string | null;
14
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // Wire types for the user-owned DescriptionImageTag.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTagGroup {
2
+ id: string;
3
+ name: string;
4
+ parentGroupId: string | null;
5
+ createdAt: string;
6
+ }
7
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTagGroupCreateInput {
8
+ name: string;
9
+ parentGroupId?: string | null;
10
+ }
11
+ export interface StudentsCommunicationStudentsPracticeDescriptionImageTagGroupUpdateInput {
12
+ name?: string;
13
+ parentGroupId?: string | null;
14
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // Wire types for the user-owned, nestable DescriptionImageTagGroup.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,3 @@
1
+ export * from "./description/image/drill/types";
2
+ export * from "./description/image/tag/types";
3
+ export * from "./description/image/tag_group/types";
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
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);
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export * from "./domains/politicians/community/residents/explore/types";
2
2
  export * from "./domains/politicians/community/residents/explore/constants";
3
3
  export * from "./domains/teachers/prep_center/students/simulate/types";
4
- export * from "./domains/students/writing/students/practice/types";
4
+ export * from "./domains/students/communication/students/practice";
5
5
  export * from "./domains/lawyers/real_estate/assistants/research";
package/dist/index.js CHANGED
@@ -17,5 +17,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./domains/politicians/community/residents/explore/types"), exports);
18
18
  __exportStar(require("./domains/politicians/community/residents/explore/constants"), exports);
19
19
  __exportStar(require("./domains/teachers/prep_center/students/simulate/types"), exports);
20
- __exportStar(require("./domains/students/writing/students/practice/types"), exports);
20
+ __exportStar(require("./domains/students/communication/students/practice"), exports);
21
21
  __exportStar(require("./domains/lawyers/real_estate/assistants/research"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.79",
3
+ "version": "1.0.81",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [