@instructure/athena-api-client 1.0.7 → 1.0.8

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.
Files changed (66) hide show
  1. package/README.md +15 -0
  2. package/dist/apis/QuizSessionsApi.d.ts +76 -0
  3. package/dist/apis/QuizSessionsApi.js +207 -0
  4. package/dist/apis/QuizzesApi.d.ts +32 -0
  5. package/dist/apis/QuizzesApi.js +74 -0
  6. package/dist/apis/index.d.ts +2 -0
  7. package/dist/apis/index.js +2 -0
  8. package/dist/esm/apis/QuizSessionsApi.d.ts +76 -0
  9. package/dist/esm/apis/QuizSessionsApi.js +203 -0
  10. package/dist/esm/apis/QuizzesApi.d.ts +32 -0
  11. package/dist/esm/apis/QuizzesApi.js +70 -0
  12. package/dist/esm/apis/index.d.ts +2 -0
  13. package/dist/esm/apis/index.js +2 -0
  14. package/dist/esm/models/ChatRequestAttachmentsInner.d.ts +6 -0
  15. package/dist/esm/models/ChatRequestAttachmentsInner.js +4 -0
  16. package/dist/esm/models/MessageAttachmentsInner.d.ts +6 -0
  17. package/dist/esm/models/MessageAttachmentsInner.js +4 -0
  18. package/dist/esm/models/Quiz.d.ts +76 -0
  19. package/dist/esm/models/Quiz.js +72 -0
  20. package/dist/esm/models/QuizQuestion.d.ts +103 -0
  21. package/dist/esm/models/QuizQuestion.js +85 -0
  22. package/dist/esm/models/QuizResponse.d.ts +76 -0
  23. package/dist/esm/models/QuizResponse.js +70 -0
  24. package/dist/esm/models/QuizSession.d.ts +71 -0
  25. package/dist/esm/models/QuizSession.js +69 -0
  26. package/dist/esm/models/QuizSessionSummary.d.ts +61 -0
  27. package/dist/esm/models/QuizSessionSummary.js +64 -0
  28. package/dist/esm/models/QuizSessionSummaryScore.d.ts +47 -0
  29. package/dist/esm/models/QuizSessionSummaryScore.js +53 -0
  30. package/dist/esm/models/QuizWithQuestions.d.ts +83 -0
  31. package/dist/esm/models/QuizWithQuestions.js +77 -0
  32. package/dist/esm/models/ScoreByTypeValue.d.ts +38 -0
  33. package/dist/esm/models/ScoreByTypeValue.js +47 -0
  34. package/dist/esm/models/SubmitQuizResponseRequest.d.ts +58 -0
  35. package/dist/esm/models/SubmitQuizResponseRequest.js +58 -0
  36. package/dist/esm/models/UpdateQuizSessionRequest.d.ts +40 -0
  37. package/dist/esm/models/UpdateQuizSessionRequest.js +50 -0
  38. package/dist/esm/models/index.d.ts +10 -0
  39. package/dist/esm/models/index.js +10 -0
  40. package/dist/models/ChatRequestAttachmentsInner.d.ts +6 -0
  41. package/dist/models/ChatRequestAttachmentsInner.js +4 -0
  42. package/dist/models/MessageAttachmentsInner.d.ts +6 -0
  43. package/dist/models/MessageAttachmentsInner.js +4 -0
  44. package/dist/models/Quiz.d.ts +76 -0
  45. package/dist/models/Quiz.js +80 -0
  46. package/dist/models/QuizQuestion.d.ts +103 -0
  47. package/dist/models/QuizQuestion.js +93 -0
  48. package/dist/models/QuizResponse.d.ts +76 -0
  49. package/dist/models/QuizResponse.js +78 -0
  50. package/dist/models/QuizSession.d.ts +71 -0
  51. package/dist/models/QuizSession.js +77 -0
  52. package/dist/models/QuizSessionSummary.d.ts +61 -0
  53. package/dist/models/QuizSessionSummary.js +71 -0
  54. package/dist/models/QuizSessionSummaryScore.d.ts +47 -0
  55. package/dist/models/QuizSessionSummaryScore.js +60 -0
  56. package/dist/models/QuizWithQuestions.d.ts +83 -0
  57. package/dist/models/QuizWithQuestions.js +85 -0
  58. package/dist/models/ScoreByTypeValue.d.ts +38 -0
  59. package/dist/models/ScoreByTypeValue.js +54 -0
  60. package/dist/models/SubmitQuizResponseRequest.d.ts +58 -0
  61. package/dist/models/SubmitQuizResponseRequest.js +66 -0
  62. package/dist/models/UpdateQuizSessionRequest.d.ts +40 -0
  63. package/dist/models/UpdateQuizSessionRequest.js +58 -0
  64. package/dist/models/index.d.ts +10 -0
  65. package/dist/models/index.js +10 -0
  66. package/package.json +1 -1
@@ -0,0 +1,77 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Athena API
5
+ * REST API for the Athena system
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { QuizQuestionFromJSON, QuizQuestionToJSON, } from './QuizQuestion';
15
+ /**
16
+ * @export
17
+ */
18
+ export const QuizWithQuestionsModeEnum = {
19
+ Quiz: 'quiz',
20
+ Flashcards: 'flashcards'
21
+ };
22
+ /**
23
+ * Check if a given object implements the QuizWithQuestions interface.
24
+ */
25
+ export function instanceOfQuizWithQuestions(value) {
26
+ if (!('id' in value) || value['id'] === undefined)
27
+ return false;
28
+ if (!('accountUserId' in value) || value['accountUserId'] === undefined)
29
+ return false;
30
+ if (!('title' in value) || value['title'] === undefined)
31
+ return false;
32
+ if (!('topic' in value) || value['topic'] === undefined)
33
+ return false;
34
+ if (!('mode' in value) || value['mode'] === undefined)
35
+ return false;
36
+ if (!('createdAt' in value) || value['createdAt'] === undefined)
37
+ return false;
38
+ if (!('questions' in value) || value['questions'] === undefined)
39
+ return false;
40
+ return true;
41
+ }
42
+ export function QuizWithQuestionsFromJSON(json) {
43
+ return QuizWithQuestionsFromJSONTyped(json, false);
44
+ }
45
+ export function QuizWithQuestionsFromJSONTyped(json, ignoreDiscriminator) {
46
+ if (json == null) {
47
+ return json;
48
+ }
49
+ return {
50
+ 'id': json['id'],
51
+ 'accountUserId': json['accountUserId'],
52
+ 'chatId': json['chatId'] == null ? undefined : json['chatId'],
53
+ 'title': json['title'],
54
+ 'topic': json['topic'],
55
+ 'mode': json['mode'],
56
+ 'createdAt': (new Date(json['createdAt'])),
57
+ 'questions': (json['questions'].map(QuizQuestionFromJSON)),
58
+ };
59
+ }
60
+ export function QuizWithQuestionsToJSON(json) {
61
+ return QuizWithQuestionsToJSONTyped(json, false);
62
+ }
63
+ export function QuizWithQuestionsToJSONTyped(value, ignoreDiscriminator = false) {
64
+ if (value == null) {
65
+ return value;
66
+ }
67
+ return {
68
+ 'id': value['id'],
69
+ 'accountUserId': value['accountUserId'],
70
+ 'chatId': value['chatId'],
71
+ 'title': value['title'],
72
+ 'topic': value['topic'],
73
+ 'mode': value['mode'],
74
+ 'createdAt': value['createdAt'].toISOString(),
75
+ 'questions': (value['questions'].map(QuizQuestionToJSON)),
76
+ };
77
+ }
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Athena API
3
+ * REST API for the Athena system
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ScoreByTypeValue
16
+ */
17
+ export interface ScoreByTypeValue {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof ScoreByTypeValue
22
+ */
23
+ correct: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof ScoreByTypeValue
28
+ */
29
+ total: number;
30
+ }
31
+ /**
32
+ * Check if a given object implements the ScoreByTypeValue interface.
33
+ */
34
+ export declare function instanceOfScoreByTypeValue(value: object): value is ScoreByTypeValue;
35
+ export declare function ScoreByTypeValueFromJSON(json: any): ScoreByTypeValue;
36
+ export declare function ScoreByTypeValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScoreByTypeValue;
37
+ export declare function ScoreByTypeValueToJSON(json: any): ScoreByTypeValue;
38
+ export declare function ScoreByTypeValueToJSONTyped(value?: ScoreByTypeValue | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,47 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Athena API
5
+ * REST API for the Athena system
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ * Check if a given object implements the ScoreByTypeValue interface.
16
+ */
17
+ export function instanceOfScoreByTypeValue(value) {
18
+ if (!('correct' in value) || value['correct'] === undefined)
19
+ return false;
20
+ if (!('total' in value) || value['total'] === undefined)
21
+ return false;
22
+ return true;
23
+ }
24
+ export function ScoreByTypeValueFromJSON(json) {
25
+ return ScoreByTypeValueFromJSONTyped(json, false);
26
+ }
27
+ export function ScoreByTypeValueFromJSONTyped(json, ignoreDiscriminator) {
28
+ if (json == null) {
29
+ return json;
30
+ }
31
+ return {
32
+ 'correct': json['correct'],
33
+ 'total': json['total'],
34
+ };
35
+ }
36
+ export function ScoreByTypeValueToJSON(json) {
37
+ return ScoreByTypeValueToJSONTyped(json, false);
38
+ }
39
+ export function ScoreByTypeValueToJSONTyped(value, ignoreDiscriminator = false) {
40
+ if (value == null) {
41
+ return value;
42
+ }
43
+ return {
44
+ 'correct': value['correct'],
45
+ 'total': value['total'],
46
+ };
47
+ }
@@ -0,0 +1,58 @@
1
+ /**
2
+ * Athena API
3
+ * REST API for the Athena system
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SubmitQuizResponseRequest
16
+ */
17
+ export interface SubmitQuizResponseRequest {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SubmitQuizResponseRequest
22
+ */
23
+ questionId: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SubmitQuizResponseRequest
28
+ */
29
+ userAnswer: string;
30
+ /**
31
+ *
32
+ * @type {boolean}
33
+ * @memberof SubmitQuizResponseRequest
34
+ */
35
+ isCorrect?: boolean | null;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof SubmitQuizResponseRequest
40
+ */
41
+ rating?: SubmitQuizResponseRequestRatingEnum | null;
42
+ }
43
+ /**
44
+ * @export
45
+ */
46
+ export declare const SubmitQuizResponseRequestRatingEnum: {
47
+ readonly WasRight: "was-right";
48
+ readonly NeedPractice: "need-practice";
49
+ };
50
+ export type SubmitQuizResponseRequestRatingEnum = typeof SubmitQuizResponseRequestRatingEnum[keyof typeof SubmitQuizResponseRequestRatingEnum];
51
+ /**
52
+ * Check if a given object implements the SubmitQuizResponseRequest interface.
53
+ */
54
+ export declare function instanceOfSubmitQuizResponseRequest(value: object): value is SubmitQuizResponseRequest;
55
+ export declare function SubmitQuizResponseRequestFromJSON(json: any): SubmitQuizResponseRequest;
56
+ export declare function SubmitQuizResponseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubmitQuizResponseRequest;
57
+ export declare function SubmitQuizResponseRequestToJSON(json: any): SubmitQuizResponseRequest;
58
+ export declare function SubmitQuizResponseRequestToJSONTyped(value?: SubmitQuizResponseRequest | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,58 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Athena API
5
+ * REST API for the Athena system
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ * @export
16
+ */
17
+ export const SubmitQuizResponseRequestRatingEnum = {
18
+ WasRight: 'was-right',
19
+ NeedPractice: 'need-practice'
20
+ };
21
+ /**
22
+ * Check if a given object implements the SubmitQuizResponseRequest interface.
23
+ */
24
+ export function instanceOfSubmitQuizResponseRequest(value) {
25
+ if (!('questionId' in value) || value['questionId'] === undefined)
26
+ return false;
27
+ if (!('userAnswer' in value) || value['userAnswer'] === undefined)
28
+ return false;
29
+ return true;
30
+ }
31
+ export function SubmitQuizResponseRequestFromJSON(json) {
32
+ return SubmitQuizResponseRequestFromJSONTyped(json, false);
33
+ }
34
+ export function SubmitQuizResponseRequestFromJSONTyped(json, ignoreDiscriminator) {
35
+ if (json == null) {
36
+ return json;
37
+ }
38
+ return {
39
+ 'questionId': json['questionId'],
40
+ 'userAnswer': json['userAnswer'],
41
+ 'isCorrect': json['isCorrect'] == null ? undefined : json['isCorrect'],
42
+ 'rating': json['rating'] == null ? undefined : json['rating'],
43
+ };
44
+ }
45
+ export function SubmitQuizResponseRequestToJSON(json) {
46
+ return SubmitQuizResponseRequestToJSONTyped(json, false);
47
+ }
48
+ export function SubmitQuizResponseRequestToJSONTyped(value, ignoreDiscriminator = false) {
49
+ if (value == null) {
50
+ return value;
51
+ }
52
+ return {
53
+ 'questionId': value['questionId'],
54
+ 'userAnswer': value['userAnswer'],
55
+ 'isCorrect': value['isCorrect'],
56
+ 'rating': value['rating'],
57
+ };
58
+ }
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Athena API
3
+ * REST API for the Athena system
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface UpdateQuizSessionRequest
16
+ */
17
+ export interface UpdateQuizSessionRequest {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UpdateQuizSessionRequest
22
+ */
23
+ status: UpdateQuizSessionRequestStatusEnum;
24
+ }
25
+ /**
26
+ * @export
27
+ */
28
+ export declare const UpdateQuizSessionRequestStatusEnum: {
29
+ readonly Completed: "completed";
30
+ readonly Abandoned: "abandoned";
31
+ };
32
+ export type UpdateQuizSessionRequestStatusEnum = typeof UpdateQuizSessionRequestStatusEnum[keyof typeof UpdateQuizSessionRequestStatusEnum];
33
+ /**
34
+ * Check if a given object implements the UpdateQuizSessionRequest interface.
35
+ */
36
+ export declare function instanceOfUpdateQuizSessionRequest(value: object): value is UpdateQuizSessionRequest;
37
+ export declare function UpdateQuizSessionRequestFromJSON(json: any): UpdateQuizSessionRequest;
38
+ export declare function UpdateQuizSessionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateQuizSessionRequest;
39
+ export declare function UpdateQuizSessionRequestToJSON(json: any): UpdateQuizSessionRequest;
40
+ export declare function UpdateQuizSessionRequestToJSONTyped(value?: UpdateQuizSessionRequest | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,50 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Athena API
5
+ * REST API for the Athena system
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ * @export
16
+ */
17
+ export const UpdateQuizSessionRequestStatusEnum = {
18
+ Completed: 'completed',
19
+ Abandoned: 'abandoned'
20
+ };
21
+ /**
22
+ * Check if a given object implements the UpdateQuizSessionRequest interface.
23
+ */
24
+ export function instanceOfUpdateQuizSessionRequest(value) {
25
+ if (!('status' in value) || value['status'] === undefined)
26
+ return false;
27
+ return true;
28
+ }
29
+ export function UpdateQuizSessionRequestFromJSON(json) {
30
+ return UpdateQuizSessionRequestFromJSONTyped(json, false);
31
+ }
32
+ export function UpdateQuizSessionRequestFromJSONTyped(json, ignoreDiscriminator) {
33
+ if (json == null) {
34
+ return json;
35
+ }
36
+ return {
37
+ 'status': json['status'],
38
+ };
39
+ }
40
+ export function UpdateQuizSessionRequestToJSON(json) {
41
+ return UpdateQuizSessionRequestToJSONTyped(json, false);
42
+ }
43
+ export function UpdateQuizSessionRequestToJSONTyped(value, ignoreDiscriminator = false) {
44
+ if (value == null) {
45
+ return value;
46
+ }
47
+ return {
48
+ 'status': value['status'],
49
+ };
50
+ }
@@ -18,9 +18,19 @@ export * from './ModelError';
18
18
  export * from './PaginatedChats';
19
19
  export * from './PaginatedLearningMoments';
20
20
  export * from './PaginatedMessages';
21
+ export * from './Quiz';
22
+ export * from './QuizQuestion';
23
+ export * from './QuizResponse';
24
+ export * from './QuizSession';
25
+ export * from './QuizSessionSummary';
26
+ export * from './QuizSessionSummaryScore';
27
+ export * from './QuizWithQuestions';
28
+ export * from './ScoreByTypeValue';
21
29
  export * from './ServiceToken';
30
+ export * from './SubmitQuizResponseRequest';
22
31
  export * from './Tag';
23
32
  export * from './UpdateChatRequest';
33
+ export * from './UpdateQuizSessionRequest';
24
34
  export * from './UpdateTokenRequest';
25
35
  export * from './UpdateTokenResponse';
26
36
  export * from './UploadUrlRequest';
@@ -20,9 +20,19 @@ export * from './ModelError';
20
20
  export * from './PaginatedChats';
21
21
  export * from './PaginatedLearningMoments';
22
22
  export * from './PaginatedMessages';
23
+ export * from './Quiz';
24
+ export * from './QuizQuestion';
25
+ export * from './QuizResponse';
26
+ export * from './QuizSession';
27
+ export * from './QuizSessionSummary';
28
+ export * from './QuizSessionSummaryScore';
29
+ export * from './QuizWithQuestions';
30
+ export * from './ScoreByTypeValue';
23
31
  export * from './ServiceToken';
32
+ export * from './SubmitQuizResponseRequest';
24
33
  export * from './Tag';
25
34
  export * from './UpdateChatRequest';
35
+ export * from './UpdateQuizSessionRequest';
26
36
  export * from './UpdateTokenRequest';
27
37
  export * from './UpdateTokenResponse';
28
38
  export * from './UploadUrlRequest';
@@ -27,6 +27,12 @@ export interface ChatRequestAttachmentsInner {
27
27
  * @memberof ChatRequestAttachmentsInner
28
28
  */
29
29
  mimeType: ChatRequestAttachmentsInnerMimeTypeEnum;
30
+ /**
31
+ * Original filename of the uploaded file
32
+ * @type {string}
33
+ * @memberof ChatRequestAttachmentsInner
34
+ */
35
+ name: string;
30
36
  }
31
37
  /**
32
38
  * @export
@@ -37,6 +37,8 @@ function instanceOfChatRequestAttachmentsInner(value) {
37
37
  return false;
38
38
  if (!('mimeType' in value) || value['mimeType'] === undefined)
39
39
  return false;
40
+ if (!('name' in value) || value['name'] === undefined)
41
+ return false;
40
42
  return true;
41
43
  }
42
44
  function ChatRequestAttachmentsInnerFromJSON(json) {
@@ -49,6 +51,7 @@ function ChatRequestAttachmentsInnerFromJSONTyped(json, ignoreDiscriminator) {
49
51
  return {
50
52
  'fileId': json['fileId'],
51
53
  'mimeType': json['mimeType'],
54
+ 'name': json['name'],
52
55
  };
53
56
  }
54
57
  function ChatRequestAttachmentsInnerToJSON(json) {
@@ -61,5 +64,6 @@ function ChatRequestAttachmentsInnerToJSONTyped(value, ignoreDiscriminator = fal
61
64
  return {
62
65
  'fileId': value['fileId'],
63
66
  'mimeType': value['mimeType'],
67
+ 'name': value['name'],
64
68
  };
65
69
  }
@@ -27,6 +27,12 @@ export interface MessageAttachmentsInner {
27
27
  * @memberof MessageAttachmentsInner
28
28
  */
29
29
  mimeType: MessageAttachmentsInnerMimeTypeEnum;
30
+ /**
31
+ * Original filename of the uploaded file
32
+ * @type {string}
33
+ * @memberof MessageAttachmentsInner
34
+ */
35
+ name: string;
30
36
  /**
31
37
  * Fresh signed GET URL (expires in 30 minutes). Absent for legacy attachments without a fileId.
32
38
  * @type {string}
@@ -37,6 +37,8 @@ function instanceOfMessageAttachmentsInner(value) {
37
37
  return false;
38
38
  if (!('mimeType' in value) || value['mimeType'] === undefined)
39
39
  return false;
40
+ if (!('name' in value) || value['name'] === undefined)
41
+ return false;
40
42
  return true;
41
43
  }
42
44
  function MessageAttachmentsInnerFromJSON(json) {
@@ -49,6 +51,7 @@ function MessageAttachmentsInnerFromJSONTyped(json, ignoreDiscriminator) {
49
51
  return {
50
52
  'fileId': json['fileId'],
51
53
  'mimeType': json['mimeType'],
54
+ 'name': json['name'],
52
55
  'url': json['url'] == null ? undefined : json['url'],
53
56
  };
54
57
  }
@@ -62,6 +65,7 @@ function MessageAttachmentsInnerToJSONTyped(value, ignoreDiscriminator = false)
62
65
  return {
63
66
  'fileId': value['fileId'],
64
67
  'mimeType': value['mimeType'],
68
+ 'name': value['name'],
65
69
  'url': value['url'],
66
70
  };
67
71
  }
@@ -0,0 +1,76 @@
1
+ /**
2
+ * Athena API
3
+ * REST API for the Athena system
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface Quiz
16
+ */
17
+ export interface Quiz {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof Quiz
22
+ */
23
+ id: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof Quiz
28
+ */
29
+ accountUserId: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof Quiz
34
+ */
35
+ chatId?: string | null;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof Quiz
40
+ */
41
+ title: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof Quiz
46
+ */
47
+ topic: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof Quiz
52
+ */
53
+ mode: QuizModeEnum;
54
+ /**
55
+ *
56
+ * @type {Date}
57
+ * @memberof Quiz
58
+ */
59
+ createdAt: Date;
60
+ }
61
+ /**
62
+ * @export
63
+ */
64
+ export declare const QuizModeEnum: {
65
+ readonly Quiz: "quiz";
66
+ readonly Flashcards: "flashcards";
67
+ };
68
+ export type QuizModeEnum = typeof QuizModeEnum[keyof typeof QuizModeEnum];
69
+ /**
70
+ * Check if a given object implements the Quiz interface.
71
+ */
72
+ export declare function instanceOfQuiz(value: object): value is Quiz;
73
+ export declare function QuizFromJSON(json: any): Quiz;
74
+ export declare function QuizFromJSONTyped(json: any, ignoreDiscriminator: boolean): Quiz;
75
+ export declare function QuizToJSON(json: any): Quiz;
76
+ export declare function QuizToJSONTyped(value?: Quiz | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Athena API
6
+ * REST API for the Athena system
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.QuizModeEnum = void 0;
17
+ exports.instanceOfQuiz = instanceOfQuiz;
18
+ exports.QuizFromJSON = QuizFromJSON;
19
+ exports.QuizFromJSONTyped = QuizFromJSONTyped;
20
+ exports.QuizToJSON = QuizToJSON;
21
+ exports.QuizToJSONTyped = QuizToJSONTyped;
22
+ /**
23
+ * @export
24
+ */
25
+ exports.QuizModeEnum = {
26
+ Quiz: 'quiz',
27
+ Flashcards: 'flashcards'
28
+ };
29
+ /**
30
+ * Check if a given object implements the Quiz interface.
31
+ */
32
+ function instanceOfQuiz(value) {
33
+ if (!('id' in value) || value['id'] === undefined)
34
+ return false;
35
+ if (!('accountUserId' in value) || value['accountUserId'] === undefined)
36
+ return false;
37
+ if (!('title' in value) || value['title'] === undefined)
38
+ return false;
39
+ if (!('topic' in value) || value['topic'] === undefined)
40
+ return false;
41
+ if (!('mode' in value) || value['mode'] === undefined)
42
+ return false;
43
+ if (!('createdAt' in value) || value['createdAt'] === undefined)
44
+ return false;
45
+ return true;
46
+ }
47
+ function QuizFromJSON(json) {
48
+ return QuizFromJSONTyped(json, false);
49
+ }
50
+ function QuizFromJSONTyped(json, ignoreDiscriminator) {
51
+ if (json == null) {
52
+ return json;
53
+ }
54
+ return {
55
+ 'id': json['id'],
56
+ 'accountUserId': json['accountUserId'],
57
+ 'chatId': json['chatId'] == null ? undefined : json['chatId'],
58
+ 'title': json['title'],
59
+ 'topic': json['topic'],
60
+ 'mode': json['mode'],
61
+ 'createdAt': (new Date(json['createdAt'])),
62
+ };
63
+ }
64
+ function QuizToJSON(json) {
65
+ return QuizToJSONTyped(json, false);
66
+ }
67
+ function QuizToJSONTyped(value, ignoreDiscriminator = false) {
68
+ if (value == null) {
69
+ return value;
70
+ }
71
+ return {
72
+ 'id': value['id'],
73
+ 'accountUserId': value['accountUserId'],
74
+ 'chatId': value['chatId'],
75
+ 'title': value['title'],
76
+ 'topic': value['topic'],
77
+ 'mode': value['mode'],
78
+ 'createdAt': value['createdAt'].toISOString(),
79
+ };
80
+ }