@instructure/athena-api-client 3.5.3 → 3.6.0

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.
@@ -22,6 +22,12 @@ export interface TriggerStudyObjectiveConceptExtractionRequest {
22
22
  * @memberof TriggerStudyObjectiveConceptExtractionRequest
23
23
  */
24
24
  canvasCourseId?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof TriggerStudyObjectiveConceptExtractionRequest
29
+ */
30
+ syllabusHtml?: string | null;
25
31
  /**
26
32
  * One to fifty items whose study-objective concepts should be extracted — Canvas objects and/or user-defined study objectives.
27
33
  * @type {Array<TriggerStudyObjectiveConceptExtractionRequestItemsInner>}
@@ -29,6 +29,7 @@ export function TriggerStudyObjectiveConceptExtractionRequestFromJSONTyped(json,
29
29
  }
30
30
  return {
31
31
  'canvasCourseId': json['canvasCourseId'] == null ? undefined : json['canvasCourseId'],
32
+ 'syllabusHtml': json['syllabusHtml'] == null ? undefined : json['syllabusHtml'],
32
33
  'items': (json['items'].map(TriggerStudyObjectiveConceptExtractionRequestItemsInnerFromJSON)),
33
34
  };
34
35
  }
@@ -41,6 +42,7 @@ export function TriggerStudyObjectiveConceptExtractionRequestToJSONTyped(value,
41
42
  }
42
43
  return {
43
44
  'canvasCourseId': value['canvasCourseId'],
45
+ 'syllabusHtml': value['syllabusHtml'],
44
46
  'items': (value['items'].map(TriggerStudyObjectiveConceptExtractionRequestItemsInnerToJSON)),
45
47
  };
46
48
  }
@@ -22,6 +22,12 @@ export interface TriggerStudyObjectiveConceptExtractionRequest {
22
22
  * @memberof TriggerStudyObjectiveConceptExtractionRequest
23
23
  */
24
24
  canvasCourseId?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof TriggerStudyObjectiveConceptExtractionRequest
29
+ */
30
+ syllabusHtml?: string | null;
25
31
  /**
26
32
  * One to fifty items whose study-objective concepts should be extracted — Canvas objects and/or user-defined study objectives.
27
33
  * @type {Array<TriggerStudyObjectiveConceptExtractionRequestItemsInner>}
@@ -36,6 +36,7 @@ function TriggerStudyObjectiveConceptExtractionRequestFromJSONTyped(json, ignore
36
36
  }
37
37
  return {
38
38
  'canvasCourseId': json['canvasCourseId'] == null ? undefined : json['canvasCourseId'],
39
+ 'syllabusHtml': json['syllabusHtml'] == null ? undefined : json['syllabusHtml'],
39
40
  'items': (json['items'].map(TriggerStudyObjectiveConceptExtractionRequestItemsInner_1.TriggerStudyObjectiveConceptExtractionRequestItemsInnerFromJSON)),
40
41
  };
41
42
  }
@@ -48,6 +49,7 @@ function TriggerStudyObjectiveConceptExtractionRequestToJSONTyped(value, ignoreD
48
49
  }
49
50
  return {
50
51
  'canvasCourseId': value['canvasCourseId'],
52
+ 'syllabusHtml': value['syllabusHtml'],
51
53
  'items': (value['items'].map(TriggerStudyObjectiveConceptExtractionRequestItemsInner_1.TriggerStudyObjectiveConceptExtractionRequestItemsInnerToJSON)),
52
54
  };
53
55
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@instructure/athena-api-client",
3
3
  "private": false,
4
- "version": "3.5.3",
4
+ "version": "3.6.0",
5
5
  "description": "OpenAPI client for the Athena API",
6
6
  "author": "Instructure",
7
7
  "repository": {