@salesforce/lds-adapters-platform-learning-content 1.260.0 → 1.261.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +3 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +4 -0
- package/package.json +4 -4
- package/sfdc/index.d.ts +1 -1
- package/sfdc/index.js +2269 -2267
- package/dist/es/es2018/types/src/main.d.ts +0 -4
- package/dist/es/es2018/types/src/sfdc.d.ts +0 -5
|
@@ -8,3 +8,6 @@ export { getModuleAdapterFactory } from '../adapters/getModule';
|
|
|
8
8
|
export { getLearningPracticeAdapterFactory } from '../adapters/getLearningPractice';
|
|
9
9
|
export { evaluateLearningItemAdapterFactory } from '../adapters/evaluateLearningItem';
|
|
10
10
|
export { getTextLessonAdapterFactory } from '../adapters/getTextLesson';
|
|
11
|
+
export { notifyUpdateAvailableFactory as notifyLearningItemProgressUpdateAvailableFactory } from '../types/LearningItemProgressRepresentation';
|
|
12
|
+
export { notifyUpdateAvailableFactory as notifyLearningItemUpdateAvailableFactory } from '../types/LearningItemRepresentation';
|
|
13
|
+
export { notifyUpdateAvailableFactory as notifyLearningTextLessonUpdateAvailableFactory } from '../types/LearningTextLessonRepresentation';
|
|
@@ -20,4 +20,8 @@ declare let getLearningModel_imperative: any;
|
|
|
20
20
|
declare let getLearningPractice_imperative: any;
|
|
21
21
|
declare let getModule_imperative: any;
|
|
22
22
|
declare let getTextLesson_imperative: any;
|
|
23
|
+
declare let notifyLearningItemProgressUpdateAvailable: any;
|
|
24
|
+
declare let notifyLearningItemUpdateAvailable: any;
|
|
25
|
+
declare let notifyLearningTextLessonUpdateAvailable: any;
|
|
23
26
|
export { evaluateLearningItem, getFeaturedItemsRecommendedList, getFeaturedItemsRelatedList, getLearningConfig, getLearningItemProgress, getLearningItemsList, getLearningModel, getLearningPractice, getLearningPracticeNotifyChange, getModule, getModuleNotifyChange, getTextLesson, getTextLessonNotifyChange, getFeaturedItemsRecommendedList_imperative, getFeaturedItemsRelatedList_imperative, getLearningConfig_imperative, getLearningItemProgress_imperative, getLearningItemsList_imperative, getLearningModel_imperative, getLearningPractice_imperative, getModule_imperative, getTextLesson_imperative };
|
|
27
|
+
export { notifyLearningItemProgressUpdateAvailable, notifyLearningItemUpdateAvailable, notifyLearningTextLessonUpdateAvailable, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-learning-content",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Learning content platform",
|
|
6
6
|
"main": "dist/es/es2018/platform-learning-content.js",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@salesforce/lds-bindings": "^1.
|
|
42
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
-
"@salesforce/lds-karma": "^1.
|
|
45
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
46
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from '../dist/es/es2018/types/src/sfdc';
|
|
1
|
+
export * from '../dist/es/es2018/types/src/generated/artifacts/sfdc';
|