Skip to content

Commit

Permalink
Merge pull request #3 from Gradiant/feature/SUMN-1099-scorm-activitie…
Browse files Browse the repository at this point in the history
…s-support

Feature/sumn 1099 scorm activities support
  • Loading branch information
dookie23 authored Oct 15, 2019
2 parents 11c1896 + c1c9b51 commit a0d3872
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

## [1.9.0](https://github.com/Gradiant/gradiant-xapi-dsl/compare/v1.8.0...v1.9.0) (2019-10-15)


### Features

* **SUMN-1099:** Smart Scorm activity and recipe added ([3a95219](https://github.com/Gradiant/gradiant-xapi-dsl/commit/3a95219d0700a115c707aa001659ea22d1be292e))

## [1.8.0](https://github.com/Gradiant/gradiant-xapi-dsl/compare/v1.7.0...v1.8.0) (2019-07-11)


Expand Down
6 changes: 4 additions & 2 deletions dsl-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"screen": "https://w3id.org/xapi/smart/activity/screen",
"recipe": "https://w3id.org/xapi/smart/activity/recipe",
"attempt": "https://w3id.org/xapi/smart/activity/attempt",
"quiz": "https://w3id.org/xapi/smart/activity/quiz"
"quiz": "https://w3id.org/xapi/smart/activity/quiz",
"scorm": "https://w3id.org/xapi/smart/activity/scorm"
},
"in2it": {
"essay": "http://gradiant.org/in2it/schema/ActivityType/essay"
Expand All @@ -61,7 +62,8 @@
"recipeOpenAnswer": "https://w3id.org/xapi/smart/activity/recipe/open_answer",
"recipeAudioVideo": "https://w3id.org/xapi/smart/activity/recipe/audio_video",
"recipeDiscussion": "https://w3id.org/xapi/smart/activity/recipe/discussion",
"recipeNoInteractive": "https://w3id.org/xapi/smart/activity/recipe/no_interactive"
"recipeNoInteractive": "https://w3id.org/xapi/smart/activity/recipe/no_interactive",
"recipeScorm": "https://w3id.org/xapi/smart/activity/recipe/scorm"
}
},
"contextExtensions": {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gradiant/xapi-dsl",
"version": "1.8.0",
"version": "1.9.0",
"description": "Gradiant XAPI constans for xAPI",
"license": "UNLICENSED",
"author": "Lorens León <lleon@gradiant.org>",
Expand Down
3 changes: 3 additions & 0 deletions src/dsl/activity-types/smart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,7 @@ export namespace smart {

// Quiztionary
export const quiz = 'https://w3id.org/xapi/smart/activity/quiz';

// Scorm activities
export const scorm = 'https://w3id.org/xapi/smart/activity/scorm';
}
1 change: 1 addition & 0 deletions src/dsl/category-identifiers/smart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ export namespace smart {
export const recipeAudioVideo = 'https://w3id.org/xapi/smart/activity/recipe/audio_video';
export const recipeDiscussion = 'https://w3id.org/xapi/smart/activity/recipe/discussion';
export const recipeNoInteractive = 'https://w3id.org/xapi/smart/activity/recipe/no_interactive';
export const recipeScorm = 'https://w3id.org/xapi/smart/activity/recipe/scorm';
}

0 comments on commit a0d3872

Please sign in to comment.