From 3a95219d0700a115c707aa001659ea22d1be292e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Ca=C3=B1as?= Date: Tue, 15 Oct 2019 13:04:01 +0200 Subject: [PATCH 1/2] feat(SUMN-1099): Smart Scorm activity and recipe added --- dsl-definition.json | 6 ++++-- package-lock.json | 2 +- src/dsl/activity-types/smart.ts | 3 +++ src/dsl/category-identifiers/smart.ts | 1 + 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/dsl-definition.json b/dsl-definition.json index 021c2bb..b7efabd 100644 --- a/dsl-definition.json +++ b/dsl-definition.json @@ -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" @@ -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": { diff --git a/package-lock.json b/package-lock.json index 98aa78e..7d595e0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@gradiant/xapi-dsl", - "version": "1.7.0", + "version": "1.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/src/dsl/activity-types/smart.ts b/src/dsl/activity-types/smart.ts index 5abf7a2..8239929 100644 --- a/src/dsl/activity-types/smart.ts +++ b/src/dsl/activity-types/smart.ts @@ -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'; } diff --git a/src/dsl/category-identifiers/smart.ts b/src/dsl/category-identifiers/smart.ts index 0b654d7..8382cb6 100644 --- a/src/dsl/category-identifiers/smart.ts +++ b/src/dsl/category-identifiers/smart.ts @@ -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'; } From c1c9b51363518613004324002285d6160024725f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Vilas=20Villamar=C3=ADn?= Date: Tue, 15 Oct 2019 16:08:06 +0200 Subject: [PATCH 2/2] chore(release): 1.9.0 --- CHANGELOG.md | 7 +++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 253c863..38e95eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package-lock.json b/package-lock.json index 7d595e0..af88cbd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@gradiant/xapi-dsl", - "version": "1.8.0", + "version": "1.9.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5e9d47d..8c8f5e6 100644 --- a/package.json +++ b/package.json @@ -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 ",