@project-sunbird/collection-editor-react 0.1.10 → 0.1.11

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.
@@ -20,4 +20,12 @@ export interface IFramework {
20
20
  export interface IFrameworkDetails {
21
21
  organisationFramework?: IFramework;
22
22
  targetFrameworks?: IFramework[];
23
+ /** Options for the 'framework' (Course Type) field — built from channel.frameworks
24
+ * filtered/extended by orgFWType from the category definition. */
25
+ orgFrameworks?: Array<{
26
+ label: string;
27
+ value: string;
28
+ }>;
29
+ /** Options for the 'additionalCategories' field — from channel.collectionAdditionalCategories. */
30
+ channelAdditionalCategories?: string[];
23
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@project-sunbird/collection-editor-react",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",