@project-sunbird/collection-editor-react 0.1.8 → 0.1.9
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/collection-editor.umd.js +58 -58
- package/dist/components/Topbar/Topbar.d.ts +1 -0
- package/dist/index.cjs +60 -60
- package/dist/index.js +2225 -2201
- package/dist/types/editor.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/editor.d.ts
CHANGED
|
@@ -41,7 +41,8 @@ export interface IConfig {
|
|
|
41
41
|
previewCdnUrl?: string;
|
|
42
42
|
/**
|
|
43
43
|
* API version for object/category/definition endpoint.
|
|
44
|
-
*
|
|
44
|
+
* Defaults to 'v1' (works on both sandbox and test environments).
|
|
45
|
+
* Set to 'v4' only if your backend specifically requires it.
|
|
45
46
|
*/
|
|
46
47
|
categoryDefinitionApiVersion?: 'v1' | 'v4';
|
|
47
48
|
}
|