@salesforce/lds-adapters-platform-learning-content 1.149.0 → 1.150.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/platform-learning-content.js +141 -831
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +0 -2
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +1 -6
- package/package.json +1 -1
- package/sfdc/index.js +528 -1275
- package/src/raml/api.raml +0 -68
- package/src/raml/luvio.raml +0 -19
- package/dist/es/es2018/types/src/generated/adapters/getLearningSearchDescribe.d.ts +0 -25
- package/dist/es/es2018/types/src/generated/adapters/getLearningSearchResults.d.ts +0 -29
- package/dist/es/es2018/types/src/generated/resources/getLearningContentPlatformLearningSearchDescribe.d.ts +0 -12
- package/dist/es/es2018/types/src/generated/resources/getLearningContentPlatformLearningSearchTypeByContentType.d.ts +0 -20
- package/dist/es/es2018/types/src/generated/types/LearningSearchDescribeContentRepresentation.d.ts +0 -41
- package/dist/es/es2018/types/src/generated/types/LearningSearchDescribeRepresentation.d.ts +0 -38
- package/dist/es/es2018/types/src/generated/types/LearningSearchResultsRepresentation.d.ts +0 -54
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export { getFeaturedItemsRecommendedListAdapterFactory } from '../adapters/getFeaturedItemsRecommendedList';
|
|
2
2
|
export { getFeaturedItemsRelatedListAdapterFactory } from '../adapters/getFeaturedItemsRelatedList';
|
|
3
|
-
export { getLearningSearchDescribeAdapterFactory } from '../adapters/getLearningSearchDescribe';
|
|
4
|
-
export { getLearningSearchResultsAdapterFactory } from '../adapters/getLearningSearchResults';
|
|
5
3
|
export { getLearningConfigAdapterFactory } from '../adapters/getLearningConfig';
|
|
6
4
|
export { getLearningItemsListAdapterFactory } from '../adapters/getLearningItemsList';
|
|
7
5
|
export { getLearningItemProgressAdapterFactory } from '../adapters/getLearningItemProgress';
|
|
@@ -7,9 +7,6 @@ declare let getLearningItemsList: any;
|
|
|
7
7
|
declare let getLearningModel: any;
|
|
8
8
|
declare let getLearningPractice: any;
|
|
9
9
|
declare let getLearningPracticeNotifyChange: any;
|
|
10
|
-
declare let getLearningSearchDescribe: any;
|
|
11
|
-
declare let getLearningSearchResults: any;
|
|
12
|
-
declare let getLearningSearchResultsNotifyChange: any;
|
|
13
10
|
declare let getModule: any;
|
|
14
11
|
declare let getModuleNotifyChange: any;
|
|
15
12
|
declare let getTextLesson: any;
|
|
@@ -21,8 +18,6 @@ declare let getLearningItemProgress_imperative: any;
|
|
|
21
18
|
declare let getLearningItemsList_imperative: any;
|
|
22
19
|
declare let getLearningModel_imperative: any;
|
|
23
20
|
declare let getLearningPractice_imperative: any;
|
|
24
|
-
declare let getLearningSearchDescribe_imperative: any;
|
|
25
|
-
declare let getLearningSearchResults_imperative: any;
|
|
26
21
|
declare let getModule_imperative: any;
|
|
27
22
|
declare let getTextLesson_imperative: any;
|
|
28
|
-
export { evaluateLearningItem, getFeaturedItemsRecommendedList, getFeaturedItemsRelatedList, getLearningConfig, getLearningItemProgress, getLearningItemsList, getLearningModel, getLearningPractice, getLearningPracticeNotifyChange,
|
|
23
|
+
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 };
|
package/package.json
CHANGED