@sunbird-cb/consumption 0.0.1

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.
Files changed (185) hide show
  1. package/README.md +24 -0
  2. package/bundles/sunbird-cb-consumption.umd.js +8116 -0
  3. package/bundles/sunbird-cb-consumption.umd.js.map +1 -0
  4. package/bundles/sunbird-cb-consumption.umd.min.js +17 -0
  5. package/bundles/sunbird-cb-consumption.umd.min.js.map +1 -0
  6. package/esm2015/lib/_common/cards/card-landscape/card-landscape.component.js +209 -0
  7. package/esm2015/lib/_common/cards/card-portrait/card-portrait.component.js +173 -0
  8. package/esm2015/lib/_common/cards/card-resource/card-resource.component.js +34 -0
  9. package/esm2015/lib/_common/cards/card-user/card-user.component.js +141 -0
  10. package/esm2015/lib/_common/cards/cards.component.js +107 -0
  11. package/esm2015/lib/_common/cards/cards.module.js +47 -0
  12. package/esm2015/lib/_common/competency-passbook/competency-passbook.component.js +324 -0
  13. package/esm2015/lib/_common/competency-passbook/competency-passbook.module.js +27 -0
  14. package/esm2015/lib/_common/competency-passbook/competency-passbook.service.js +52 -0
  15. package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +1594 -0
  16. package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.js +212 -0
  17. package/esm2015/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.module.js +69 -0
  18. package/esm2015/lib/_common/data-points/data-points.component.js +53 -0
  19. package/esm2015/lib/_common/data-points/data-points.module.js +19 -0
  20. package/esm2015/lib/_common/display-content-type-lib/display-content-type-lib.component.js +56 -0
  21. package/esm2015/lib/_common/display-content-type-lib/display-content-type-lib.module.js +18 -0
  22. package/esm2015/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.js +268 -0
  23. package/esm2015/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.module.js +23 -0
  24. package/esm2015/lib/_common/pills/pills.component.js +49 -0
  25. package/esm2015/lib/_common/pills/pills.module.js +24 -0
  26. package/esm2015/lib/_common/skeleton-loader-lib/skeleton-loader-lib.component.js +40 -0
  27. package/esm2015/lib/_common/skeleton-loader-lib/skeleton-loader-lib.module.js +28 -0
  28. package/esm2015/lib/_common/sliders/sliders.component.js +184 -0
  29. package/esm2015/lib/_common/sliders/sliders.model.js +61 -0
  30. package/esm2015/lib/_common/sliders/sliders.module.js +50 -0
  31. package/esm2015/lib/_constants/misc.constants.js +5 -0
  32. package/esm2015/lib/_directives/default-thumbnail/default-thumbnail.directive.js +52 -0
  33. package/esm2015/lib/_directives/default-thumbnail/default-thumbnail.module.js +19 -0
  34. package/esm2015/lib/_directives/image-responsive/image-responsive.directive.js +127 -0
  35. package/esm2015/lib/_directives/image-responsive/image-responsive.module.js +19 -0
  36. package/esm2015/lib/_directives/navigation/navigation.directive.js +54 -0
  37. package/esm2015/lib/_directives/navigation/navigation.module.js +19 -0
  38. package/esm2015/lib/_models/card-content-v2.model.js +78 -0
  39. package/esm2015/lib/_models/card-content.model.js +69 -0
  40. package/esm2015/lib/_models/card-users.model.js +101 -0
  41. package/esm2015/lib/_models/content-strip-multiple.model.js +195 -0
  42. package/esm2015/lib/_models/event.js +45 -0
  43. package/esm2015/lib/_models/profile-v3.models.js +196 -0
  44. package/esm2015/lib/_models/widget-content.model.js +876 -0
  45. package/esm2015/lib/_models/widget-search.model.js +472 -0
  46. package/esm2015/lib/_models/widget-user.model.js +17 -0
  47. package/esm2015/lib/_pipes/pipe-duration-transform/pipe-duration-transform.module.js +19 -0
  48. package/esm2015/lib/_pipes/pipe-duration-transform/pipe-duration-transform.pipe.js +120 -0
  49. package/esm2015/lib/_pipes/pipe-public-URL/pipe-public-URL.module.js +19 -0
  50. package/esm2015/lib/_pipes/pipe-public-URL/pipe-public-URL.pipe.js +38 -0
  51. package/esm2015/lib/_services/common-methods.service.js +60 -0
  52. package/esm2015/lib/_services/configurations.service.js +243 -0
  53. package/esm2015/lib/_services/multilingual-translations.service.js +228 -0
  54. package/esm2015/lib/_services/viewer-route-util.js +125 -0
  55. package/esm2015/lib/_services/widget-content.service.js +818 -0
  56. package/esm2015/lib/_services/widget-user.service.js +439 -0
  57. package/esm2015/lib/consumption.component.js +26 -0
  58. package/esm2015/lib/consumption.config.js +12 -0
  59. package/esm2015/lib/consumption.module.js +26 -0
  60. package/esm2015/lib/consumption.service.js +18 -0
  61. package/esm2015/lib/registration-lib.config.js +21 -0
  62. package/esm2015/public-api.js +19 -0
  63. package/esm2015/sunbird-cb-consumption.js +41 -0
  64. package/esm5/lib/_common/cards/card-landscape/card-landscape.component.js +222 -0
  65. package/esm5/lib/_common/cards/card-portrait/card-portrait.component.js +182 -0
  66. package/esm5/lib/_common/cards/card-resource/card-resource.component.js +41 -0
  67. package/esm5/lib/_common/cards/card-user/card-user.component.js +147 -0
  68. package/esm5/lib/_common/cards/cards.component.js +127 -0
  69. package/esm5/lib/_common/cards/cards.module.js +51 -0
  70. package/esm5/lib/_common/competency-passbook/competency-passbook.component.js +391 -0
  71. package/esm5/lib/_common/competency-passbook/competency-passbook.module.js +31 -0
  72. package/esm5/lib/_common/competency-passbook/competency-passbook.service.js +59 -0
  73. package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.js +1861 -0
  74. package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.js +212 -0
  75. package/esm5/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.module.js +73 -0
  76. package/esm5/lib/_common/data-points/data-points.component.js +62 -0
  77. package/esm5/lib/_common/data-points/data-points.module.js +23 -0
  78. package/esm5/lib/_common/display-content-type-lib/display-content-type-lib.component.js +63 -0
  79. package/esm5/lib/_common/display-content-type-lib/display-content-type-lib.module.js +22 -0
  80. package/esm5/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.js +300 -0
  81. package/esm5/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.module.js +27 -0
  82. package/esm5/lib/_common/pills/pills.component.js +58 -0
  83. package/esm5/lib/_common/pills/pills.module.js +28 -0
  84. package/esm5/lib/_common/skeleton-loader-lib/skeleton-loader-lib.component.js +45 -0
  85. package/esm5/lib/_common/skeleton-loader-lib/skeleton-loader-lib.module.js +32 -0
  86. package/esm5/lib/_common/sliders/sliders.component.js +211 -0
  87. package/esm5/lib/_common/sliders/sliders.model.js +61 -0
  88. package/esm5/lib/_common/sliders/sliders.module.js +67 -0
  89. package/esm5/lib/_constants/misc.constants.js +5 -0
  90. package/esm5/lib/_directives/default-thumbnail/default-thumbnail.directive.js +60 -0
  91. package/esm5/lib/_directives/default-thumbnail/default-thumbnail.module.js +23 -0
  92. package/esm5/lib/_directives/image-responsive/image-responsive.directive.js +137 -0
  93. package/esm5/lib/_directives/image-responsive/image-responsive.module.js +23 -0
  94. package/esm5/lib/_directives/navigation/navigation.directive.js +63 -0
  95. package/esm5/lib/_directives/navigation/navigation.module.js +23 -0
  96. package/esm5/lib/_models/card-content-v2.model.js +78 -0
  97. package/esm5/lib/_models/card-content.model.js +69 -0
  98. package/esm5/lib/_models/card-users.model.js +101 -0
  99. package/esm5/lib/_models/content-strip-multiple.model.js +195 -0
  100. package/esm5/lib/_models/event.js +45 -0
  101. package/esm5/lib/_models/profile-v3.models.js +196 -0
  102. package/esm5/lib/_models/widget-content.model.js +876 -0
  103. package/esm5/lib/_models/widget-search.model.js +472 -0
  104. package/esm5/lib/_models/widget-user.model.js +17 -0
  105. package/esm5/lib/_pipes/pipe-duration-transform/pipe-duration-transform.module.js +23 -0
  106. package/esm5/lib/_pipes/pipe-duration-transform/pipe-duration-transform.pipe.js +143 -0
  107. package/esm5/lib/_pipes/pipe-public-URL/pipe-public-URL.module.js +23 -0
  108. package/esm5/lib/_pipes/pipe-public-URL/pipe-public-URL.pipe.js +41 -0
  109. package/esm5/lib/_services/common-methods.service.js +73 -0
  110. package/esm5/lib/_services/configurations.service.js +257 -0
  111. package/esm5/lib/_services/multilingual-translations.service.js +256 -0
  112. package/esm5/lib/_services/viewer-route-util.js +127 -0
  113. package/esm5/lib/_services/widget-content.service.js +1062 -0
  114. package/esm5/lib/_services/widget-user.service.js +501 -0
  115. package/esm5/lib/consumption.component.js +28 -0
  116. package/esm5/lib/consumption.config.js +12 -0
  117. package/esm5/lib/consumption.module.js +30 -0
  118. package/esm5/lib/consumption.service.js +21 -0
  119. package/esm5/lib/registration-lib.config.js +21 -0
  120. package/esm5/public-api.js +19 -0
  121. package/esm5/sunbird-cb-consumption.js +41 -0
  122. package/fesm2015/sunbird-cb-consumption.js +6940 -0
  123. package/fesm2015/sunbird-cb-consumption.js.map +1 -0
  124. package/fesm5/sunbird-cb-consumption.js +7871 -0
  125. package/fesm5/sunbird-cb-consumption.js.map +1 -0
  126. package/lib/_common/cards/card-landscape/card-landscape.component.d.ts +35 -0
  127. package/lib/_common/cards/card-portrait/card-portrait.component.d.ts +31 -0
  128. package/lib/_common/cards/card-resource/card-resource.component.d.ts +8 -0
  129. package/lib/_common/cards/card-user/card-user.component.d.ts +24 -0
  130. package/lib/_common/cards/cards.component.d.ts +20 -0
  131. package/lib/_common/cards/cards.module.d.ts +2 -0
  132. package/lib/_common/competency-passbook/competency-passbook.component.d.ts +36 -0
  133. package/lib/_common/competency-passbook/competency-passbook.module.d.ts +2 -0
  134. package/lib/_common/competency-passbook/competency-passbook.service.d.ts +8 -0
  135. package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.component.d.ts +174 -0
  136. package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.model.d.ts +131 -0
  137. package/lib/_common/content-strip-with-tabs-lib/content-strip-with-tabs-lib.module.d.ts +5 -0
  138. package/lib/_common/data-points/data-points.component.d.ts +9 -0
  139. package/lib/_common/data-points/data-points.module.d.ts +2 -0
  140. package/lib/_common/display-content-type-lib/display-content-type-lib.component.d.ts +11 -0
  141. package/lib/_common/display-content-type-lib/display-content-type-lib.module.d.ts +2 -0
  142. package/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.component.d.ts +31 -0
  143. package/lib/_common/horizontal-scroller-v2/horizontal-scroller-v2.module.d.ts +2 -0
  144. package/lib/_common/pills/pills.component.d.ts +10 -0
  145. package/lib/_common/pills/pills.module.d.ts +2 -0
  146. package/lib/_common/skeleton-loader-lib/skeleton-loader-lib.component.d.ts +8 -0
  147. package/lib/_common/skeleton-loader-lib/skeleton-loader-lib.module.d.ts +2 -0
  148. package/lib/_common/sliders/sliders.component.d.ts +26 -0
  149. package/lib/_common/sliders/sliders.model.d.ts +34 -0
  150. package/lib/_common/sliders/sliders.module.d.ts +6 -0
  151. package/lib/_constants/misc.constants.d.ts +2 -0
  152. package/lib/_directives/default-thumbnail/default-thumbnail.directive.d.ts +9 -0
  153. package/lib/_directives/default-thumbnail/default-thumbnail.module.d.ts +2 -0
  154. package/lib/_directives/image-responsive/image-responsive.directive.d.ts +17 -0
  155. package/lib/_directives/image-responsive/image-responsive.module.d.ts +2 -0
  156. package/lib/_directives/navigation/navigation.directive.d.ts +9 -0
  157. package/lib/_directives/navigation/navigation.module.d.ts +2 -0
  158. package/lib/_models/card-content-v2.model.d.ts +44 -0
  159. package/lib/_models/card-content.model.d.ts +41 -0
  160. package/lib/_models/card-users.model.d.ts +49 -0
  161. package/lib/_models/content-strip-multiple.model.d.ts +128 -0
  162. package/lib/_models/event.d.ts +18 -0
  163. package/lib/_models/profile-v3.models.d.ts +91 -0
  164. package/lib/_models/widget-content.model.d.ts +497 -0
  165. package/lib/_models/widget-search.model.d.ts +252 -0
  166. package/lib/_models/widget-user.model.d.ts +5 -0
  167. package/lib/_pipes/pipe-duration-transform/pipe-duration-transform.module.d.ts +2 -0
  168. package/lib/_pipes/pipe-duration-transform/pipe-duration-transform.pipe.d.ts +6 -0
  169. package/lib/_pipes/pipe-public-URL/pipe-public-URL.module.d.ts +2 -0
  170. package/lib/_pipes/pipe-public-URL/pipe-public-URL.pipe.d.ts +6 -0
  171. package/lib/_services/common-methods.service.d.ts +37 -0
  172. package/lib/_services/configurations.service.d.ts +71 -0
  173. package/lib/_services/multilingual-translations.service.d.ts +20 -0
  174. package/lib/_services/viewer-route-util.d.ts +8 -0
  175. package/lib/_services/widget-content.service.d.ts +82 -0
  176. package/lib/_services/widget-user.service.d.ts +31 -0
  177. package/lib/consumption.component.d.ts +5 -0
  178. package/lib/consumption.config.d.ts +6 -0
  179. package/lib/consumption.module.d.ts +2 -0
  180. package/lib/consumption.service.d.ts +3 -0
  181. package/lib/registration-lib.config.d.ts +4 -0
  182. package/package.json +23 -0
  183. package/public-api.d.ts +11 -0
  184. package/sunbird-cb-consumption.d.ts +36 -0
  185. package/sunbird-cb-consumption.metadata.json +1 -0
@@ -0,0 +1,497 @@
1
+ export declare namespace NsContent {
2
+ interface IContinueLearningData extends IContent {
3
+ continueData: any;
4
+ }
5
+ interface IContinueLearningDataReq {
6
+ request: {
7
+ userId: string | undefined;
8
+ courseId: string;
9
+ contentIds: string[];
10
+ batchId: string | undefined | null;
11
+ fields?: string[];
12
+ };
13
+ }
14
+ interface IContent {
15
+ platform?: any;
16
+ addedOn: string;
17
+ appIcon: string;
18
+ artifactUrl: string;
19
+ averageRating?: any;
20
+ batches?: any;
21
+ batch?: any;
22
+ body?: string;
23
+ certificationList?: IRelatedContentMeta[];
24
+ certificationStatus?: TCertificationStatus;
25
+ certificationSubmissionDate?: string;
26
+ certificationUrl: string;
27
+ childNodes?: string[];
28
+ children: IContent[];
29
+ childrenClassifiers?: string[];
30
+ clients?: IClient[];
31
+ collections?: IContent[];
32
+ completionPercentage?: number | null;
33
+ completionStatus?: number;
34
+ difficultyLevel: string;
35
+ contentId: string;
36
+ contentType: EContentTypes;
37
+ contentUrlAtSource: string;
38
+ creatorContacts: ICreator[];
39
+ creatorDetails: ICreator[];
40
+ creatorLogo: string;
41
+ creatorPosterImage: string;
42
+ creatorThumbnail: string;
43
+ curatedTags: string[];
44
+ description: string;
45
+ displayContentType: EDisplayContentTypes;
46
+ downloadUrl?: string;
47
+ duration: number;
48
+ enrolledDate?: string;
49
+ exclusiveContent?: boolean;
50
+ expiryDate?: string;
51
+ equivalentCertifications?: IRelatedContentMeta[];
52
+ hasAccess: boolean;
53
+ hasAssessment?: string;
54
+ idealScreenSize?: string;
55
+ identifier: string;
56
+ introductoryVideo?: string;
57
+ introductoryVideoIcon?: string;
58
+ learningTrack?: string;
59
+ isExternal: boolean;
60
+ isIframeSupported: 'Yes' | 'No' | 'Maybe';
61
+ isInIntranet?: boolean;
62
+ keywords?: string[];
63
+ kArtifacts?: IRelatedContentMeta[];
64
+ lastContentAccessTime?: string;
65
+ lastUpdatedOn: string;
66
+ learningMode?: TLearningMode;
67
+ learningObjective: string;
68
+ labels?: string[];
69
+ locale?: string;
70
+ hasTranslations?: {
71
+ identifier: string;
72
+ locale: string;
73
+ }[];
74
+ isTranslationOf?: {
75
+ identifier: string;
76
+ locale: string;
77
+ }[];
78
+ me_totalSessionsCount: number;
79
+ mediaType: string;
80
+ mimeType: EMimeTypes;
81
+ msArtifactDetails?: IMSArtifactDetails;
82
+ mode?: ETagType;
83
+ name: string;
84
+ nextCertificationAttemptDate?: string;
85
+ playgroundInstructions?: string;
86
+ playgroundResources?: IResourcePlayground[];
87
+ postContents?: IPrePostContent[];
88
+ posterImage?: string;
89
+ preContents?: IPrePostContent[];
90
+ preRequisites: string;
91
+ price?: {
92
+ currency: string;
93
+ value: number;
94
+ };
95
+ primaryCategory: EPrimaryCategory;
96
+ proctorUrl?: string;
97
+ progress?: IMarkAsCompleteProgress;
98
+ publishedOn: string;
99
+ recentCertificationAttemptScore?: number;
100
+ recommendationReasons?: string[];
101
+ region?: string[];
102
+ registrationUrl?: string;
103
+ registrationInstructions?: string;
104
+ resourceCategory?: string[];
105
+ resourceType: string;
106
+ size?: number;
107
+ skills: ISkill[];
108
+ softwareRequirements?: IResourceDetail[];
109
+ sourceName: string;
110
+ sourceShortName: string;
111
+ sourceIconUrl?: string;
112
+ sourceUrl?: string;
113
+ ssoEnabled?: boolean;
114
+ lastReadContentId?: string;
115
+ status: 'Draft' | 'InReview' | 'QualityReview' | 'Reviewed' | 'Processing' | 'Live' | 'Deleted' | 'MarkedForDeletion' | 'Expired';
116
+ subTitle?: string;
117
+ subTitles?: ISubtitle[];
118
+ studyMaterials?: IRelatedContentMeta[];
119
+ systemRequirements?: string[];
120
+ tags: ITag[];
121
+ topics: IContentTopic[];
122
+ totalLikes?: {
123
+ [key: string]: number;
124
+ };
125
+ totalRating?: number;
126
+ track: ITrack[];
127
+ uniqueLearners?: number;
128
+ viewCount?: {
129
+ [key: string]: number;
130
+ };
131
+ reason?: string;
132
+ trainingLHubCount?: number;
133
+ verifiers?: {
134
+ name: string;
135
+ email: string;
136
+ id: string;
137
+ }[];
138
+ references?: {
139
+ url: string;
140
+ title: string;
141
+ }[];
142
+ resumePage?: number;
143
+ [key: string]: any;
144
+ optionalReading: boolean;
145
+ additionalTags?: string[];
146
+ }
147
+ interface IContentResponse {
148
+ id: string;
149
+ params: any;
150
+ responseCode: string;
151
+ result: {
152
+ content: IContent;
153
+ };
154
+ ts: string;
155
+ ver: string;
156
+ }
157
+ interface IBatch {
158
+ batchId: string;
159
+ createdBy: string;
160
+ endDate: string | null;
161
+ enrollmentType: string;
162
+ identifier: string;
163
+ name: string;
164
+ startDate: string;
165
+ status: number;
166
+ cert_templates?: null;
167
+ collectionId: string;
168
+ courseId: string;
169
+ createdDate: string;
170
+ createdFor: string[];
171
+ description?: null;
172
+ enrollmentEndDate: string | null;
173
+ id: string;
174
+ mentors?: string[] | null;
175
+ tandc?: null;
176
+ updatedDate?: string | null;
177
+ }
178
+ interface IBatchListResponse {
179
+ content?: IBatch[];
180
+ count?: number;
181
+ enrolled?: boolean;
182
+ workFlow?: {
183
+ wfInitiated?: boolean;
184
+ batch?: any;
185
+ wfItem?: any;
186
+ };
187
+ }
188
+ interface ICourse {
189
+ active: true;
190
+ addedBy: string;
191
+ batch: IBatch;
192
+ batchId: string;
193
+ certificates: [];
194
+ collectionId: string;
195
+ completedOn: string | null;
196
+ completionPercentage: number | null;
197
+ completionStatus?: number;
198
+ content: IContent;
199
+ contentId: string;
200
+ contentStatus: any;
201
+ courseId: string;
202
+ courseLogoUrl: string;
203
+ courseName: string;
204
+ dateTime: number;
205
+ description: string;
206
+ enrolledDate: string;
207
+ issuedCertificates: [];
208
+ lastContentAccessTime?: string;
209
+ lastReadContentId?: string;
210
+ lastReadContentStatus: string | null;
211
+ leafNodesCount: number;
212
+ progress: number;
213
+ status: number;
214
+ userId: string;
215
+ }
216
+ interface IContentMinimal {
217
+ appIcon: string;
218
+ artifactUrl: string;
219
+ difficultyLevel: string;
220
+ contentType: EContentTypes;
221
+ description: string;
222
+ displayContentType?: EDisplayContentTypes;
223
+ duration: number;
224
+ identifier: string;
225
+ hasAccess?: boolean;
226
+ isInIntranet?: boolean;
227
+ learningMode?: TLearningMode;
228
+ mimeType: EMimeTypes;
229
+ name: string;
230
+ creatorDetails: ICreator[];
231
+ creatorContacts: ICreator[];
232
+ posterImage: string;
233
+ primaryCategory: EPrimaryCategory;
234
+ resourceType?: string;
235
+ totalRating?: number;
236
+ }
237
+ interface ICollectionHierarchyResponse {
238
+ data: IContent;
239
+ hasMore: boolean;
240
+ totalContents: number;
241
+ }
242
+ interface IRelatedContentMeta {
243
+ identifier: string;
244
+ name: string;
245
+ }
246
+ type TCertificationStatus = 'ongoing' | 'passed' | 'canAttempt' | 'cannotAttempt';
247
+ type TLearningMode = 'Self-Paced' | 'Instructor-Led' | 'Open' | 'Closed';
248
+ interface IMarkAsCompleteProgress {
249
+ progressStatus: 'open' | 'started' | 'completed';
250
+ showMarkAsComplete: boolean;
251
+ markAsCompleteReason: string;
252
+ progressSupported: boolean;
253
+ progress: number | null;
254
+ }
255
+ interface ITag {
256
+ id: string;
257
+ type: string;
258
+ value: string;
259
+ }
260
+ interface IMSArtifactDetails {
261
+ channelId: string;
262
+ videoId: string;
263
+ }
264
+ interface IClient {
265
+ displayName: string;
266
+ id: string;
267
+ name: string;
268
+ }
269
+ interface ISubtitle {
270
+ srclang: string;
271
+ label: string;
272
+ url: string;
273
+ }
274
+ interface IPrePostContent {
275
+ identifier: string;
276
+ name: string;
277
+ }
278
+ interface IResourceDetail {
279
+ title?: string;
280
+ url?: string;
281
+ }
282
+ interface IResourcePlayground {
283
+ appIcon: string;
284
+ artifactUrl: string;
285
+ identifier: string;
286
+ name: string;
287
+ }
288
+ interface ITrack {
289
+ id: string;
290
+ name: string;
291
+ status: string;
292
+ visibility: string;
293
+ }
294
+ interface ISkill {
295
+ id: string;
296
+ category: string;
297
+ skill: string;
298
+ name: string;
299
+ }
300
+ interface ICreator {
301
+ id: string;
302
+ name: string;
303
+ email: string;
304
+ }
305
+ interface IContentTopic {
306
+ identifier: string;
307
+ name: string;
308
+ }
309
+ interface IContact {
310
+ id: string;
311
+ name: string;
312
+ email: string;
313
+ }
314
+ interface IViewerContinueLearningRequest {
315
+ resourceId: string;
316
+ contextPathId: string;
317
+ data: string;
318
+ dateAccessed: number;
319
+ contextType?: string;
320
+ }
321
+ /**
322
+ * @deprecated Enum EContentTypes should not be used in future
323
+ */
324
+ enum EContentTypes {
325
+ PROGRAMV2 = "Program",
326
+ PROGRAM = "Learning Path",
327
+ CHANNEL = "Channel",
328
+ COURSE = "Course",
329
+ KNOWLEDGE_ARTIFACT = "Knowledge Artifact",
330
+ KNOWLEDGE_BOARD = "Knowledge Board",
331
+ LEARNING_JOURNEY = "Learning Journeys",
332
+ MODULE = "CourseUnit",
333
+ RESOURCE = "Resource"
334
+ }
335
+ enum EPrimaryCategory {
336
+ PROGRAM = "Program",
337
+ COURSE = "Course",
338
+ MODULE = "Course Unit",
339
+ RESOURCE = "Learning Resource",
340
+ GOALS = "GOALS",
341
+ PLAYLIST = "PLAYLIST",
342
+ PRACTICE_RESOURCE = "Practice Question Set",
343
+ FINAL_ASSESSMENT = "Course Assessment",
344
+ COMP_ASSESSMENT = "Competency Assessment",
345
+ FTB_QUESTION = "FTB Question",
346
+ MTF_QUESTION = "MTF Question",
347
+ MULTIPLE_CHOICE_QUESTION = "Multiple Choice Question",
348
+ SINGLE_CHOICE_QUESTION = "Single Choice Question",
349
+ MANDATORY_COURSE_GOAL = "Mandatory Course Goal",
350
+ STANDALONE_ASSESSMENT = "Standalone Assessment",
351
+ BLENDED_PROGRAM = "Blended Program",
352
+ OFFLINE_SESSION = "Offline Session",
353
+ CURATED_PROGRAM = "Curated Program",
354
+ /**
355
+ * @deprecated The type should not be used
356
+ */
357
+ KNOWLEDGE_ARTIFACT = "Knowledge Artifact",
358
+ /**
359
+ * @deprecated The type should not be used
360
+ */
361
+ KNOWLEDGE_BOARD = "Knowledge Board",
362
+ /**
363
+ * @deprecated The type should not be used
364
+ */
365
+ LEARNING_JOURNEY = "Learning Journeys",
366
+ /**
367
+ * @deprecated The type should not be used
368
+ */
369
+ CHANNEL = "Channel"
370
+ }
371
+ enum ECourseCategory {
372
+ INVITE_ONLY_PROGRAM = "Invite-Only Program",
373
+ MODERATED_PROGRAM = "Moderated Program",
374
+ BLENDED_PROGRAM = "Blended Program",
375
+ CURATED_PROGRAM = "Curated Program",
376
+ COURSE = "Course",
377
+ MODERATED_COURSE = "Moderated Course",
378
+ STANDALONE_ASSESSMENT = "Standalone Assessment",
379
+ MODERATED_ASSESSEMENT = "Moderated Assessment"
380
+ }
381
+ enum WFBlendedProgramStatus {
382
+ INITIATE = "INITIATE",
383
+ SEND_FOR_MDO_APPROVAL = "SEND_FOR_MDO_APPROVAL",
384
+ SEND_FOR_PC_APPROVAL = "SEND_FOR_PC_APPROVAL",
385
+ APPROVED = "APPROVED",
386
+ REJECTED = "REJECTED",
387
+ WITHDRAWN = "WITHDRAWN",
388
+ REMOVED = "REMOVED",
389
+ WITHDRAW = "WITHDRAW"
390
+ }
391
+ enum WFBlendedProgramApprovalTypes {
392
+ ONE_STEP_PC = "oneStepPCApproval",
393
+ ONE_STEP_MDO = "oneStepMDOApproval",
394
+ TWO_STEP_MDO_PC = "twoStepMDOAndPCApproval",
395
+ TWO_STEP_PC_MDO = "twoStepPCAndMDOApproval"
396
+ }
397
+ const WFSTATUS_MSG_MAPPING: any;
398
+ enum EResourcePrimaryCategories {
399
+ LEARNING_RESOURCE = "Learning Resource",
400
+ PRACTICE_RESOURCE = "Practice Question Set",
401
+ FINAL_ASSESSMENT = "Course Assessment",
402
+ COMP_ASSESSMENT = "Competency Assessment",
403
+ OFFLINE_SESSION = "Offline Session"
404
+ }
405
+ enum EMiscPlayerSupportedCollectionTypes {
406
+ PLAYLIST = "Playlist"
407
+ }
408
+ const PLAYER_SUPPORTED_COLLECTION_TYPES: string[];
409
+ const KB_SUPPORTED_CONTENT_TYPES: EPrimaryCategory[];
410
+ const PLAYLIST_SUPPORTED_CONTENT_TYPES: EPrimaryCategory[];
411
+ enum EMimeTypes {
412
+ COLLECTION = "application/vnd.ekstep.content-collection",
413
+ ZIP = "application/vnd.ekstep.html-archive",
414
+ ZIP2 = "application/vnd.ekstep.ecml-archive",
415
+ HTML = "application/html",
416
+ HTML_TEXT = "text/html",
417
+ ILP_FP = "application/ilpfp",
418
+ IAP = "application/iap-assessment",
419
+ M4A = "audio/m4a",
420
+ MP3 = "audio/mpeg",
421
+ MP4 = "video/mp4",
422
+ M3U8 = "application/x-mpegURL",
423
+ INTERACTION = "video/interactive",
424
+ PDF = "application/pdf",
425
+ QUIZ = "application/quiz",
426
+ DRAG_DROP = "application/drag-drop",
427
+ HTML_PICKER = "application/htmlpicker",
428
+ WEB_MODULE = "application/web-module",
429
+ WEB_MODULE_EXERCISE = "application/web-module-exercise",
430
+ YOUTUBE = "video/x-youtube",
431
+ HANDS_ON = "application/integrated-hands-on",
432
+ RDBMS_HANDS_ON = "application/rdbms",
433
+ CLASS_DIAGRAM = "application/class-diagram",
434
+ CHANNEL = "application/channel",
435
+ COLLECTION_RESOURCE = "resource/collection",
436
+ APPLICATION_JSON = "application/json",
437
+ PRACTICE_RESOURCE = "application/vnd.sunbird.questionset",
438
+ FINAL_ASSESSMENT = "application/vnd.sunbird.questionset",
439
+ OFFLINE_SESSION = "application/offline",
440
+ CERTIFICATION = "application/certification",
441
+ PLAYLIST = "application/playlist",
442
+ TEXT_WEB = "text/x-url",
443
+ SURVEY = "application/survey",
444
+ QUESTION_SET = "application/vnd.sunbird.questionset",
445
+ QUESTION = "application/vnd.sunbird.question",
446
+ UNKNOWN = "application/unknown"
447
+ }
448
+ enum EDisplayContentTypes {
449
+ ASSESSMENT = "ASSESSMENT",
450
+ STANDALONE_ASSESSMENT = "STANDALONE ASSESSMENT",
451
+ PRACTICE_RESOURCE = "Practice Question Set",
452
+ FINAL_ASSESSMENT = "Course Assessment",
453
+ AUDIO = "AUDIO",
454
+ CERTIFICATION = "CERTIFICATION",
455
+ CHANNEL = "Channel",
456
+ CLASS_DIAGRAM = "CLASS_DIAGRAM",
457
+ COURSE = "COURSE",
458
+ DEFAULT = "DEFAULT",
459
+ DRAG_DROP = "DRAG_DROP",
460
+ EXTERNAL_CERTIFICATION = "EXTERNAL_CERTIFICATION",
461
+ EXTERNAL_COURSE = "EXTERNAL_COURSE",
462
+ GOALS = "GOALS",
463
+ HANDS_ON = "HANDS_ON",
464
+ IAP = "IAP",
465
+ INSTRUCTOR_LED = "INSTRUCTOR_LED",
466
+ INTERACTIVE_VIDEO = "INTERACTIVE_VIDEO",
467
+ KNOWLEDGE_ARTIFACT = "KNOWLEDGE_ARTIFACT",
468
+ MODULE = "MODULE",
469
+ PDF = "PDF",
470
+ SURVEY = "SURVEY",
471
+ PLAYLIST = "PLAYLIST",
472
+ PROGRAM = "PROGRAM",
473
+ QUIZ = "QUIZ",
474
+ RESOURCE = "RESOURCE",
475
+ RDBMS_HANDS_ON = "RDBMS_HANDS_ON",
476
+ VIDEO = "VIDEO",
477
+ WEB_MODULE = "WEB_MODULE",
478
+ WEB_PAGE = "WEB_PAGE",
479
+ YOUTUBE = "YOUTUBE",
480
+ LINK = "LINK",
481
+ KNOWLEDGE_BOARD = "Knowledge Board",
482
+ LEARNING_JOURNEY = "Learning Journeys",
483
+ BLENDED_PROGRAM = "BLENDED PROGRAM",
484
+ CURATED_PROGRAM = "CURATED PROGRAM"
485
+ }
486
+ enum EFilterCategory {
487
+ ALL = "ALL",
488
+ LEARN = "LEARN",
489
+ PRACTICE = "PRACTICE",
490
+ ASSESS = "ASSESS"
491
+ }
492
+ enum ETagType {
493
+ NEWLY_ADDED = "NEWLY ADDED"
494
+ }
495
+ const UN_SUPPORTED_DATA_TYPES_FOR_NON_BATCH_USERS: string[];
496
+ const PUBLIC_SUPPORTED_CONTENT_TYPES: EMimeTypes[];
497
+ }