From f4a5922af17ba9f8c349c467f5797d51519fe1f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Ca=C3=B1as?= Date: Mon, 13 Mar 2023 17:24:16 +0100 Subject: [PATCH] feat(36): Support to upload file activities --- CHANGELOG.md | 8 + docs/README.md | 97 +++-- docs/README.md-E | 351 ++++++++++-------- docs/interfaces/verblike.md-E | 2 +- docs/modules/audiovideotypes.md | 4 +- docs/modules/audiovideotypes.md-E | 4 +- docs/modules/booktypes.md | 6 +- docs/modules/booktypes.md-E | 6 +- docs/modules/categories.md-E | 2 +- docs/modules/closedresponsetypes.md | 22 +- docs/modules/closedresponsetypes.md-E | 22 +- docs/modules/discussiontypes.md | 8 +- docs/modules/discussiontypes.md-E | 8 +- docs/modules/extensions.md-E | 34 +- docs/modules/feedbacktypes.md | 6 +- docs/modules/feedbacktypes.md-E | 6 +- docs/modules/noninteractivetypes.md | 4 +- docs/modules/noninteractivetypes.md-E | 4 +- docs/modules/openanswertypes.md | 12 +- docs/modules/openanswertypes.md-E | 20 +- docs/modules/othertypes.md | 4 +- docs/modules/othertypes.md-E | 4 +- docs/modules/recipes.md-E | 14 +- docs/modules/scormtypes.md | 10 +- docs/modules/scormtypes.md-E | 10 +- docs/modules/verbs.md-E | 52 +-- package.json | 2 +- src/activity-types/activity-types.checkers.ts | 14 +- src/activity-types/activity-types.ts | 3 + 29 files changed, 420 insertions(+), 319 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b53318a..8bfcabf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +## [2.17.0](https://github.com/Gradiant/smart-xapi-dsl/compare/v2.16.0...v2.17.0) (2023-03-13) + + +### Features + +* support new activity types: upload file activities ([]()) + ## [2.16.0](https://github.com/Gradiant/smart-xapi-dsl/compare/v2.15.2...v2.16.0) (2022-11-14) diff --git a/docs/README.md b/docs/README.md index 1a7459a..b5f4ec8 100644 --- a/docs/README.md +++ b/docs/README.md @@ -260,6 +260,7 @@ * [isTerminated](#isterminated) * [isTerminatedVerb](#isterminatedverb) * [isUnit](#isunit) +* [isUploadFile](#isuploadfile) * [isVideo](#isvideo) * [isVideoRecording](#isvideorecording) * [isVotedDown](#isvoteddown) @@ -944,6 +945,7 @@ ___ openAnswerTypes.draw, openAnswerTypes.essay, openAnswerTypes.genericOpenAnswer, + openAnswerTypes.uploadFile, openAnswerTypes.videoRecording, closedResponseTypes.matchingPairs, closedResponseTypes.singleChoice, @@ -958,7 +960,7 @@ ___ closedResponseTypes.responseInImage ]) -*Defined in [src/activity-types/activity-types.ts:121](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L121)* +*Defined in [src/activity-types/activity-types.ts:123](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L123)* ___ @@ -1075,7 +1077,7 @@ ___ **● isAttempt**: *`function`* = isActivityType(nonInteractiveTypes.attempt) -*Defined in [src/activity-types/activity-types.checkers.ts:196](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L196)* +*Defined in [src/activity-types/activity-types.checkers.ts:208](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L208)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1095,7 +1097,7 @@ ___ **● isAudio**: *`function`* = isActivityType(audioVideoTypes.audio) -*Defined in [src/activity-types/activity-types.checkers.ts:175](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L175)* +*Defined in [src/activity-types/activity-types.checkers.ts:187](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L187)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1135,7 +1137,7 @@ ___ **● isAudioVideo**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isAudio, isVideo]) -*Defined in [src/activity-types/activity-types.checkers.ts:188](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L188)* +*Defined in [src/activity-types/activity-types.checkers.ts:200](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L200)* ___ @@ -1184,7 +1186,7 @@ ___ **● isBook**: *`function`* = isActivityType(bookTypes.book) -*Defined in [src/activity-types/activity-types.checkers.ts:217](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L217)* +*Defined in [src/activity-types/activity-types.checkers.ts:229](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L229)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1204,7 +1206,7 @@ ___ **● isBookContainer**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isBook, isUnit, isLesson]) -*Defined in [src/activity-types/activity-types.checkers.ts:257](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L257)* +*Defined in [src/activity-types/activity-types.checkers.ts:269](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L269)* ___ @@ -1340,7 +1342,7 @@ ___ **● isDebate**: *`function`* = isActivityType(discussionTypes.debate) -*Defined in [src/activity-types/activity-types.checkers.ts:167](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L167)* +*Defined in [src/activity-types/activity-types.checkers.ts:179](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L179)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1446,7 +1448,7 @@ ___ **● isDiscussion**: *`function`* = isActivityType(discussionTypes.discussion) -*Defined in [src/activity-types/activity-types.checkers.ts:152](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L152)* +*Defined in [src/activity-types/activity-types.checkers.ts:164](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L164)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1718,7 +1720,7 @@ ___ **● isFeedback**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isQuestion, isReview, isSurvey]) -*Defined in [src/activity-types/activity-types.checkers.ts:328](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L328)* +*Defined in [src/activity-types/activity-types.checkers.ts:340](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L340)* ___ @@ -1747,7 +1749,7 @@ ___ **● isForumReply**: *`function`* = isActivityType(discussionTypes.forumReply) -*Defined in [src/activity-types/activity-types.checkers.ts:157](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L157)* +*Defined in [src/activity-types/activity-types.checkers.ts:169](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L169)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1767,7 +1769,7 @@ ___ **● isForumTopic**: *`function`* = isActivityType(discussionTypes.forumTopic) -*Defined in [src/activity-types/activity-types.checkers.ts:162](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L162)* +*Defined in [src/activity-types/activity-types.checkers.ts:174](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L174)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1956,7 +1958,7 @@ ___ **● isLaeProcessable**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isOpenAnswer, isClosedResponse, isAudioVideo]) -*Defined in [src/activity-types/activity-types.checkers.ts:280](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L280)* +*Defined in [src/activity-types/activity-types.checkers.ts:292](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L292)* ___ @@ -1965,7 +1967,7 @@ ___ **● isLesson**: *`function`* = isActivityType(bookTypes.lesson) -*Defined in [src/activity-types/activity-types.checkers.ts:227](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L227)* +*Defined in [src/activity-types/activity-types.checkers.ts:239](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L239)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2028,7 +2030,7 @@ ___ **● isLikert**: *`function`* = isActivityType(otherTypes.likert) -*Defined in [src/activity-types/activity-types.checkers.ts:240](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L240)* +*Defined in [src/activity-types/activity-types.checkers.ts:252](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L252)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2191,7 +2193,7 @@ ___ **● isNonInteractive**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isAttempt, isNonInteractiveAttempt]) -*Defined in [src/activity-types/activity-types.checkers.ts:209](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L209)* +*Defined in [src/activity-types/activity-types.checkers.ts:221](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L221)* ___ @@ -2200,7 +2202,7 @@ ___ **● isNonInteractiveAttempt**: *`function`* = isActivityType(nonInteractiveTypes.nonInteractive) -*Defined in [src/activity-types/activity-types.checkers.ts:201](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L201)* +*Defined in [src/activity-types/activity-types.checkers.ts:213](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L213)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2238,9 +2240,16 @@ ___ ### `` isOpenAnswer -**● isOpenAnswer**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isAudioRecording, isDraw, isEssay, isGenericOpenAnswer, isVideoRecording]) +**● isOpenAnswer**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([ + isAudioRecording, + isDraw, + isEssay, + isGenericOpenAnswer, + isUploadFile, + isVideoRecording +]) -*Defined in [src/activity-types/activity-types.checkers.ts:144](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L144)* +*Defined in [src/activity-types/activity-types.checkers.ts:149](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L149)* ___ @@ -2269,7 +2278,7 @@ ___ **● isOtherType**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isLikert, isQuiz]) -*Defined in [src/activity-types/activity-types.checkers.ts:248](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L248)* +*Defined in [src/activity-types/activity-types.checkers.ts:260](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L260)* ___ @@ -2450,7 +2459,7 @@ ___ **● isQuestion**: *`function`* = isActivityType(feedbackTypes.question) -*Defined in [src/activity-types/activity-types.checkers.ts:309](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L309)* +*Defined in [src/activity-types/activity-types.checkers.ts:321](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L321)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2470,7 +2479,7 @@ ___ **● isQuiz**: *`function`* = isActivityType(otherTypes.quiz) -*Defined in [src/activity-types/activity-types.checkers.ts:235](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L235)* +*Defined in [src/activity-types/activity-types.checkers.ts:247](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L247)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2596,7 +2605,7 @@ ___ **● isReview**: *`function`* = isActivityType(feedbackTypes.review) -*Defined in [src/activity-types/activity-types.checkers.ts:314](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L314)* +*Defined in [src/activity-types/activity-types.checkers.ts:326](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L326)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2622,7 +2631,7 @@ ___ isScormTextEntry ]) -*Defined in [src/activity-types/activity-types.checkers.ts:367](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L367)* +*Defined in [src/activity-types/activity-types.checkers.ts:379](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L379)* ___ @@ -2631,7 +2640,7 @@ ___ **● isScormChoice**: *`function`* = isActivityType(scormTypes.choice) -*Defined in [src/activity-types/activity-types.checkers.ts:341](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L341)* +*Defined in [src/activity-types/activity-types.checkers.ts:353](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L353)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2651,7 +2660,7 @@ ___ **● isScormGeneric**: *`function`* = isActivityType(scormTypes.genericScorm) -*Defined in [src/activity-types/activity-types.checkers.ts:336](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L336)* +*Defined in [src/activity-types/activity-types.checkers.ts:348](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L348)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2671,7 +2680,7 @@ ___ **● isScormInlineChoice**: *`function`* = isActivityType(scormTypes.inlineChoice) -*Defined in [src/activity-types/activity-types.checkers.ts:351](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L351)* +*Defined in [src/activity-types/activity-types.checkers.ts:363](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L363)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2691,7 +2700,7 @@ ___ **● isScormMultipleChoice**: *`function`* = isActivityType(scormTypes.multipleChoice) -*Defined in [src/activity-types/activity-types.checkers.ts:346](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L346)* +*Defined in [src/activity-types/activity-types.checkers.ts:358](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L358)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2731,7 +2740,7 @@ ___ **● isScormTextEntry**: *`function`* = isActivityType(scormTypes.textEntry) -*Defined in [src/activity-types/activity-types.checkers.ts:356](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L356)* +*Defined in [src/activity-types/activity-types.checkers.ts:368](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L368)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2814,7 +2823,7 @@ ___ **● isSurvey**: *`function`* = isActivityType(feedbackTypes.survey) -*Defined in [src/activity-types/activity-types.checkers.ts:319](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L319)* +*Defined in [src/activity-types/activity-types.checkers.ts:331](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L331)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2877,7 +2886,27 @@ ___ **● isUnit**: *`function`* = isActivityType(bookTypes.unit) -*Defined in [src/activity-types/activity-types.checkers.ts:222](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L222)* +*Defined in [src/activity-types/activity-types.checkers.ts:234](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L234)* + +#### Type declaration +▸(activityType: *`string`*): `boolean` + +**Parameters:** + +| Name | Type | +| ------ | ------ | +| activityType | `string` | + +**Returns:** `boolean` + +___ + + +### `` isUploadFile + +**● isUploadFile**: *`function`* = isActivityType(openAnswerTypes.uploadFile) + +*Defined in [src/activity-types/activity-types.checkers.ts:133](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L133)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2897,7 +2926,7 @@ ___ **● isVideo**: *`function`* = isActivityType(audioVideoTypes.video) -*Defined in [src/activity-types/activity-types.checkers.ts:180](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L180)* +*Defined in [src/activity-types/activity-types.checkers.ts:192](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L192)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2917,7 +2946,7 @@ ___ **● isVideoRecording**: *`function`* = isActivityType(openAnswerTypes.videoRecording) -*Defined in [src/activity-types/activity-types.checkers.ts:133](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L133)* +*Defined in [src/activity-types/activity-types.checkers.ts:138](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L138)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -3140,7 +3169,7 @@ ___ ▸ **isAssessable**(activityType: *`string`*): `boolean` -*Defined in [src/activity-types/activity-types.checkers.ts:301](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L301)* +*Defined in [src/activity-types/activity-types.checkers.ts:313](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.checkers.ts#L313)* **Parameters:** @@ -3235,7 +3264,7 @@ ___ **activityTypes**: *`object`* -*Defined in [src/activity-types/activity-types.ts:91](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L91)* +*Defined in [src/activity-types/activity-types.ts:92](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L92)* ___ diff --git a/docs/README.md-E b/docs/README.md-E index b2c7e19..b51b196 100644 --- a/docs/README.md-E +++ b/docs/README.md-E @@ -260,6 +260,7 @@ * [isTerminated](#isterminated) * [isTerminatedVerb](#isterminatedverb) * [isUnit](#isunit) +* [isUploadFile](#isuploadfile) * [isVideo](#isvideo) * [isVideoRecording](#isvideorecording) * [isVotedDown](#isvoteddown) @@ -297,7 +298,7 @@ ___ **Ƭ ActivityTypeChecker**: *`function`* -*Defined in [src/activity-types/activity-types.checkers.ts:15](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L15)* +*Defined in [src/activity-types/activity-types.checkers.ts:15](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L15)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -344,7 +345,7 @@ ___ **Ƭ AttemptActivityType**: *"https://w3id.org/xapi/smart/activity/attempt"* -*Defined in [src/activity-types/activity-type.types.ts:50](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L50)* +*Defined in [src/activity-types/activity-type.types.ts:50](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L50)* ___ @@ -353,7 +354,7 @@ ___ **Ƭ AudioActivityType**: *"https://w3id.org/xapi/smart/activity/audio"* -*Defined in [src/activity-types/activity-type.types.ts:41](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L41)* +*Defined in [src/activity-types/activity-type.types.ts:41](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L41)* ___ @@ -362,7 +363,7 @@ ___ **Ƭ AudioRecordingActivityType**: *"https://w3id.org/xapi/smart/activity/audio-recording"* -*Defined in [src/activity-types/activity-type.types.ts:12](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L12)* +*Defined in [src/activity-types/activity-type.types.ts:12](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L12)* ___ @@ -371,7 +372,7 @@ ___ **Ƭ AudioVideoType**: *[AudioActivityType](#audioactivitytype) \| [VideoActivityType](#videoactivitytype)* -*Defined in [src/activity-types/activity-type.types.ts:43](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L43)* +*Defined in [src/activity-types/activity-type.types.ts:43](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L43)* ___ @@ -380,7 +381,7 @@ ___ **Ƭ ClosedResponseType**: *[DropDownChoiceActivityType](#dropdownchoiceactivitytype) \| [FillInTheGapsActivityType](#fillinthegapsactivitytype) \| [GenericClosedResponseActivityType](#genericclosedresponseactivitytype) \| [MatchingPairsActivityType](#matchingpairsactivitytype) \| [MultipleChoiceActivityType](#multiplechoiceactivitytype) \| [SingleChoiceActivityType](#singlechoiceactivitytype) \| [WordsBankActivityType](#wordsbankactivitytype) \| [MatrixMultipleChoiceActivityType](#matrixmultiplechoiceactivitytype) \| [MatrixSingleChoiceActivityType](#matrixsinglechoiceactivitytype) \| [ResponseInImageActivityType](#responseinimageactivitytype)* -*Defined in [src/activity-types/activity-type.types.ts:29](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L29)* +*Defined in [src/activity-types/activity-type.types.ts:29](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L29)* ___ @@ -389,7 +390,7 @@ ___ **Ƭ DebateActivityType**: *"https://w3id.org/xapi/smart/activity/discussion"* -*Defined in [src/activity-types/activity-type.types.ts:48](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L48)* +*Defined in [src/activity-types/activity-type.types.ts:48](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L48)* ___ @@ -398,7 +399,7 @@ ___ **Ƭ DiscussionActivityType**: *"http://id.tincanapi.com/activitytype/discussion"* -*Defined in [src/activity-types/activity-type.types.ts:45](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L45)* +*Defined in [src/activity-types/activity-type.types.ts:45](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L45)* ___ @@ -407,7 +408,7 @@ ___ **Ƭ DrawActivityType**: *"https://w3id.org/xapi/smart/activity/draw"* -*Defined in [src/activity-types/activity-type.types.ts:13](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L13)* +*Defined in [src/activity-types/activity-type.types.ts:13](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L13)* ___ @@ -416,7 +417,7 @@ ___ **Ƭ DropDownChoiceActivityType**: *"https://w3id.org/xapi/smart/activity/drop-down-choice"* -*Defined in [src/activity-types/activity-type.types.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L19)* +*Defined in [src/activity-types/activity-type.types.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L19)* ___ @@ -434,7 +435,7 @@ ___ **Ƭ EssayActivityType**: *"https://w3id.org/xapi/smart/activity/essay"* -*Defined in [src/activity-types/activity-type.types.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L14)* +*Defined in [src/activity-types/activity-type.types.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L14)* ___ @@ -443,7 +444,7 @@ ___ **Ƭ FeedbackType**: *[QuestionType](#questiontype) \| [ReviewType](#reviewtype) \| [SurveyType](#surveytype)* -*Defined in [src/activity-types/activity-type.types.ts:59](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L59)* +*Defined in [src/activity-types/activity-type.types.ts:59](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L59)* ___ @@ -452,7 +453,7 @@ ___ **Ƭ FillInTheGapsActivityType**: *"https://w3id.org/xapi/smart/activity/fill-in-the-gaps"* -*Defined in [src/activity-types/activity-type.types.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L20)* +*Defined in [src/activity-types/activity-type.types.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L20)* ___ @@ -461,7 +462,7 @@ ___ **Ƭ ForumReplyActivityType**: *"http://id.tincanapi.com/activitytype/forum-reply"* -*Defined in [src/activity-types/activity-type.types.ts:46](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L46)* +*Defined in [src/activity-types/activity-type.types.ts:46](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L46)* ___ @@ -470,7 +471,7 @@ ___ **Ƭ ForumTopicActivityType**: *"http://id.tincanapi.com/activitytype/forum-topic"* -*Defined in [src/activity-types/activity-type.types.ts:47](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L47)* +*Defined in [src/activity-types/activity-type.types.ts:47](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L47)* ___ @@ -479,7 +480,7 @@ ___ **Ƭ GenericClosedResponseActivityType**: *"https://w3id.org/xapi/smart/activity/closed-response"* -*Defined in [src/activity-types/activity-type.types.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L21)* +*Defined in [src/activity-types/activity-type.types.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L21)* ___ @@ -488,7 +489,7 @@ ___ **Ƭ GenericOpenAnswerActivityType**: *"https://w3id.org/xapi/smart/activity/open-answer"* -*Defined in [src/activity-types/activity-type.types.ts:16](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L16)* +*Defined in [src/activity-types/activity-type.types.ts:16](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L16)* ___ @@ -578,7 +579,7 @@ ___ **Ƭ LikertType**: *"https://w3id.org/xapi/smart/activity/likert"* -*Defined in [src/activity-types/activity-type.types.ts:74](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L74)* +*Defined in [src/activity-types/activity-type.types.ts:74](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L74)* ___ @@ -596,7 +597,7 @@ ___ **Ƭ MatchingPairsActivityType**: *"https://w3id.org/xapi/smart/activity/matching-pairs"* -*Defined in [src/activity-types/activity-type.types.ts:22](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L22)* +*Defined in [src/activity-types/activity-type.types.ts:22](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L22)* ___ @@ -605,7 +606,7 @@ ___ **Ƭ MatrixMultipleChoiceActivityType**: *"https://w3id.org/xapi/smart/activity/matrix-multiple-choice"* -*Defined in [src/activity-types/activity-type.types.ts:26](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L26)* +*Defined in [src/activity-types/activity-type.types.ts:26](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L26)* ___ @@ -614,7 +615,7 @@ ___ **Ƭ MatrixSingleChoiceActivityType**: *"https://w3id.org/xapi/smart/activity/matrix-single-choice"* -*Defined in [src/activity-types/activity-type.types.ts:27](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L27)* +*Defined in [src/activity-types/activity-type.types.ts:27](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L27)* ___ @@ -623,7 +624,7 @@ ___ **Ƭ MultipleChoiceActivityType**: *"https://w3id.org/xapi/smart/activity/multiple-choice"* -*Defined in [src/activity-types/activity-type.types.ts:23](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L23)* +*Defined in [src/activity-types/activity-type.types.ts:23](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L23)* ___ @@ -632,7 +633,7 @@ ___ **Ƭ NonInteractiveAttemptActivityType**: *"https://w3id.org/xapi/smart/activity/no-interactive"* -*Defined in [src/activity-types/activity-type.types.ts:51](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L51)* +*Defined in [src/activity-types/activity-type.types.ts:51](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L51)* ___ @@ -641,7 +642,7 @@ ___ **Ƭ NonInteractiveType**: *[AttemptActivityType](#attemptactivitytype) \| [NonInteractiveAttemptActivityType](#noninteractiveattemptactivitytype)* -*Defined in [src/activity-types/activity-type.types.ts:52](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L52)* +*Defined in [src/activity-types/activity-type.types.ts:52](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L52)* ___ @@ -659,7 +660,7 @@ ___ **Ƭ OpenAnswerType**: *[EssayActivityType](#essayactivitytype) \| [DrawActivityType](#drawactivitytype) \| [GenericOpenAnswerActivityType](#genericopenansweractivitytype)* -*Defined in [src/activity-types/activity-type.types.ts:17](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L17)* +*Defined in [src/activity-types/activity-type.types.ts:17](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L17)* ___ @@ -668,7 +669,7 @@ ___ **Ƭ OtherType**: *[LikertType](#likerttype) \| [QuizType](#quiztype)* -*Defined in [src/activity-types/activity-type.types.ts:77](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L77)* +*Defined in [src/activity-types/activity-type.types.ts:77](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L77)* ___ @@ -677,7 +678,7 @@ ___ **Ƭ ProcessableActivityType**: *[OpenAnswerType](#openanswertype) \| [ClosedResponseType](#closedresponsetype) \| [AudioVideoType](#audiovideotype)* -*Defined in [src/activity-types/activity-type.types.ts:54](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L54)* +*Defined in [src/activity-types/activity-type.types.ts:54](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L54)* ___ @@ -686,7 +687,7 @@ ___ **Ƭ QuestionType**: *"http://activitystrea.ms/schema/1.0/question"* -*Defined in [src/activity-types/activity-type.types.ts:56](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L56)* +*Defined in [src/activity-types/activity-type.types.ts:56](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L56)* ___ @@ -695,7 +696,7 @@ ___ **Ƭ QuizType**: *"https://w3id.org/xapi/smart/activity/quiz"* -*Defined in [src/activity-types/activity-type.types.ts:75](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L75)* +*Defined in [src/activity-types/activity-type.types.ts:75](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L75)* ___ @@ -704,7 +705,7 @@ ___ **Ƭ RecipeChecker**: *`function`* -*Defined in [src/recipes/recipes.checkers.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.checkers.ts#L4)* +*Defined in [src/recipes/recipes.checkers.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.checkers.ts#L4)* #### Type declaration ▸(recipe: *`string`*): `boolean` @@ -724,7 +725,7 @@ ___ **Ƭ ResponseInImageActivityType**: *"https://w3id.org/xapi/smart/activity/response-in-image"* -*Defined in [src/activity-types/activity-type.types.ts:28](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L28)* +*Defined in [src/activity-types/activity-type.types.ts:28](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L28)* ___ @@ -733,7 +734,7 @@ ___ **Ƭ ReviewType**: *"http://activitystrea.ms/schema/1.0/review"* -*Defined in [src/activity-types/activity-type.types.ts:57](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L57)* +*Defined in [src/activity-types/activity-type.types.ts:57](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L57)* ___ @@ -742,7 +743,7 @@ ___ **Ƭ ScormChoiceActivityType**: *"http://imsglobal.org/qti/choice"* -*Defined in [src/activity-types/activity-type.types.ts:61](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L61)* +*Defined in [src/activity-types/activity-type.types.ts:61](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L61)* ___ @@ -751,7 +752,7 @@ ___ **Ƭ ScormGenericActivityType**: *"https://w3id.org/xapi/smart/activity/scorm"* -*Defined in [src/activity-types/activity-type.types.ts:65](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L65)* +*Defined in [src/activity-types/activity-type.types.ts:65](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L65)* ___ @@ -760,7 +761,7 @@ ___ **Ƭ ScormInlineChoiceActivityType**: *"http://imsglobal.org/qti/inlineChoice"* -*Defined in [src/activity-types/activity-type.types.ts:63](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L63)* +*Defined in [src/activity-types/activity-type.types.ts:63](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L63)* ___ @@ -769,7 +770,7 @@ ___ **Ƭ ScormMultipleChoiceActivityType**: *"http://imsglobal.org/qti/choiceMultiple"* -*Defined in [src/activity-types/activity-type.types.ts:62](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L62)* +*Defined in [src/activity-types/activity-type.types.ts:62](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L62)* ___ @@ -778,7 +779,7 @@ ___ **Ƭ ScormTextEntryActivityType**: *"http://imsglobal.org/qti/textEntry"* -*Defined in [src/activity-types/activity-type.types.ts:64](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L64)* +*Defined in [src/activity-types/activity-type.types.ts:64](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L64)* ___ @@ -787,7 +788,7 @@ ___ **Ƭ ScormType**: *[ScormChoiceActivityType](#scormchoiceactivitytype) \| [ScormMultipleChoiceActivityType](#scormmultiplechoiceactivitytype) \| [ScormInlineChoiceActivityType](#scorminlinechoiceactivitytype) \| [ScormTextEntryActivityType](#scormtextentryactivitytype) \| [ScormGenericActivityType](#scormgenericactivitytype)* -*Defined in [src/activity-types/activity-type.types.ts:67](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L67)* +*Defined in [src/activity-types/activity-type.types.ts:67](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L67)* ___ @@ -814,7 +815,7 @@ ___ **Ƭ SingleChoiceActivityType**: *"https://w3id.org/xapi/smart/activity/single-choice"* -*Defined in [src/activity-types/activity-type.types.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L24)* +*Defined in [src/activity-types/activity-type.types.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L24)* ___ @@ -823,7 +824,7 @@ ___ **Ƭ SurveyType**: *"http://id.tincanapi.com/activitytype/survey"* -*Defined in [src/activity-types/activity-type.types.ts:58](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L58)* +*Defined in [src/activity-types/activity-type.types.ts:58](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L58)* ___ @@ -859,7 +860,7 @@ ___ **Ƭ VerbChecker**: *`function`* -*Defined in [src/verbs/verbs.types.ts:7](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.types.ts#L7)* +*Defined in [src/verbs/verbs.types.ts:7](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.types.ts#L7)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -882,7 +883,7 @@ ___ **Ƭ VerbIdChecker**: *`function`* -*Defined in [src/verbs/verbs.types.ts:1](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.types.ts#L1)* +*Defined in [src/verbs/verbs.types.ts:1](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.types.ts#L1)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -911,7 +912,7 @@ ___ **Ƭ VideoActivityType**: *"https://w3id.org/xapi/smart/activity/video"* -*Defined in [src/activity-types/activity-type.types.ts:42](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L42)* +*Defined in [src/activity-types/activity-type.types.ts:42](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L42)* ___ @@ -920,7 +921,7 @@ ___ **Ƭ VideoRecordingActivityType**: *"https://w3id.org/xapi/smart/activity/video-recording"* -*Defined in [src/activity-types/activity-type.types.ts:15](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L15)* +*Defined in [src/activity-types/activity-type.types.ts:15](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L15)* ___ @@ -929,7 +930,7 @@ ___ **Ƭ WordsBankActivityType**: *"https://w3id.org/xapi/smart/activity/words-bank"* -*Defined in [src/activity-types/activity-type.types.ts:25](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-type.types.ts#L25)* +*Defined in [src/activity-types/activity-type.types.ts:25](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-type.types.ts#L25)* ___ @@ -944,6 +945,7 @@ ___ openAnswerTypes.draw, openAnswerTypes.essay, openAnswerTypes.genericOpenAnswer, + openAnswerTypes.uploadFile, openAnswerTypes.videoRecording, closedResponseTypes.matchingPairs, closedResponseTypes.singleChoice, @@ -958,7 +960,7 @@ ___ closedResponseTypes.responseInImage ]) -*Defined in [src/activity-types/activity-types.ts:121](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L121)* +*Defined in [src/activity-types/activity-types.ts:123](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L123)* ___ @@ -989,7 +991,7 @@ ___ **● isAccessed**: *`function`* = isVerbId(verbs.accessed.id) -*Defined in [src/verbs/verb-ids.checkers.ts:119](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L119)* +*Defined in [src/verbs/verb-ids.checkers.ts:119](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L119)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1009,7 +1011,7 @@ ___ **● isAccessedVerb**: *`function`* = isVerb(verbs.accessed) -*Defined in [src/verbs/verbs.checkers.ts:119](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L119)* +*Defined in [src/verbs/verbs.checkers.ts:119](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L119)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1032,7 +1034,7 @@ ___ **● isAnswered**: *`function`* = isVerbId(verbs.answered.id) -*Defined in [src/verbs/verb-ids.checkers.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L14)* +*Defined in [src/verbs/verb-ids.checkers.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L14)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1052,7 +1054,7 @@ ___ **● isAnsweredVerb**: *`function`* = isVerb(verbs.answered) -*Defined in [src/verbs/verbs.checkers.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L14)* +*Defined in [src/verbs/verbs.checkers.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L14)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1075,7 +1077,7 @@ ___ **● isAttempt**: *`function`* = isActivityType(nonInteractiveTypes.attempt) -*Defined in [src/activity-types/activity-types.checkers.ts:196](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L196)* +*Defined in [src/activity-types/activity-types.checkers.ts:208](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L208)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1095,7 +1097,7 @@ ___ **● isAudio**: *`function`* = isActivityType(audioVideoTypes.audio) -*Defined in [src/activity-types/activity-types.checkers.ts:175](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L175)* +*Defined in [src/activity-types/activity-types.checkers.ts:187](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L187)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1115,7 +1117,7 @@ ___ **● isAudioRecording**: *`function`* = isActivityType(openAnswerTypes.audioRecording) -*Defined in [src/activity-types/activity-types.checkers.ts:113](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L113)* +*Defined in [src/activity-types/activity-types.checkers.ts:113](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L113)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1135,7 +1137,7 @@ ___ **● isAudioVideo**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isAudio, isVideo]) -*Defined in [src/activity-types/activity-types.checkers.ts:188](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L188)* +*Defined in [src/activity-types/activity-types.checkers.ts:200](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L200)* ___ @@ -1144,7 +1146,7 @@ ___ **● isAudioVideoRecipe**: *`function`* = isRecipe(recipes.audioVideo) -*Defined in [src/recipes/recipes.checkers.ts:25](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.checkers.ts#L25)* +*Defined in [src/recipes/recipes.checkers.ts:25](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.checkers.ts#L25)* #### Type declaration ▸(recipe: *`string`*): `boolean` @@ -1164,7 +1166,7 @@ ___ **● isBinaryChoice**: *`function`* = isActivityType(closedResponseTypes.binaryChoice) -*Defined in [src/activity-types/activity-types.checkers.ts:28](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L28)* +*Defined in [src/activity-types/activity-types.checkers.ts:28](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L28)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1184,7 +1186,7 @@ ___ **● isBook**: *`function`* = isActivityType(bookTypes.book) -*Defined in [src/activity-types/activity-types.checkers.ts:217](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L217)* +*Defined in [src/activity-types/activity-types.checkers.ts:229](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L229)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1204,7 +1206,7 @@ ___ **● isBookContainer**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isBook, isUnit, isLesson]) -*Defined in [src/activity-types/activity-types.checkers.ts:257](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L257)* +*Defined in [src/activity-types/activity-types.checkers.ts:269](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L269)* ___ @@ -1225,7 +1227,7 @@ ___ isResponseInImage ]) -*Defined in [src/activity-types/activity-types.checkers.ts:93](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L93)* +*Defined in [src/activity-types/activity-types.checkers.ts:93](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L93)* ___ @@ -1234,7 +1236,7 @@ ___ **● isClosedResponseRecipe**: *`function`* = isRecipe(recipes.closedResponse) -*Defined in [src/recipes/recipes.checkers.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.checkers.ts#L20)* +*Defined in [src/recipes/recipes.checkers.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.checkers.ts#L20)* #### Type declaration ▸(recipe: *`string`*): `boolean` @@ -1254,7 +1256,7 @@ ___ **● isCompleted**: *`function`* = isVerbId(verbs.completed.id) -*Defined in [src/verbs/verb-ids.checkers.ts:69](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L69)* +*Defined in [src/verbs/verb-ids.checkers.ts:69](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L69)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1274,7 +1276,7 @@ ___ **● isCompletedVerb**: *`function`* = isVerb(verbs.completed) -*Defined in [src/verbs/verbs.checkers.ts:69](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L69)* +*Defined in [src/verbs/verbs.checkers.ts:69](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L69)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1297,7 +1299,7 @@ ___ **● isCreated**: *`function`* = isVerbId(verbs.created.id) -*Defined in [src/verbs/verb-ids.checkers.ts:124](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L124)* +*Defined in [src/verbs/verb-ids.checkers.ts:124](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L124)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1317,7 +1319,7 @@ ___ **● isCreatedVerb**: *`function`* = isVerb(verbs.created) -*Defined in [src/verbs/verbs.checkers.ts:124](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L124)* +*Defined in [src/verbs/verbs.checkers.ts:124](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L124)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1340,7 +1342,7 @@ ___ **● isDebate**: *`function`* = isActivityType(discussionTypes.debate) -*Defined in [src/activity-types/activity-types.checkers.ts:167](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L167)* +*Defined in [src/activity-types/activity-types.checkers.ts:179](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L179)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1360,7 +1362,7 @@ ___ **● isDeleted**: *`function`* = isVerbId(verbs.deleted.id) -*Defined in [src/verbs/verb-ids.checkers.ts:94](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L94)* +*Defined in [src/verbs/verb-ids.checkers.ts:94](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L94)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1380,7 +1382,7 @@ ___ **● isDeletedVerb**: *`function`* = isVerb(verbs.deleted) -*Defined in [src/verbs/verbs.checkers.ts:94](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L94)* +*Defined in [src/verbs/verbs.checkers.ts:94](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L94)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1403,7 +1405,7 @@ ___ **● isDisabled**: *`function`* = isVerbId(verbs.disabled.id) -*Defined in [src/verbs/verb-ids.checkers.ts:79](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L79)* +*Defined in [src/verbs/verb-ids.checkers.ts:79](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L79)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1423,7 +1425,7 @@ ___ **● isDisabledVerb**: *`function`* = isVerb(verbs.disabled) -*Defined in [src/verbs/verbs.checkers.ts:79](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L79)* +*Defined in [src/verbs/verbs.checkers.ts:79](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L79)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1446,7 +1448,7 @@ ___ **● isDiscussion**: *`function`* = isActivityType(discussionTypes.discussion) -*Defined in [src/activity-types/activity-types.checkers.ts:152](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L152)* +*Defined in [src/activity-types/activity-types.checkers.ts:164](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L164)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1466,7 +1468,7 @@ ___ **● isDiscussionRecipe**: *`function`* = isRecipe(recipes.discussion) -*Defined in [src/recipes/recipes.checkers.ts:30](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.checkers.ts#L30)* +*Defined in [src/recipes/recipes.checkers.ts:30](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.checkers.ts#L30)* #### Type declaration ▸(recipe: *`string`*): `boolean` @@ -1486,7 +1488,7 @@ ___ **● isDraw**: *`function`* = isActivityType(openAnswerTypes.draw) -*Defined in [src/activity-types/activity-types.checkers.ts:118](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L118)* +*Defined in [src/activity-types/activity-types.checkers.ts:118](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L118)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1506,7 +1508,7 @@ ___ **● isDropDownChoice**: *`function`* = isActivityType(closedResponseTypes.dropDownChoice) -*Defined in [src/activity-types/activity-types.checkers.ts:33](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L33)* +*Defined in [src/activity-types/activity-types.checkers.ts:33](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L33)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1526,7 +1528,7 @@ ___ **● isEdited**: *`function`* = isVerbId(verbs.edited.id) -*Defined in [src/verbs/verb-ids.checkers.ts:134](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L134)* +*Defined in [src/verbs/verb-ids.checkers.ts:134](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L134)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1546,7 +1548,7 @@ ___ **● isEditedVerb**: *`function`* = isVerb(verbs.edited) -*Defined in [src/verbs/verbs.checkers.ts:134](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L134)* +*Defined in [src/verbs/verbs.checkers.ts:134](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L134)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1569,7 +1571,7 @@ ___ **● isEnabled**: *`function`* = isVerbId(verbs.enabled.id) -*Defined in [src/verbs/verb-ids.checkers.ts:74](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L74)* +*Defined in [src/verbs/verb-ids.checkers.ts:74](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L74)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1589,7 +1591,7 @@ ___ **● isEnabledVerb**: *`function`* = isVerb(verbs.enabled) -*Defined in [src/verbs/verbs.checkers.ts:74](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L74)* +*Defined in [src/verbs/verbs.checkers.ts:74](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L74)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1612,7 +1614,7 @@ ___ **● isEssay**: *`function`* = isActivityType(openAnswerTypes.essay) -*Defined in [src/activity-types/activity-types.checkers.ts:123](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L123)* +*Defined in [src/activity-types/activity-types.checkers.ts:123](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L123)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1632,7 +1634,7 @@ ___ **● isEvaluated**: *`function`* = isVerbId(verbs.evaluated.id) -*Defined in [src/verbs/verb-ids.checkers.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L19)* +*Defined in [src/verbs/verb-ids.checkers.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L19)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1652,7 +1654,7 @@ ___ **● isEvaluatedVerb**: *`function`* = isVerb(verbs.evaluated) -*Defined in [src/verbs/verbs.checkers.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L19)* +*Defined in [src/verbs/verbs.checkers.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L19)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1675,7 +1677,7 @@ ___ **● isFailed**: *`function`* = isVerbId(verbs.failed.id) -*Defined in [src/verbs/verb-ids.checkers.ts:29](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L29)* +*Defined in [src/verbs/verb-ids.checkers.ts:29](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L29)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1695,7 +1697,7 @@ ___ **● isFailedVerb**: *`function`* = isVerb(verbs.failed) -*Defined in [src/verbs/verbs.checkers.ts:29](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L29)* +*Defined in [src/verbs/verbs.checkers.ts:29](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L29)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1718,7 +1720,7 @@ ___ **● isFeedback**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isQuestion, isReview, isSurvey]) -*Defined in [src/activity-types/activity-types.checkers.ts:328](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L328)* +*Defined in [src/activity-types/activity-types.checkers.ts:340](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L340)* ___ @@ -1727,7 +1729,7 @@ ___ **● isFillInTheGaps**: *`function`* = isActivityType(closedResponseTypes.fillInTheGaps) -*Defined in [src/activity-types/activity-types.checkers.ts:38](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L38)* +*Defined in [src/activity-types/activity-types.checkers.ts:38](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L38)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1747,7 +1749,7 @@ ___ **● isForumReply**: *`function`* = isActivityType(discussionTypes.forumReply) -*Defined in [src/activity-types/activity-types.checkers.ts:157](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L157)* +*Defined in [src/activity-types/activity-types.checkers.ts:169](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L169)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1767,7 +1769,7 @@ ___ **● isForumTopic**: *`function`* = isActivityType(discussionTypes.forumTopic) -*Defined in [src/activity-types/activity-types.checkers.ts:162](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L162)* +*Defined in [src/activity-types/activity-types.checkers.ts:174](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L174)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1787,7 +1789,7 @@ ___ **● isGenericClosedResponse**: *`function`* = isActivityType(closedResponseTypes.genericClosedResponse) -*Defined in [src/activity-types/activity-types.checkers.ts:43](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L43)* +*Defined in [src/activity-types/activity-types.checkers.ts:43](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L43)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1807,7 +1809,7 @@ ___ **● isGenericOpenAnswer**: *`function`* = isActivityType(openAnswerTypes.genericOpenAnswer) -*Defined in [src/activity-types/activity-types.checkers.ts:128](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L128)* +*Defined in [src/activity-types/activity-types.checkers.ts:128](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L128)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1827,7 +1829,7 @@ ___ **● isInitialized**: *`function`* = isVerbId(verbs.initialized.id) -*Defined in [src/verbs/verb-ids.checkers.ts:34](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L34)* +*Defined in [src/verbs/verb-ids.checkers.ts:34](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L34)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1847,7 +1849,7 @@ ___ **● isInitializedVerb**: *`function`* = isVerb(verbs.initialized) -*Defined in [src/verbs/verbs.checkers.ts:34](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L34)* +*Defined in [src/verbs/verbs.checkers.ts:34](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L34)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1870,7 +1872,7 @@ ___ **● isInteracted**: *`function`* = isVerbId(verbs.interacted.id) -*Defined in [src/verbs/verb-ids.checkers.ts:39](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L39)* +*Defined in [src/verbs/verb-ids.checkers.ts:39](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L39)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1890,7 +1892,7 @@ ___ **● isInteractedVerb**: *`function`* = isVerb(verbs.interacted) -*Defined in [src/verbs/verbs.checkers.ts:39](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L39)* +*Defined in [src/verbs/verbs.checkers.ts:39](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L39)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1913,7 +1915,7 @@ ___ **● isJoined**: *`function`* = isVerbId(verbs.joined.id) -*Defined in [src/verbs/verb-ids.checkers.ts:129](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L129)* +*Defined in [src/verbs/verb-ids.checkers.ts:129](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L129)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -1933,7 +1935,7 @@ ___ **● isJoinedVerb**: *`function`* = isVerb(verbs.joined) -*Defined in [src/verbs/verbs.checkers.ts:129](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L129)* +*Defined in [src/verbs/verbs.checkers.ts:129](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L129)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -1956,7 +1958,7 @@ ___ **● isLaeProcessable**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isOpenAnswer, isClosedResponse, isAudioVideo]) -*Defined in [src/activity-types/activity-types.checkers.ts:280](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L280)* +*Defined in [src/activity-types/activity-types.checkers.ts:292](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L292)* ___ @@ -1965,7 +1967,7 @@ ___ **● isLesson**: *`function`* = isActivityType(bookTypes.lesson) -*Defined in [src/activity-types/activity-types.checkers.ts:227](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L227)* +*Defined in [src/activity-types/activity-types.checkers.ts:239](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L239)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -1985,7 +1987,7 @@ ___ **● isLiked**: *`function`* = isVerbId(verbs.liked.id) -*Defined in [src/verbs/verb-ids.checkers.ts:99](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L99)* +*Defined in [src/verbs/verb-ids.checkers.ts:99](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L99)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2005,7 +2007,7 @@ ___ **● isLikedVerb**: *`function`* = isVerb(verbs.liked) -*Defined in [src/verbs/verbs.checkers.ts:99](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L99)* +*Defined in [src/verbs/verbs.checkers.ts:99](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L99)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2028,7 +2030,7 @@ ___ **● isLikert**: *`function`* = isActivityType(otherTypes.likert) -*Defined in [src/activity-types/activity-types.checkers.ts:240](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L240)* +*Defined in [src/activity-types/activity-types.checkers.ts:252](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L252)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2048,7 +2050,7 @@ ___ **● isLikertRecipe**: *`function`* = isRecipe(recipes.likert) -*Defined in [src/recipes/recipes.checkers.ts:45](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.checkers.ts#L45)* +*Defined in [src/recipes/recipes.checkers.ts:45](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.checkers.ts#L45)* #### Type declaration ▸(recipe: *`string`*): `boolean` @@ -2068,7 +2070,7 @@ ___ **● isListened**: *`function`* = isVerbId(verbs.listen.id) -*Defined in [src/verbs/verb-ids.checkers.ts:54](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L54)* +*Defined in [src/verbs/verb-ids.checkers.ts:54](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L54)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2088,7 +2090,7 @@ ___ **● isListenedVerb**: *`function`* = isVerb(verbs.listen) -*Defined in [src/verbs/verbs.checkers.ts:54](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L54)* +*Defined in [src/verbs/verbs.checkers.ts:54](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L54)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2111,7 +2113,7 @@ ___ **● isMatchingPairs**: *`function`* = isActivityType(closedResponseTypes.matchingPairs) -*Defined in [src/activity-types/activity-types.checkers.ts:48](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L48)* +*Defined in [src/activity-types/activity-types.checkers.ts:48](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L48)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2131,7 +2133,7 @@ ___ **● isMatrixMultipleChoice**: *`function`* = isActivityType(closedResponseTypes.matrixMultipleChoice) -*Defined in [src/activity-types/activity-types.checkers.ts:68](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L68)* +*Defined in [src/activity-types/activity-types.checkers.ts:68](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L68)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2151,7 +2153,7 @@ ___ **● isMatrixSingleChoice**: *`function`* = isActivityType(closedResponseTypes.matrixSingleChoice) -*Defined in [src/activity-types/activity-types.checkers.ts:73](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L73)* +*Defined in [src/activity-types/activity-types.checkers.ts:73](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L73)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2171,7 +2173,7 @@ ___ **● isMultipleChoice**: *`function`* = isActivityType(closedResponseTypes.multipleChoice) -*Defined in [src/activity-types/activity-types.checkers.ts:53](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L53)* +*Defined in [src/activity-types/activity-types.checkers.ts:53](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L53)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2191,7 +2193,7 @@ ___ **● isNonInteractive**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isAttempt, isNonInteractiveAttempt]) -*Defined in [src/activity-types/activity-types.checkers.ts:209](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L209)* +*Defined in [src/activity-types/activity-types.checkers.ts:221](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L221)* ___ @@ -2200,7 +2202,7 @@ ___ **● isNonInteractiveAttempt**: *`function`* = isActivityType(nonInteractiveTypes.nonInteractive) -*Defined in [src/activity-types/activity-types.checkers.ts:201](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L201)* +*Defined in [src/activity-types/activity-types.checkers.ts:213](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L213)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2220,7 +2222,7 @@ ___ **● isNonInteractiveRecipe**: *`function`* = isRecipe(recipes.nonInteractive) -*Defined in [src/recipes/recipes.checkers.ts:35](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.checkers.ts#L35)* +*Defined in [src/recipes/recipes.checkers.ts:35](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.checkers.ts#L35)* #### Type declaration ▸(recipe: *`string`*): `boolean` @@ -2238,9 +2240,16 @@ ___ ### `` isOpenAnswer -**● isOpenAnswer**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isAudioRecording, isDraw, isEssay, isGenericOpenAnswer, isVideoRecording]) +**● isOpenAnswer**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([ + isAudioRecording, + isDraw, + isEssay, + isGenericOpenAnswer, + isUploadFile, + isVideoRecording +]) -*Defined in [src/activity-types/activity-types.checkers.ts:144](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L144)* +*Defined in [src/activity-types/activity-types.checkers.ts:149](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L149)* ___ @@ -2249,7 +2258,7 @@ ___ **● isOpenAnswerRecipe**: *`function`* = isRecipe(recipes.openAnswer) -*Defined in [src/recipes/recipes.checkers.ts:15](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.checkers.ts#L15)* +*Defined in [src/recipes/recipes.checkers.ts:15](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.checkers.ts#L15)* #### Type declaration ▸(recipe: *`string`*): `boolean` @@ -2269,7 +2278,7 @@ ___ **● isOtherType**: *[ActivityTypeChecker](#activitytypechecker)* = anyPass([isLikert, isQuiz]) -*Defined in [src/activity-types/activity-types.checkers.ts:248](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L248)* +*Defined in [src/activity-types/activity-types.checkers.ts:260](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L260)* ___ @@ -2278,7 +2287,7 @@ ___ **● isPassed**: *`function`* = isVerbId(verbs.passed.id) -*Defined in [src/verbs/verb-ids.checkers.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L24)* +*Defined in [src/verbs/verb-ids.checkers.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L24)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2298,7 +2307,7 @@ ___ **● isPassedVerb**: *`function`* = isVerb(verbs.passed) -*Defined in [src/verbs/verbs.checkers.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L24)* +*Defined in [src/verbs/verbs.checkers.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L24)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2321,7 +2330,7 @@ ___ **● isPaused**: *`function`* = isVerbId(verbs.paused.id) -*Defined in [src/verbs/verb-ids.checkers.ts:49](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L49)* +*Defined in [src/verbs/verb-ids.checkers.ts:49](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L49)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2341,7 +2350,7 @@ ___ **● isPausedVerb**: *`function`* = isVerb(verbs.paused) -*Defined in [src/verbs/verbs.checkers.ts:49](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L49)* +*Defined in [src/verbs/verbs.checkers.ts:49](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L49)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2364,7 +2373,7 @@ ___ **● isPlayed**: *`function`* = isVerbId(verbs.played.id) -*Defined in [src/verbs/verb-ids.checkers.ts:44](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L44)* +*Defined in [src/verbs/verb-ids.checkers.ts:44](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L44)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2384,7 +2393,7 @@ ___ **● isPlayedVerb**: *`function`* = isVerb(verbs.played) -*Defined in [src/verbs/verbs.checkers.ts:44](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L44)* +*Defined in [src/verbs/verbs.checkers.ts:44](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L44)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2407,7 +2416,7 @@ ___ **● isPosted**: *`function`* = isVerbId(verbs.posted.id) -*Defined in [src/verbs/verb-ids.checkers.ts:84](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L84)* +*Defined in [src/verbs/verb-ids.checkers.ts:84](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L84)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2427,7 +2436,7 @@ ___ **● isPostedVerb**: *`function`* = isVerb(verbs.posted) -*Defined in [src/verbs/verbs.checkers.ts:84](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L84)* +*Defined in [src/verbs/verbs.checkers.ts:84](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L84)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2450,7 +2459,7 @@ ___ **● isQuestion**: *`function`* = isActivityType(feedbackTypes.question) -*Defined in [src/activity-types/activity-types.checkers.ts:309](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L309)* +*Defined in [src/activity-types/activity-types.checkers.ts:321](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L321)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2470,7 +2479,7 @@ ___ **● isQuiz**: *`function`* = isActivityType(otherTypes.quiz) -*Defined in [src/activity-types/activity-types.checkers.ts:235](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L235)* +*Defined in [src/activity-types/activity-types.checkers.ts:247](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L247)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2490,7 +2499,7 @@ ___ **● isReplied**: *`function`* = isVerbId(verbs.replied.id) -*Defined in [src/verbs/verb-ids.checkers.ts:89](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L89)* +*Defined in [src/verbs/verb-ids.checkers.ts:89](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L89)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2510,7 +2519,7 @@ ___ **● isRepliedVerb**: *`function`* = isVerb(verbs.replied) -*Defined in [src/verbs/verbs.checkers.ts:89](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L89)* +*Defined in [src/verbs/verbs.checkers.ts:89](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L89)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2533,7 +2542,7 @@ ___ **● isReported**: *`function`* = isVerbId(verbs.reported.id) -*Defined in [src/verbs/verb-ids.checkers.ts:114](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L114)* +*Defined in [src/verbs/verb-ids.checkers.ts:114](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L114)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2553,7 +2562,7 @@ ___ **● isReportedVerb**: *`function`* = isVerb(verbs.reported) -*Defined in [src/verbs/verbs.checkers.ts:114](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L114)* +*Defined in [src/verbs/verbs.checkers.ts:114](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L114)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2576,7 +2585,7 @@ ___ **● isResponseInImage**: *`function`* = isActivityType(closedResponseTypes.responseInImage) -*Defined in [src/activity-types/activity-types.checkers.ts:78](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L78)* +*Defined in [src/activity-types/activity-types.checkers.ts:78](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L78)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2596,7 +2605,7 @@ ___ **● isReview**: *`function`* = isActivityType(feedbackTypes.review) -*Defined in [src/activity-types/activity-types.checkers.ts:314](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L314)* +*Defined in [src/activity-types/activity-types.checkers.ts:326](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L326)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2622,7 +2631,7 @@ ___ isScormTextEntry ]) -*Defined in [src/activity-types/activity-types.checkers.ts:367](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L367)* +*Defined in [src/activity-types/activity-types.checkers.ts:379](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L379)* ___ @@ -2631,7 +2640,7 @@ ___ **● isScormChoice**: *`function`* = isActivityType(scormTypes.choice) -*Defined in [src/activity-types/activity-types.checkers.ts:341](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L341)* +*Defined in [src/activity-types/activity-types.checkers.ts:353](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L353)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2651,7 +2660,7 @@ ___ **● isScormGeneric**: *`function`* = isActivityType(scormTypes.genericScorm) -*Defined in [src/activity-types/activity-types.checkers.ts:336](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L336)* +*Defined in [src/activity-types/activity-types.checkers.ts:348](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L348)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2671,7 +2680,7 @@ ___ **● isScormInlineChoice**: *`function`* = isActivityType(scormTypes.inlineChoice) -*Defined in [src/activity-types/activity-types.checkers.ts:351](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L351)* +*Defined in [src/activity-types/activity-types.checkers.ts:363](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L363)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2691,7 +2700,7 @@ ___ **● isScormMultipleChoice**: *`function`* = isActivityType(scormTypes.multipleChoice) -*Defined in [src/activity-types/activity-types.checkers.ts:346](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L346)* +*Defined in [src/activity-types/activity-types.checkers.ts:358](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L358)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2711,7 +2720,7 @@ ___ **● isScormRecipe**: *`function`* = isRecipe(recipes.scorm) -*Defined in [src/recipes/recipes.checkers.ts:40](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.checkers.ts#L40)* +*Defined in [src/recipes/recipes.checkers.ts:40](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.checkers.ts#L40)* #### Type declaration ▸(recipe: *`string`*): `boolean` @@ -2731,7 +2740,7 @@ ___ **● isScormTextEntry**: *`function`* = isActivityType(scormTypes.textEntry) -*Defined in [src/activity-types/activity-types.checkers.ts:356](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L356)* +*Defined in [src/activity-types/activity-types.checkers.ts:368](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L368)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2751,7 +2760,7 @@ ___ **● isSingleChoice**: *`function`* = isActivityType(closedResponseTypes.singleChoice) -*Defined in [src/activity-types/activity-types.checkers.ts:58](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L58)* +*Defined in [src/activity-types/activity-types.checkers.ts:58](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L58)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2771,7 +2780,7 @@ ___ **● isSkipped**: *`function`* = isVerbId(verbs.skipped.id) -*Defined in [src/verbs/verb-ids.checkers.ts:64](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L64)* +*Defined in [src/verbs/verb-ids.checkers.ts:64](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L64)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2791,7 +2800,7 @@ ___ **● isSkippedVerb**: *`function`* = isVerb(verbs.skipped) -*Defined in [src/verbs/verbs.checkers.ts:64](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L64)* +*Defined in [src/verbs/verbs.checkers.ts:64](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L64)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2814,7 +2823,7 @@ ___ **● isSurvey**: *`function`* = isActivityType(feedbackTypes.survey) -*Defined in [src/activity-types/activity-types.checkers.ts:319](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L319)* +*Defined in [src/activity-types/activity-types.checkers.ts:331](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L331)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2834,7 +2843,7 @@ ___ **● isTerminated**: *`function`* = isVerbId(verbs.terminated.id) -*Defined in [src/verbs/verb-ids.checkers.ts:139](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L139)* +*Defined in [src/verbs/verb-ids.checkers.ts:139](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L139)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2854,7 +2863,7 @@ ___ **● isTerminatedVerb**: *`function`* = isVerb(verbs.terminated) -*Defined in [src/verbs/verbs.checkers.ts:139](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L139)* +*Defined in [src/verbs/verbs.checkers.ts:139](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L139)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2877,7 +2886,27 @@ ___ **● isUnit**: *`function`* = isActivityType(bookTypes.unit) -*Defined in [src/activity-types/activity-types.checkers.ts:222](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L222)* +*Defined in [src/activity-types/activity-types.checkers.ts:234](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L234)* + +#### Type declaration +▸(activityType: *`string`*): `boolean` + +**Parameters:** + +| Name | Type | +| ------ | ------ | +| activityType | `string` | + +**Returns:** `boolean` + +___ + + +### `` isUploadFile + +**● isUploadFile**: *`function`* = isActivityType(openAnswerTypes.uploadFile) + +*Defined in [src/activity-types/activity-types.checkers.ts:133](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L133)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2897,7 +2926,7 @@ ___ **● isVideo**: *`function`* = isActivityType(audioVideoTypes.video) -*Defined in [src/activity-types/activity-types.checkers.ts:180](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L180)* +*Defined in [src/activity-types/activity-types.checkers.ts:192](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L192)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2917,7 +2946,7 @@ ___ **● isVideoRecording**: *`function`* = isActivityType(openAnswerTypes.videoRecording) -*Defined in [src/activity-types/activity-types.checkers.ts:133](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L133)* +*Defined in [src/activity-types/activity-types.checkers.ts:138](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L138)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -2937,7 +2966,7 @@ ___ **● isVotedDown**: *`function`* = isVerbId(verbs.votedDown.id) -*Defined in [src/verbs/verb-ids.checkers.ts:109](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L109)* +*Defined in [src/verbs/verb-ids.checkers.ts:109](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L109)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -2957,7 +2986,7 @@ ___ **● isVotedDownVerb**: *`function`* = isVerb(verbs.votedDown) -*Defined in [src/verbs/verbs.checkers.ts:109](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L109)* +*Defined in [src/verbs/verbs.checkers.ts:109](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L109)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -2980,7 +3009,7 @@ ___ **● isVotedUp**: *`function`* = isVerbId(verbs.votedUp.id) -*Defined in [src/verbs/verb-ids.checkers.ts:104](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L104)* +*Defined in [src/verbs/verb-ids.checkers.ts:104](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L104)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -3000,7 +3029,7 @@ ___ **● isVotedUpVerb**: *`function`* = isVerb(verbs.votedUp) -*Defined in [src/verbs/verbs.checkers.ts:104](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L104)* +*Defined in [src/verbs/verbs.checkers.ts:104](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L104)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -3023,7 +3052,7 @@ ___ **● isWatched**: *`function`* = isVerbId(verbs.watched.id) -*Defined in [src/verbs/verb-ids.checkers.ts:59](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L59)* +*Defined in [src/verbs/verb-ids.checkers.ts:59](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L59)* #### Type declaration ▸(verbId: *`string`*): `boolean` @@ -3043,7 +3072,7 @@ ___ **● isWatchedVerb**: *`function`* = isVerb(verbs.watched) -*Defined in [src/verbs/verbs.checkers.ts:59](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L59)* +*Defined in [src/verbs/verbs.checkers.ts:59](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L59)* #### Type declaration ▸<`T`>(verbId: *`T`*): `boolean` @@ -3066,7 +3095,7 @@ ___ **● isWordsBank**: *`function`* = isActivityType(closedResponseTypes.wordsBank) -*Defined in [src/activity-types/activity-types.checkers.ts:63](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L63)* +*Defined in [src/activity-types/activity-types.checkers.ts:63](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L63)* #### Type declaration ▸(activityType: *`string`*): `boolean` @@ -3089,7 +3118,7 @@ ___ ▸ **anyPass**(checks: *`Array`<`function`>*): `(Anonymous function)` -*Defined in [src/fp.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/fp.ts#L14)* +*Defined in [src/fp.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/fp.ts#L14)* **Parameters:** @@ -3106,7 +3135,7 @@ ___ ▸ **equals**(expected: *`any`*): `(Anonymous function)` -*Defined in [src/fp.ts:6](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/fp.ts#L6)* +*Defined in [src/fp.ts:6](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/fp.ts#L6)* **Parameters:** @@ -3123,7 +3152,7 @@ ___ ▸ **isActivityType**(expectedType: *`string`*): [ActivityTypeChecker](#activitytypechecker) -*Defined in [src/activity-types/activity-types.checkers.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L21)* +*Defined in [src/activity-types/activity-types.checkers.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L21)* **Parameters:** @@ -3140,7 +3169,7 @@ ___ ▸ **isAssessable**(activityType: *`string`*): `boolean` -*Defined in [src/activity-types/activity-types.checkers.ts:301](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.checkers.ts#L301)* +*Defined in [src/activity-types/activity-types.checkers.ts:313](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.checkers.ts#L313)* **Parameters:** @@ -3157,7 +3186,7 @@ ___ ▸ **isRecipe**(expectedRecipe: *`string`*): [RecipeChecker](#recipechecker) -*Defined in [src/recipes/recipes.checkers.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.checkers.ts#L10)* +*Defined in [src/recipes/recipes.checkers.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.checkers.ts#L10)* **Parameters:** @@ -3174,7 +3203,7 @@ ___ ▸ **isVerb**<`T`>(expectedVerb: *`T`*): [VerbChecker](#verbchecker) -*Defined in [src/verbs/verbs.checkers.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.checkers.ts#L9)* +*Defined in [src/verbs/verbs.checkers.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.checkers.ts#L9)* **Type parameters:** @@ -3194,7 +3223,7 @@ ___ ▸ **isVerbId**(expectedVerbId: *`string`*): [VerbIdChecker](#verbidchecker) -*Defined in [src/verbs/verb-ids.checkers.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verb-ids.checkers.ts#L9)* +*Defined in [src/verbs/verb-ids.checkers.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verb-ids.checkers.ts#L9)* **Parameters:** @@ -3211,7 +3240,7 @@ ___ ▸ **propEq**<`T`>(property: *`keyof T`*, value: *`any`*): `(Anonymous function)` -*Defined in [src/fp.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/fp.ts#L21)* +*Defined in [src/fp.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/fp.ts#L21)* **Type parameters:** @@ -3235,7 +3264,7 @@ ___ **activityTypes**: *`object`* -*Defined in [src/activity-types/activity-types.ts:91](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L91)* +*Defined in [src/activity-types/activity-types.ts:92](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L92)* ___ diff --git a/docs/interfaces/verblike.md-E b/docs/interfaces/verblike.md-E index a4ed55b..a15da66 100644 --- a/docs/interfaces/verblike.md-E +++ b/docs/interfaces/verblike.md-E @@ -22,7 +22,7 @@ **● id**: *`string`* -*Defined in [src/verbs/verbs.types.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.types.ts#L4)* +*Defined in [src/verbs/verbs.types.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.types.ts#L4)* ___ diff --git a/docs/modules/audiovideotypes.md b/docs/modules/audiovideotypes.md index a87a546..0705d1f 100644 --- a/docs/modules/audiovideotypes.md +++ b/docs/modules/audiovideotypes.md @@ -19,7 +19,7 @@ **● audio**: *"https://w3id.org/xapi/smart/activity/audio"* = types.smart.audio -*Defined in [src/activity-types/activity-types.ts:62](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L62)* +*Defined in [src/activity-types/activity-types.ts:63](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L63)* ___ @@ -28,7 +28,7 @@ ___ **● video**: *"https://w3id.org/xapi/smart/activity/video"* = types.smart.video -*Defined in [src/activity-types/activity-types.ts:63](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L63)* +*Defined in [src/activity-types/activity-types.ts:64](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L64)* ___ diff --git a/docs/modules/audiovideotypes.md-E b/docs/modules/audiovideotypes.md-E index ab8f75d..88474df 100644 --- a/docs/modules/audiovideotypes.md-E +++ b/docs/modules/audiovideotypes.md-E @@ -19,7 +19,7 @@ **● audio**: *"https://w3id.org/xapi/smart/activity/audio"* = types.smart.audio -*Defined in [src/activity-types/activity-types.ts:62](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L62)* +*Defined in [src/activity-types/activity-types.ts:63](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L63)* ___ @@ -28,7 +28,7 @@ ___ **● video**: *"https://w3id.org/xapi/smart/activity/video"* = types.smart.video -*Defined in [src/activity-types/activity-types.ts:63](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L63)* +*Defined in [src/activity-types/activity-types.ts:64](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L64)* ___ diff --git a/docs/modules/booktypes.md b/docs/modules/booktypes.md index 0a94cf4..2907474 100644 --- a/docs/modules/booktypes.md +++ b/docs/modules/booktypes.md @@ -20,7 +20,7 @@ **● book**: *"https://w3id.org/xapi/smart/activity/book"* = types.smart.book -*Defined in [src/activity-types/activity-types.ts:53](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L53)* +*Defined in [src/activity-types/activity-types.ts:54](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L54)* ___ @@ -29,7 +29,7 @@ ___ **● lesson**: *"https://w3id.org/xapi/smart/activity/lesson"* = types.smart.lesson -*Defined in [src/activity-types/activity-types.ts:54](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L54)* +*Defined in [src/activity-types/activity-types.ts:55](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L55)* ___ @@ -38,7 +38,7 @@ ___ **● unit**: *"https://w3id.org/xapi/smart/activity/unit"* = types.smart.unit -*Defined in [src/activity-types/activity-types.ts:55](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L55)* +*Defined in [src/activity-types/activity-types.ts:56](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L56)* ___ diff --git a/docs/modules/booktypes.md-E b/docs/modules/booktypes.md-E index 7568d9a..3e2da8a 100644 --- a/docs/modules/booktypes.md-E +++ b/docs/modules/booktypes.md-E @@ -20,7 +20,7 @@ **● book**: *"https://w3id.org/xapi/smart/activity/book"* = types.smart.book -*Defined in [src/activity-types/activity-types.ts:53](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L53)* +*Defined in [src/activity-types/activity-types.ts:54](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L54)* ___ @@ -29,7 +29,7 @@ ___ **● lesson**: *"https://w3id.org/xapi/smart/activity/lesson"* = types.smart.lesson -*Defined in [src/activity-types/activity-types.ts:54](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L54)* +*Defined in [src/activity-types/activity-types.ts:55](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L55)* ___ @@ -38,7 +38,7 @@ ___ **● unit**: *"https://w3id.org/xapi/smart/activity/unit"* = types.smart.unit -*Defined in [src/activity-types/activity-types.ts:55](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L55)* +*Defined in [src/activity-types/activity-types.ts:56](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L56)* ___ diff --git a/docs/modules/categories.md-E b/docs/modules/categories.md-E index 6092d7b..18f2ecb 100644 --- a/docs/modules/categories.md-E +++ b/docs/modules/categories.md-E @@ -18,7 +18,7 @@ **● recipe**: *"https://w3id.org/xapi/smart/activity/recipe"* = activityTypes.smart.recipe -*Defined in [src/categories/categories.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/categories/categories.ts#L4)* +*Defined in [src/categories/categories.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/categories/categories.ts#L4)* ___ diff --git a/docs/modules/closedresponsetypes.md b/docs/modules/closedresponsetypes.md index 4d624d5..fdfaabc 100644 --- a/docs/modules/closedresponsetypes.md +++ b/docs/modules/closedresponsetypes.md @@ -28,7 +28,7 @@ **● binaryChoice**: *"https://w3id.org/xapi/smart/activity/binary-choice"* = types.smart.binaryChoice -*Defined in [src/activity-types/activity-types.ts:18](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L18)* +*Defined in [src/activity-types/activity-types.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L19)* ___ @@ -37,7 +37,7 @@ ___ **● dropDownChoice**: *"https://w3id.org/xapi/smart/activity/drop-down-choice"* = types.smart.dropDownChoice -*Defined in [src/activity-types/activity-types.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L19)* +*Defined in [src/activity-types/activity-types.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L20)* ___ @@ -46,7 +46,7 @@ ___ **● fillInTheGaps**: *"https://w3id.org/xapi/smart/activity/fill-in-the-gaps"* = types.smart.fillInTheGaps -*Defined in [src/activity-types/activity-types.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L20)* +*Defined in [src/activity-types/activity-types.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L21)* ___ @@ -55,7 +55,7 @@ ___ **● genericClosedResponse**: *"https://w3id.org/xapi/smart/activity/closed-response"* = types.smart.closedResponse -*Defined in [src/activity-types/activity-types.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L21)* +*Defined in [src/activity-types/activity-types.ts:22](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L22)* ___ @@ -64,7 +64,7 @@ ___ **● matchingPairs**: *"https://w3id.org/xapi/smart/activity/matching-pairs"* = types.smart.matchingPairs -*Defined in [src/activity-types/activity-types.ts:22](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L22)* +*Defined in [src/activity-types/activity-types.ts:23](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L23)* ___ @@ -73,7 +73,7 @@ ___ **● matrixMultipleChoice**: *"https://w3id.org/xapi/smart/activity/matrix-multiple-choice"* = types.smart.matrixMultipleChoice -*Defined in [src/activity-types/activity-types.ts:26](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L26)* +*Defined in [src/activity-types/activity-types.ts:27](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L27)* ___ @@ -82,7 +82,7 @@ ___ **● matrixSingleChoice**: *"https://w3id.org/xapi/smart/activity/matrix-single-choice"* = types.smart.matrixSingleChoice -*Defined in [src/activity-types/activity-types.ts:27](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L27)* +*Defined in [src/activity-types/activity-types.ts:28](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L28)* ___ @@ -91,7 +91,7 @@ ___ **● multipleChoice**: *"https://w3id.org/xapi/smart/activity/multiple-choice"* = types.smart.multipleChoice -*Defined in [src/activity-types/activity-types.ts:23](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L23)* +*Defined in [src/activity-types/activity-types.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L24)* ___ @@ -100,7 +100,7 @@ ___ **● responseInImage**: *"https://w3id.org/xapi/smart/activity/response-in-image"* = types.smart.responseInImage -*Defined in [src/activity-types/activity-types.ts:28](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L28)* +*Defined in [src/activity-types/activity-types.ts:29](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L29)* ___ @@ -109,7 +109,7 @@ ___ **● singleChoice**: *"https://w3id.org/xapi/smart/activity/single-choice"* = types.smart.singleChoice -*Defined in [src/activity-types/activity-types.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L24)* +*Defined in [src/activity-types/activity-types.ts:25](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L25)* ___ @@ -118,7 +118,7 @@ ___ **● wordsBank**: *"https://w3id.org/xapi/smart/activity/words-bank"* = types.smart.wordsBank -*Defined in [src/activity-types/activity-types.ts:25](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L25)* +*Defined in [src/activity-types/activity-types.ts:26](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L26)* ___ diff --git a/docs/modules/closedresponsetypes.md-E b/docs/modules/closedresponsetypes.md-E index 9bfb54b..14aa0ac 100644 --- a/docs/modules/closedresponsetypes.md-E +++ b/docs/modules/closedresponsetypes.md-E @@ -28,7 +28,7 @@ **● binaryChoice**: *"https://w3id.org/xapi/smart/activity/binary-choice"* = types.smart.binaryChoice -*Defined in [src/activity-types/activity-types.ts:18](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L18)* +*Defined in [src/activity-types/activity-types.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L19)* ___ @@ -37,7 +37,7 @@ ___ **● dropDownChoice**: *"https://w3id.org/xapi/smart/activity/drop-down-choice"* = types.smart.dropDownChoice -*Defined in [src/activity-types/activity-types.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L19)* +*Defined in [src/activity-types/activity-types.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L20)* ___ @@ -46,7 +46,7 @@ ___ **● fillInTheGaps**: *"https://w3id.org/xapi/smart/activity/fill-in-the-gaps"* = types.smart.fillInTheGaps -*Defined in [src/activity-types/activity-types.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L20)* +*Defined in [src/activity-types/activity-types.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L21)* ___ @@ -55,7 +55,7 @@ ___ **● genericClosedResponse**: *"https://w3id.org/xapi/smart/activity/closed-response"* = types.smart.closedResponse -*Defined in [src/activity-types/activity-types.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L21)* +*Defined in [src/activity-types/activity-types.ts:22](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L22)* ___ @@ -64,7 +64,7 @@ ___ **● matchingPairs**: *"https://w3id.org/xapi/smart/activity/matching-pairs"* = types.smart.matchingPairs -*Defined in [src/activity-types/activity-types.ts:22](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L22)* +*Defined in [src/activity-types/activity-types.ts:23](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L23)* ___ @@ -73,7 +73,7 @@ ___ **● matrixMultipleChoice**: *"https://w3id.org/xapi/smart/activity/matrix-multiple-choice"* = types.smart.matrixMultipleChoice -*Defined in [src/activity-types/activity-types.ts:26](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L26)* +*Defined in [src/activity-types/activity-types.ts:27](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L27)* ___ @@ -82,7 +82,7 @@ ___ **● matrixSingleChoice**: *"https://w3id.org/xapi/smart/activity/matrix-single-choice"* = types.smart.matrixSingleChoice -*Defined in [src/activity-types/activity-types.ts:27](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L27)* +*Defined in [src/activity-types/activity-types.ts:28](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L28)* ___ @@ -91,7 +91,7 @@ ___ **● multipleChoice**: *"https://w3id.org/xapi/smart/activity/multiple-choice"* = types.smart.multipleChoice -*Defined in [src/activity-types/activity-types.ts:23](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L23)* +*Defined in [src/activity-types/activity-types.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L24)* ___ @@ -100,7 +100,7 @@ ___ **● responseInImage**: *"https://w3id.org/xapi/smart/activity/response-in-image"* = types.smart.responseInImage -*Defined in [src/activity-types/activity-types.ts:28](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L28)* +*Defined in [src/activity-types/activity-types.ts:29](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L29)* ___ @@ -109,7 +109,7 @@ ___ **● singleChoice**: *"https://w3id.org/xapi/smart/activity/single-choice"* = types.smart.singleChoice -*Defined in [src/activity-types/activity-types.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L24)* +*Defined in [src/activity-types/activity-types.ts:25](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L25)* ___ @@ -118,7 +118,7 @@ ___ **● wordsBank**: *"https://w3id.org/xapi/smart/activity/words-bank"* = types.smart.wordsBank -*Defined in [src/activity-types/activity-types.ts:25](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L25)* +*Defined in [src/activity-types/activity-types.ts:26](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L26)* ___ diff --git a/docs/modules/discussiontypes.md b/docs/modules/discussiontypes.md index 6282efc..595d37d 100644 --- a/docs/modules/discussiontypes.md +++ b/docs/modules/discussiontypes.md @@ -21,7 +21,7 @@ **● debate**: *"https://w3id.org/xapi/smart/activity/discussion"* = types.smart.discussion -*Defined in [src/activity-types/activity-types.ts:38](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L38)* +*Defined in [src/activity-types/activity-types.ts:39](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L39)* ___ @@ -30,7 +30,7 @@ ___ **● discussion**: *"http://id.tincanapi.com/activitytype/discussion"* = types.tincan.discussion -*Defined in [src/activity-types/activity-types.ts:35](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L35)* +*Defined in [src/activity-types/activity-types.ts:36](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L36)* ___ @@ -39,7 +39,7 @@ ___ **● forumReply**: *"http://id.tincanapi.com/activitytype/forum-reply"* = types.tincan.forumReply -*Defined in [src/activity-types/activity-types.ts:36](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L36)* +*Defined in [src/activity-types/activity-types.ts:37](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L37)* ___ @@ -48,7 +48,7 @@ ___ **● forumTopic**: *"http://id.tincanapi.com/activitytype/forum-topic"* = types.tincan.forumTopic -*Defined in [src/activity-types/activity-types.ts:37](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L37)* +*Defined in [src/activity-types/activity-types.ts:38](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L38)* ___ diff --git a/docs/modules/discussiontypes.md-E b/docs/modules/discussiontypes.md-E index 89182b7..8df4b68 100644 --- a/docs/modules/discussiontypes.md-E +++ b/docs/modules/discussiontypes.md-E @@ -21,7 +21,7 @@ **● debate**: *"https://w3id.org/xapi/smart/activity/discussion"* = types.smart.discussion -*Defined in [src/activity-types/activity-types.ts:38](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L38)* +*Defined in [src/activity-types/activity-types.ts:39](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L39)* ___ @@ -30,7 +30,7 @@ ___ **● discussion**: *"http://id.tincanapi.com/activitytype/discussion"* = types.tincan.discussion -*Defined in [src/activity-types/activity-types.ts:35](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L35)* +*Defined in [src/activity-types/activity-types.ts:36](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L36)* ___ @@ -39,7 +39,7 @@ ___ **● forumReply**: *"http://id.tincanapi.com/activitytype/forum-reply"* = types.tincan.forumReply -*Defined in [src/activity-types/activity-types.ts:36](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L36)* +*Defined in [src/activity-types/activity-types.ts:37](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L37)* ___ @@ -48,7 +48,7 @@ ___ **● forumTopic**: *"http://id.tincanapi.com/activitytype/forum-topic"* = types.tincan.forumTopic -*Defined in [src/activity-types/activity-types.ts:37](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L37)* +*Defined in [src/activity-types/activity-types.ts:38](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L38)* ___ diff --git a/docs/modules/extensions.md-E b/docs/modules/extensions.md-E index 8c0ce03..27cf56b 100644 --- a/docs/modules/extensions.md-E +++ b/docs/modules/extensions.md-E @@ -34,7 +34,7 @@ **● activityContext**: *"https://w3id.org/xapi/smart/extension/context/activity-context"* = contextExtensions.smart.activityContext -*Defined in [src/extensions/extensions.ts:5](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L5)* +*Defined in [src/extensions/extensions.ts:5](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L5)* ___ @@ -43,7 +43,7 @@ ___ **● activityMode**: *"https://w3id.org/xapi/smart/extension/result/activity-mode"* = resultExtensions.smart.activityMode -*Defined in [src/extensions/extensions.ts:15](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L15)* +*Defined in [src/extensions/extensions.ts:15](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L15)* ___ @@ -52,7 +52,7 @@ ___ **● activityStatus**: *"https://w3id.org/xapi/smart/extension/result/activity-status"* = resultExtensions.smart.activityStatus -*Defined in [src/extensions/extensions.ts:16](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L16)* +*Defined in [src/extensions/extensions.ts:16](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L16)* ___ @@ -61,7 +61,7 @@ ___ **● attemptContext**: *"https://w3id.org/xapi/smart/extension/object/attempt-context"* = objectExtensions.smart.attemptContext -*Defined in [src/extensions/extensions.ts:6](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L6)* +*Defined in [src/extensions/extensions.ts:6](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L6)* ___ @@ -70,7 +70,7 @@ ___ **● discussionMessage**: *"https://w3id.org/xapi/smart/extension/result/discussion-message"* = resultExtensions.smart.discussionMessage -*Defined in [src/extensions/extensions.ts:12](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L12)* +*Defined in [src/extensions/extensions.ts:12](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L12)* ___ @@ -79,7 +79,7 @@ ___ **● duration**: *"http://id.tincanapi.com/extension/duration"* = contextExtensions.tincan.duration -*Defined in [src/extensions/extensions.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L9)* +*Defined in [src/extensions/extensions.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L9)* ___ @@ -88,7 +88,7 @@ ___ **● endingPoint**: *"http://id.tincanapi.com/extension/ending-point"* = contextExtensions.tincan.endingPoint -*Defined in [src/extensions/extensions.ts:11](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L11)* +*Defined in [src/extensions/extensions.ts:11](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L11)* ___ @@ -97,7 +97,7 @@ ___ **● evaluationFeedback**: *"https://w3id.org/xapi/smart/extension/result/evaluation-feedback"* = resultExtensions.smart.evaluationFeedback -*Defined in [src/extensions/extensions.ts:8](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L8)* +*Defined in [src/extensions/extensions.ts:8](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L8)* ___ @@ -106,7 +106,7 @@ ___ **● forumJoinType**: *"http://risc-inc.com/xapi/extensions/ForumJoinType"* = contextExtensions.risc.forumJoinType -*Defined in [src/extensions/extensions.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L19)* +*Defined in [src/extensions/extensions.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L19)* ___ @@ -115,7 +115,7 @@ ___ **● interactionContext**: *"https://w3id.org/xapi/smart/extension/context/interaction-context"* = contextExtensions.smart.interactionContext -*Defined in [src/extensions/extensions.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L4)* +*Defined in [src/extensions/extensions.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L4)* ___ @@ -124,7 +124,7 @@ ___ **● otherExtensions**: *"https://w3id.org/xapi/smart/extension/context/other-extensions"* = contextExtensions.smart.otherExtensions -*Defined in [src/extensions/extensions.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L20)* +*Defined in [src/extensions/extensions.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L20)* ___ @@ -133,7 +133,7 @@ ___ **● questions**: *"https://w3id.org/xapi/smart/extension/object/questions"* = objectExtensions.smart.questions -*Defined in [src/extensions/extensions.ts:17](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L17)* +*Defined in [src/extensions/extensions.ts:17](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L17)* ___ @@ -142,7 +142,7 @@ ___ **● startingPoint**: *"http://id.tincanapi.com/extension/starting-point"* = contextExtensions.tincan.startingPoint -*Defined in [src/extensions/extensions.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L10)* +*Defined in [src/extensions/extensions.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L10)* ___ @@ -151,7 +151,7 @@ ___ **● studentResponse**: *"https://w3id.org/xapi/smart/extension/object/student-response"* = objectExtensions.smart.studentResponse -*Defined in [src/extensions/extensions.ts:7](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L7)* +*Defined in [src/extensions/extensions.ts:7](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L7)* ___ @@ -160,7 +160,7 @@ ___ **● supplementalInfo**: *"https://w3id.org/xapi/acrossx/extensions/supplemental-info"* = objectExtensions.acrossx.supplementalInfo -*Defined in [src/extensions/extensions.ts:18](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L18)* +*Defined in [src/extensions/extensions.ts:18](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L18)* ___ @@ -169,7 +169,7 @@ ___ **● userAction**: *"https://w3id.org/xapi/smart/extension/result/user-action"* = resultExtensions.smart.userAction -*Defined in [src/extensions/extensions.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L14)* +*Defined in [src/extensions/extensions.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L14)* ___ @@ -178,7 +178,7 @@ ___ **● userData**: *"https://w3id.org/xapi/smart/extension/context/extended-user-data"* = contextExtensions.smart.extendedUserData -*Defined in [src/extensions/extensions.ts:13](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/extensions/extensions.ts#L13)* +*Defined in [src/extensions/extensions.ts:13](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/extensions/extensions.ts#L13)* ___ diff --git a/docs/modules/feedbacktypes.md b/docs/modules/feedbacktypes.md index 14fa20d..007f3bc 100644 --- a/docs/modules/feedbacktypes.md +++ b/docs/modules/feedbacktypes.md @@ -20,7 +20,7 @@ **● question**: *"http://activitystrea.ms/schema/1.0/question"* = types.activityStream.v1.question -*Defined in [src/activity-types/activity-types.ts:75](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L75)* +*Defined in [src/activity-types/activity-types.ts:76](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L76)* ___ @@ -29,7 +29,7 @@ ___ **● review**: *"http://activitystrea.ms/schema/1.0/review"* = types.activityStream.v1.review -*Defined in [src/activity-types/activity-types.ts:76](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L76)* +*Defined in [src/activity-types/activity-types.ts:77](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L77)* ___ @@ -38,7 +38,7 @@ ___ **● survey**: *"http://id.tincanapi.com/activitytype/survey"* = types.tincan.survey -*Defined in [src/activity-types/activity-types.ts:77](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L77)* +*Defined in [src/activity-types/activity-types.ts:78](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L78)* ___ diff --git a/docs/modules/feedbacktypes.md-E b/docs/modules/feedbacktypes.md-E index 057f5f9..6083b0a 100644 --- a/docs/modules/feedbacktypes.md-E +++ b/docs/modules/feedbacktypes.md-E @@ -20,7 +20,7 @@ **● question**: *"http://activitystrea.ms/schema/1.0/question"* = types.activityStream.v1.question -*Defined in [src/activity-types/activity-types.ts:75](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L75)* +*Defined in [src/activity-types/activity-types.ts:76](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L76)* ___ @@ -29,7 +29,7 @@ ___ **● review**: *"http://activitystrea.ms/schema/1.0/review"* = types.activityStream.v1.review -*Defined in [src/activity-types/activity-types.ts:76](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L76)* +*Defined in [src/activity-types/activity-types.ts:77](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L77)* ___ @@ -38,7 +38,7 @@ ___ **● survey**: *"http://id.tincanapi.com/activitytype/survey"* = types.tincan.survey -*Defined in [src/activity-types/activity-types.ts:77](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L77)* +*Defined in [src/activity-types/activity-types.ts:78](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L78)* ___ diff --git a/docs/modules/noninteractivetypes.md b/docs/modules/noninteractivetypes.md index 8b8d9d4..ba638a4 100644 --- a/docs/modules/noninteractivetypes.md +++ b/docs/modules/noninteractivetypes.md @@ -19,7 +19,7 @@ **● attempt**: *"https://w3id.org/xapi/smart/activity/attempt"* = types.smart.attempt -*Defined in [src/activity-types/activity-types.ts:45](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L45)* +*Defined in [src/activity-types/activity-types.ts:46](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L46)* ___ @@ -28,7 +28,7 @@ ___ **● nonInteractive**: *"https://w3id.org/xapi/smart/activity/no-interactive"* = types.smart.noInteractive -*Defined in [src/activity-types/activity-types.ts:46](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L46)* +*Defined in [src/activity-types/activity-types.ts:47](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L47)* ___ diff --git a/docs/modules/noninteractivetypes.md-E b/docs/modules/noninteractivetypes.md-E index 8c1af65..10b05c3 100644 --- a/docs/modules/noninteractivetypes.md-E +++ b/docs/modules/noninteractivetypes.md-E @@ -19,7 +19,7 @@ **● attempt**: *"https://w3id.org/xapi/smart/activity/attempt"* = types.smart.attempt -*Defined in [src/activity-types/activity-types.ts:45](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L45)* +*Defined in [src/activity-types/activity-types.ts:46](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L46)* ___ @@ -28,7 +28,7 @@ ___ **● nonInteractive**: *"https://w3id.org/xapi/smart/activity/no-interactive"* = types.smart.noInteractive -*Defined in [src/activity-types/activity-types.ts:46](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L46)* +*Defined in [src/activity-types/activity-types.ts:47](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L47)* ___ diff --git a/docs/modules/openanswertypes.md b/docs/modules/openanswertypes.md index d30e836..71b330b 100644 --- a/docs/modules/openanswertypes.md +++ b/docs/modules/openanswertypes.md @@ -10,6 +10,7 @@ * [draw](openanswertypes.md#draw) * [essay](openanswertypes.md#essay) * [genericOpenAnswer](openanswertypes.md#genericopenanswer) +* [uploadFile](openanswertypes.md#uploadfile) * [videoRecording](openanswertypes.md#videorecording) --- @@ -51,6 +52,15 @@ ___ *Defined in [src/activity-types/activity-types.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L10)* +___ + + +### `` uploadFile + +**● uploadFile**: *"https://w3id.org/xapi/smart/activity/upload-file"* = types.smart.uploadFile + +*Defined in [src/activity-types/activity-types.ts:11](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L11)* + ___ @@ -58,7 +68,7 @@ ___ **● videoRecording**: *"https://w3id.org/xapi/smart/activity/video-recording"* = types.smart.videoRecording -*Defined in [src/activity-types/activity-types.ts:11](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L11)* +*Defined in [src/activity-types/activity-types.ts:12](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L12)* ___ diff --git a/docs/modules/openanswertypes.md-E b/docs/modules/openanswertypes.md-E index 982e441..3c30c5e 100644 --- a/docs/modules/openanswertypes.md-E +++ b/docs/modules/openanswertypes.md-E @@ -10,6 +10,7 @@ * [draw](openanswertypes.md#draw) * [essay](openanswertypes.md#essay) * [genericOpenAnswer](openanswertypes.md#genericopenanswer) +* [uploadFile](openanswertypes.md#uploadfile) * [videoRecording](openanswertypes.md#videorecording) --- @@ -22,7 +23,7 @@ **● audioRecording**: *"https://w3id.org/xapi/smart/activity/audio-recording"* = types.smart.audioRecording -*Defined in [src/activity-types/activity-types.ts:7](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L7)* +*Defined in [src/activity-types/activity-types.ts:7](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L7)* ___ @@ -31,7 +32,7 @@ ___ **● draw**: *"https://w3id.org/xapi/smart/activity/draw"* = types.smart.draw -*Defined in [src/activity-types/activity-types.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L9)* +*Defined in [src/activity-types/activity-types.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L9)* ___ @@ -40,7 +41,7 @@ ___ **● essay**: *"https://w3id.org/xapi/smart/activity/essay"* = types.smart.essay -*Defined in [src/activity-types/activity-types.ts:8](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L8)* +*Defined in [src/activity-types/activity-types.ts:8](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L8)* ___ @@ -49,7 +50,16 @@ ___ **● genericOpenAnswer**: *"https://w3id.org/xapi/smart/activity/open-answer"* = types.smart.openAnswer -*Defined in [src/activity-types/activity-types.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L10)* +*Defined in [src/activity-types/activity-types.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L10)* + +___ + + +### `` uploadFile + +**● uploadFile**: *"https://w3id.org/xapi/smart/activity/upload-file"* = types.smart.uploadFile + +*Defined in [src/activity-types/activity-types.ts:11](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L11)* ___ @@ -58,7 +68,7 @@ ___ **● videoRecording**: *"https://w3id.org/xapi/smart/activity/video-recording"* = types.smart.videoRecording -*Defined in [src/activity-types/activity-types.ts:11](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L11)* +*Defined in [src/activity-types/activity-types.ts:12](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L12)* ___ diff --git a/docs/modules/othertypes.md b/docs/modules/othertypes.md index a95dcf9..8acf966 100644 --- a/docs/modules/othertypes.md +++ b/docs/modules/othertypes.md @@ -19,7 +19,7 @@ **● likert**: *"https://w3id.org/xapi/smart/activity/likert"* = types.smart.likert -*Defined in [src/activity-types/activity-types.ts:71](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L71)* +*Defined in [src/activity-types/activity-types.ts:72](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L72)* ___ @@ -28,7 +28,7 @@ ___ **● quiz**: *"https://w3id.org/xapi/smart/activity/quiz"* = types.smart.quiz -*Defined in [src/activity-types/activity-types.ts:70](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L70)* +*Defined in [src/activity-types/activity-types.ts:71](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L71)* ___ diff --git a/docs/modules/othertypes.md-E b/docs/modules/othertypes.md-E index cdd3362..814e346 100644 --- a/docs/modules/othertypes.md-E +++ b/docs/modules/othertypes.md-E @@ -19,7 +19,7 @@ **● likert**: *"https://w3id.org/xapi/smart/activity/likert"* = types.smart.likert -*Defined in [src/activity-types/activity-types.ts:71](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L71)* +*Defined in [src/activity-types/activity-types.ts:72](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L72)* ___ @@ -28,7 +28,7 @@ ___ **● quiz**: *"https://w3id.org/xapi/smart/activity/quiz"* = types.smart.quiz -*Defined in [src/activity-types/activity-types.ts:70](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L70)* +*Defined in [src/activity-types/activity-types.ts:71](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L71)* ___ diff --git a/docs/modules/recipes.md-E b/docs/modules/recipes.md-E index 7a701ae..f0318e5 100644 --- a/docs/modules/recipes.md-E +++ b/docs/modules/recipes.md-E @@ -24,7 +24,7 @@ **● audioVideo**: *"https://w3id.org/xapi/smart/activity/recipe/audio_video"* = categoryIdentifiers.smart.recipeAudioVideo -*Defined in [src/recipes/recipes.ts:6](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.ts#L6)* +*Defined in [src/recipes/recipes.ts:6](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.ts#L6)* ___ @@ -33,7 +33,7 @@ ___ **● closedResponse**: *"https://w3id.org/xapi/smart/activity/recipe/closed_response"* = categoryIdentifiers.smart.recipeClosedResponse -*Defined in [src/recipes/recipes.ts:5](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.ts#L5)* +*Defined in [src/recipes/recipes.ts:5](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.ts#L5)* ___ @@ -42,7 +42,7 @@ ___ **● discussion**: *"https://w3id.org/xapi/smart/activity/recipe/discussion"* = categoryIdentifiers.smart.recipeDiscussion -*Defined in [src/recipes/recipes.ts:7](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.ts#L7)* +*Defined in [src/recipes/recipes.ts:7](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.ts#L7)* ___ @@ -51,7 +51,7 @@ ___ **● likert**: *"https://w3id.org/xapi/smart/activity/recipe/likert"* = categoryIdentifiers.smart.recipeLikert -*Defined in [src/recipes/recipes.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.ts#L10)* +*Defined in [src/recipes/recipes.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.ts#L10)* ___ @@ -60,7 +60,7 @@ ___ **● nonInteractive**: *"https://w3id.org/xapi/smart/activity/recipe/no_interactive"* = categoryIdentifiers.smart.recipeNoInteractive -*Defined in [src/recipes/recipes.ts:8](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.ts#L8)* +*Defined in [src/recipes/recipes.ts:8](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.ts#L8)* ___ @@ -69,7 +69,7 @@ ___ **● openAnswer**: *"https://w3id.org/xapi/smart/activity/recipe/open_answer"* = categoryIdentifiers.smart.recipeOpenAnswer -*Defined in [src/recipes/recipes.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.ts#L4)* +*Defined in [src/recipes/recipes.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.ts#L4)* ___ @@ -78,7 +78,7 @@ ___ **● scorm**: *"https://w3id.org/xapi/smart/activity/recipe/scorm"* = categoryIdentifiers.smart.recipeScorm -*Defined in [src/recipes/recipes.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/recipes/recipes.ts#L9)* +*Defined in [src/recipes/recipes.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/recipes/recipes.ts#L9)* ___ diff --git a/docs/modules/scormtypes.md b/docs/modules/scormtypes.md index def5439..74dcc10 100644 --- a/docs/modules/scormtypes.md +++ b/docs/modules/scormtypes.md @@ -22,7 +22,7 @@ **● choice**: *"http://imsglobal.org/qti/choice"* = types.qti.choice -*Defined in [src/activity-types/activity-types.ts:81](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L81)* +*Defined in [src/activity-types/activity-types.ts:82](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L82)* ___ @@ -31,7 +31,7 @@ ___ **● genericScorm**: *"https://w3id.org/xapi/smart/activity/scorm"* = types.smart.scorm -*Defined in [src/activity-types/activity-types.ts:85](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L85)* +*Defined in [src/activity-types/activity-types.ts:86](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L86)* ___ @@ -40,7 +40,7 @@ ___ **● inlineChoice**: *"http://imsglobal.org/qti/inlineChoice"* = types.qti.inlineChoice -*Defined in [src/activity-types/activity-types.ts:83](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L83)* +*Defined in [src/activity-types/activity-types.ts:84](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L84)* ___ @@ -49,7 +49,7 @@ ___ **● multipleChoice**: *"http://imsglobal.org/qti/choiceMultiple"* = types.qti.multipleChoice -*Defined in [src/activity-types/activity-types.ts:82](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L82)* +*Defined in [src/activity-types/activity-types.ts:83](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L83)* ___ @@ -58,7 +58,7 @@ ___ **● textEntry**: *"http://imsglobal.org/qti/textEntry"* = types.qti.textEntry -*Defined in [src/activity-types/activity-types.ts:84](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L84)* +*Defined in [src/activity-types/activity-types.ts:85](https://github.com/Gradiant/smart-xapi-dsl/blob/master/src/activity-types/activity-types.ts#L85)* ___ diff --git a/docs/modules/scormtypes.md-E b/docs/modules/scormtypes.md-E index 630f3c2..5307544 100644 --- a/docs/modules/scormtypes.md-E +++ b/docs/modules/scormtypes.md-E @@ -22,7 +22,7 @@ **● choice**: *"http://imsglobal.org/qti/choice"* = types.qti.choice -*Defined in [src/activity-types/activity-types.ts:81](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L81)* +*Defined in [src/activity-types/activity-types.ts:82](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L82)* ___ @@ -31,7 +31,7 @@ ___ **● genericScorm**: *"https://w3id.org/xapi/smart/activity/scorm"* = types.smart.scorm -*Defined in [src/activity-types/activity-types.ts:85](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L85)* +*Defined in [src/activity-types/activity-types.ts:86](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L86)* ___ @@ -40,7 +40,7 @@ ___ **● inlineChoice**: *"http://imsglobal.org/qti/inlineChoice"* = types.qti.inlineChoice -*Defined in [src/activity-types/activity-types.ts:83](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L83)* +*Defined in [src/activity-types/activity-types.ts:84](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L84)* ___ @@ -49,7 +49,7 @@ ___ **● multipleChoice**: *"http://imsglobal.org/qti/choiceMultiple"* = types.qti.multipleChoice -*Defined in [src/activity-types/activity-types.ts:82](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L82)* +*Defined in [src/activity-types/activity-types.ts:83](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L83)* ___ @@ -58,7 +58,7 @@ ___ **● textEntry**: *"http://imsglobal.org/qti/textEntry"* = types.qti.textEntry -*Defined in [src/activity-types/activity-types.ts:84](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/activity-types/activity-types.ts#L84)* +*Defined in [src/activity-types/activity-types.ts:85](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/activity-types/activity-types.ts#L85)* ___ diff --git a/docs/modules/verbs.md-E b/docs/modules/verbs.md-E index 419f716..073440f 100644 --- a/docs/modules/verbs.md-E +++ b/docs/modules/verbs.md-E @@ -43,7 +43,7 @@ **● accessed**: *[Verb](../interfaces/verb.md)* = xapiVerbs.activityStream.v1.accessed -*Defined in [src/verbs/verbs.ts:25](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L25)* +*Defined in [src/verbs/verbs.ts:25](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L25)* ___ @@ -52,7 +52,7 @@ ___ **● answered**: *[Verb](../interfaces/verb.md)* = xapiVerbs.adl.answered -*Defined in [src/verbs/verbs.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L4)* +*Defined in [src/verbs/verbs.ts:4](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L4)* ___ @@ -61,7 +61,7 @@ ___ **● completed**: *[Verb](../interfaces/verb.md)* = xapiVerbs.activityStream.v1.complete -*Defined in [src/verbs/verbs.ts:15](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L15)* +*Defined in [src/verbs/verbs.ts:15](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L15)* ___ @@ -70,7 +70,7 @@ ___ **● created**: *[Verb](../interfaces/verb.md)* = xapiVerbs.activityStream.v1.created -*Defined in [src/verbs/verbs.ts:26](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L26)* +*Defined in [src/verbs/verbs.ts:26](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L26)* ___ @@ -79,7 +79,7 @@ ___ **● deleted**: *[Verb](../interfaces/verb.md)* = xapiVerbs.activityStream.v1.deleted -*Defined in [src/verbs/verbs.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L20)* +*Defined in [src/verbs/verbs.ts:20](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L20)* ___ @@ -88,7 +88,7 @@ ___ **● disabled**: *[Verb](../interfaces/verb.md)* = xapiVerbs.tincan.disabled -*Defined in [src/verbs/verbs.ts:17](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L17)* +*Defined in [src/verbs/verbs.ts:17](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L17)* ___ @@ -97,7 +97,7 @@ ___ **● edited**: *[Verb](../interfaces/verb.md)* = xapiVerbs.acrossx.edited -*Defined in [src/verbs/verbs.ts:28](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L28)* +*Defined in [src/verbs/verbs.ts:28](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L28)* ___ @@ -106,7 +106,7 @@ ___ **● enabled**: *[Verb](../interfaces/verb.md)* = xapiVerbs.tincan.enabled -*Defined in [src/verbs/verbs.ts:16](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L16)* +*Defined in [src/verbs/verbs.ts:16](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L16)* ___ @@ -115,7 +115,7 @@ ___ **● evaluated**: *[Verb](../interfaces/verb.md)* = xapiVerbs.acrossx.evaluated -*Defined in [src/verbs/verbs.ts:5](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L5)* +*Defined in [src/verbs/verbs.ts:5](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L5)* ___ @@ -124,7 +124,7 @@ ___ **● failed**: *[Verb](../interfaces/verb.md)* = xapiVerbs.adl.failed -*Defined in [src/verbs/verbs.ts:7](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L7)* +*Defined in [src/verbs/verbs.ts:7](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L7)* ___ @@ -133,7 +133,7 @@ ___ **● initialized**: *[Verb](../interfaces/verb.md)* = xapiVerbs.adl.initialized -*Defined in [src/verbs/verbs.ts:8](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L8)* +*Defined in [src/verbs/verbs.ts:8](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L8)* ___ @@ -142,7 +142,7 @@ ___ **● interacted**: *[Verb](../interfaces/verb.md)* = xapiVerbs.adl.interacted -*Defined in [src/verbs/verbs.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L9)* +*Defined in [src/verbs/verbs.ts:9](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L9)* ___ @@ -151,7 +151,7 @@ ___ **● joined**: *[Verb](../interfaces/verb.md)* = xapiVerbs.activityStream.v1.joined -*Defined in [src/verbs/verbs.ts:27](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L27)* +*Defined in [src/verbs/verbs.ts:27](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L27)* ___ @@ -160,7 +160,7 @@ ___ **● liked**: *[Verb](../interfaces/verb.md)* = xapiVerbs.activityStream.v1.liked -*Defined in [src/verbs/verbs.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L21)* +*Defined in [src/verbs/verbs.ts:21](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L21)* ___ @@ -169,7 +169,7 @@ ___ **● listen**: *[Verb](../interfaces/verb.md)* = xapiVerbs.activityStream.v1.listen -*Defined in [src/verbs/verbs.ts:12](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L12)* +*Defined in [src/verbs/verbs.ts:12](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L12)* ___ @@ -178,7 +178,7 @@ ___ **● passed**: *[Verb](../interfaces/verb.md)* = xapiVerbs.adl.passed -*Defined in [src/verbs/verbs.ts:6](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L6)* +*Defined in [src/verbs/verbs.ts:6](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L6)* ___ @@ -187,7 +187,7 @@ ___ **● paused**: *[Verb](../interfaces/verb.md)* = xapiVerbs.tincan.paused -*Defined in [src/verbs/verbs.ts:11](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L11)* +*Defined in [src/verbs/verbs.ts:11](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L11)* ___ @@ -196,7 +196,7 @@ ___ **● played**: *[Verb](../interfaces/verb.md)* = xapiVerbs.activityStream.v1.play -*Defined in [src/verbs/verbs.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L10)* +*Defined in [src/verbs/verbs.ts:10](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L10)* ___ @@ -205,7 +205,7 @@ ___ **● posted**: *[Verb](../interfaces/verb.md)* = xapiVerbs.acrossx.posted -*Defined in [src/verbs/verbs.ts:18](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L18)* +*Defined in [src/verbs/verbs.ts:18](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L18)* ___ @@ -214,7 +214,7 @@ ___ **● replied**: *[Verb](../interfaces/verb.md)* = xapiVerbs.tincan.replied -*Defined in [src/verbs/verbs.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L19)* +*Defined in [src/verbs/verbs.ts:19](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L19)* ___ @@ -223,7 +223,7 @@ ___ **● reported**: *[Verb](../interfaces/verb.md)* = xapiVerbs.activityStream.v1.flagAsInappropriate -*Defined in [src/verbs/verbs.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L24)* +*Defined in [src/verbs/verbs.ts:24](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L24)* ___ @@ -232,7 +232,7 @@ ___ **● skipped**: *[Verb](../interfaces/verb.md)* = xapiVerbs.tincan.skipped -*Defined in [src/verbs/verbs.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L14)* +*Defined in [src/verbs/verbs.ts:14](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L14)* ___ @@ -241,7 +241,7 @@ ___ **● terminated**: *[Verb](../interfaces/verb.md)* = xapiVerbs.adl.terminated -*Defined in [src/verbs/verbs.ts:29](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L29)* +*Defined in [src/verbs/verbs.ts:29](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L29)* ___ @@ -250,7 +250,7 @@ ___ **● votedDown**: *[Verb](../interfaces/verb.md)* = xapiVerbs.tincan.votedDown -*Defined in [src/verbs/verbs.ts:23](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L23)* +*Defined in [src/verbs/verbs.ts:23](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L23)* ___ @@ -259,7 +259,7 @@ ___ **● votedUp**: *[Verb](../interfaces/verb.md)* = xapiVerbs.tincan.votedUp -*Defined in [src/verbs/verbs.ts:22](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L22)* +*Defined in [src/verbs/verbs.ts:22](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L22)* ___ @@ -268,7 +268,7 @@ ___ **● watched**: *[Verb](../interfaces/verb.md)* = xapiVerbs.activityStream.v1.watch -*Defined in [src/verbs/verbs.ts:13](https://github.com/Gradiant/smart-xapi-dsl/blob/a01a088/src/verbs/verbs.ts#L13)* +*Defined in [src/verbs/verbs.ts:13](https://github.com/Gradiant/smart-xapi-dsl/blob/73bdf82/src/verbs/verbs.ts#L13)* ___ diff --git a/package.json b/package.json index 90391c5..fcf6cb4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gradiant/smart-xapi-dsl", - "version": "2.16.0", + "version": "2.17.0", "description": "Smart XAPI DSL", "main": "index.js", "module": "esm/index.js", diff --git a/src/activity-types/activity-types.checkers.ts b/src/activity-types/activity-types.checkers.ts index 0bfe4fb..1a7701a 100644 --- a/src/activity-types/activity-types.checkers.ts +++ b/src/activity-types/activity-types.checkers.ts @@ -127,6 +127,11 @@ export const isEssay = isActivityType(openAnswerTypes.essay); */ export const isGenericOpenAnswer = isActivityType(openAnswerTypes.genericOpenAnswer); +/** + * Check if the given activity type is {@link openAnswerTypes.uploadFile} + */ +export const isUploadFile = isActivityType(openAnswerTypes.uploadFile); + /** * Check if the given activity type is {@link openAnswerTypes.videoRecording} */ @@ -141,7 +146,14 @@ export const isVideoRecording = isActivityType(openAnswerTypes.videoRecording); * - {@link openAnswerTypes.genericOpenAnswer} * - {@link openAnswerTypes.videoRecording} */ -export const isOpenAnswer: ActivityTypeChecker = anyPass([isAudioRecording, isDraw, isEssay, isGenericOpenAnswer, isVideoRecording]); +export const isOpenAnswer: ActivityTypeChecker = anyPass([ + isAudioRecording, + isDraw, + isEssay, + isGenericOpenAnswer, + isUploadFile, + isVideoRecording +]); // Discussion // ---------- diff --git a/src/activity-types/activity-types.ts b/src/activity-types/activity-types.ts index 844b4f4..317619c 100644 --- a/src/activity-types/activity-types.ts +++ b/src/activity-types/activity-types.ts @@ -8,6 +8,7 @@ export namespace openAnswerTypes { export const essay = types.smart.essay; export const draw = types.smart.draw; export const genericOpenAnswer = types.smart.openAnswer; + export const uploadFile = types.smart.uploadFile; export const videoRecording = types.smart.videoRecording; } @@ -107,6 +108,7 @@ export const activityTypes = { * - {@link openAnswerTypes.draw} * - {@link openAnswerTypes.essay} * - {@link openAnswerTypes.genericOpenAnswer} + * - {@link openAnswerTypes.uploadFile} * - {@link openAnswerTypes.videoRecording} * - {@link closedResponseTypes.matchingPairs} * - {@link closedResponseTypes.singleChoice} @@ -123,6 +125,7 @@ export const assessableTypes = new Set([ openAnswerTypes.draw, openAnswerTypes.essay, openAnswerTypes.genericOpenAnswer, + openAnswerTypes.uploadFile, openAnswerTypes.videoRecording, closedResponseTypes.matchingPairs, closedResponseTypes.singleChoice,