@iblai/web-utils 1.10.10 → 1.10.12
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/data-layer/src/features/core/api-slice.d.ts +303 -1
- package/dist/data-layer/src/features/core/types.d.ts +5 -0
- package/dist/data-layer/src/features/user/api-slice.d.ts +426 -1
- package/dist/data-layer/src/features/user/constants.d.ts +5 -0
- package/dist/data-layer/src/features/user/types.d.ts +22 -1
- package/dist/index.esm.js +8 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -506,6 +506,13 @@ const SKILLS_AI_CONFIG = {
|
|
|
506
506
|
description: "Allow users to access courses from the community.",
|
|
507
507
|
type: "boolean",
|
|
508
508
|
},
|
|
509
|
+
{
|
|
510
|
+
slug: "enable_discover_page",
|
|
511
|
+
label: "Discover page",
|
|
512
|
+
defaultValue: true,
|
|
513
|
+
description: "Allow users to access the discover page.",
|
|
514
|
+
type: "boolean",
|
|
515
|
+
},
|
|
509
516
|
/* {
|
|
510
517
|
slug: "enable_sidebar_ai_mentor_display",
|
|
511
518
|
label: "Sidebar mentorAI Display",
|
|
@@ -830,7 +837,7 @@ const MENTOR_VISIBILITY = [
|
|
|
830
837
|
value: MENTOR_VISIBILITY_VALUES.ADMINISTRATORS,
|
|
831
838
|
},
|
|
832
839
|
{
|
|
833
|
-
label: "
|
|
840
|
+
label: "Users",
|
|
834
841
|
value: MENTOR_VISIBILITY_VALUES.STUDENTS,
|
|
835
842
|
},
|
|
836
843
|
{
|