@iblai/data-layer 0.2.0 → 0.3.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.
- package/dist/index.d.ts +41476 -15632
- package/dist/index.esm.js +6764 -1863
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6947 -1859
- package/dist/index.js.map +1 -1
- package/dist/package.json +19 -17
- package/dist/src/__tests__/constants.test.d.ts +1 -0
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/src/features/analytics/constants.d.ts +56 -1
- package/dist/src/features/analytics/types.d.ts +327 -1
- package/dist/src/features/api-keys/api-slice.d.ts +25 -36
- package/dist/src/features/apps/api-slice.d.ts +25 -36
- package/dist/src/features/auth/api-slice.d.ts +504 -2
- package/dist/src/features/auth/constants.d.ts +13 -1
- package/dist/src/features/auth/types.d.ts +20 -0
- package/dist/src/features/billing/api-slice.d.ts +5 -5
- package/dist/src/features/career/api-slice.d.ts +2345 -180
- package/dist/src/features/catalog/api-slice.d.ts +2260 -244
- package/dist/src/features/chat/api-slice.d.ts +68 -68
- package/dist/src/features/chat-files/api-slice.d.ts +185 -0
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +60 -60
- package/dist/src/features/core/api-slice.d.ts +3793 -26
- package/dist/src/features/core/constants.d.ts +43 -0
- package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
- package/dist/src/features/core/types.d.ts +60 -0
- package/dist/src/features/credentials/api-slice.d.ts +766 -105
- package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/src/features/custom-domain/types.d.ts +46 -0
- package/dist/src/features/datasets/api-slice.d.ts +22 -22
- package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/src/features/disclaimers/index.d.ts +3 -0
- package/dist/src/features/disclaimers/types.d.ts +67 -0
- package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/src/features/llms/api-slice.d.ts +20 -20
- package/dist/src/features/memory/api-slice.d.ts +1437 -530
- package/dist/src/features/memory/constants.d.ts +50 -0
- package/dist/src/features/memory/index.d.ts +3 -0
- package/dist/src/features/memory/types.d.ts +122 -0
- package/dist/src/features/mentor/api-slice.d.ts +1738 -240
- package/dist/src/features/mentor/constants.d.ts +8 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/src/features/mentor/types.d.ts +39 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +416 -20
- package/dist/src/features/notifications/api-slice.d.ts +696 -42
- package/dist/src/features/notifications/constants.d.ts +26 -0
- package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/src/features/notifications/types.d.ts +69 -0
- package/dist/src/features/per-learner/api-slice.d.ts +58 -58
- package/dist/src/features/platform/api-slice.d.ts +321 -167
- package/dist/src/features/platform/constants.d.ts +17 -0
- package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/src/features/platform/types.d.ts +48 -0
- package/dist/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/src/features/projects/constants.d.ts +51 -0
- package/dist/src/features/projects/types.d.ts +79 -0
- package/dist/src/features/prompts/api-slice.d.ts +105 -83
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/src/features/search/api-slice.d.ts +39 -39
- package/dist/src/features/search/constants.d.ts +31 -0
- package/dist/src/features/search/types.d.ts +89 -0
- package/dist/src/features/sessions/api-slice.d.ts +24 -24
- package/dist/src/features/skills/api-slice.d.ts +77 -77
- package/dist/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/src/features/stripe/constants.d.ts +5 -1
- package/dist/src/features/stripe/types.d.ts +10 -0
- package/dist/src/features/tenant/api-slice.d.ts +43 -52
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tools/api-slice.d.ts +64 -20
- package/dist/src/features/training-documents/api-slice.d.ts +534 -27
- package/dist/src/features/user/api-slice.d.ts +124 -124
- package/dist/src/features/user/constants.d.ts +3 -1
- package/dist/src/features/user-invitations/api-slice.d.ts +22 -22
- package/dist/src/features/utils.d.ts +8 -5
- package/dist/src/index.d.ts +78 -47
- package/dist/src/reducers/skills.d.ts +2 -1128
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/tests/setupTests.d.ts +1 -1
- package/package.json +16 -13
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iblai/data-layer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "ibl.ai data layer",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,40 +25,42 @@
|
|
|
25
25
|
"author": "iblai",
|
|
26
26
|
"license": "ISC",
|
|
27
27
|
"devDependencies": {
|
|
28
|
+
"@eslint/js": "^9.39.1",
|
|
28
29
|
"@rollup/plugin-commonjs": "25.0.8",
|
|
29
30
|
"@rollup/plugin-node-resolve": "15.3.1",
|
|
30
31
|
"@rollup/plugin-typescript": "11.1.6",
|
|
31
|
-
"@testing-library/jest-dom": "^6.
|
|
32
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
32
33
|
"@testing-library/react": "^16.3.0",
|
|
33
34
|
"@types/jest": "^29.5.14",
|
|
34
|
-
"@types/node": "^22.
|
|
35
|
-
"@types/react": "19.
|
|
35
|
+
"@types/node": "^22.19.0",
|
|
36
|
+
"@types/react": "19.1.17",
|
|
36
37
|
"@types/testing-library__jest-dom": "^5.14.9",
|
|
37
38
|
"@typescript-eslint/eslint-plugin": "8.29.1",
|
|
38
39
|
"@typescript-eslint/parser": "8.29.1",
|
|
39
40
|
"eslint": "9.24.0",
|
|
40
41
|
"eslint-config-prettier": "10.1.2",
|
|
42
|
+
"globals": "^16.5.0",
|
|
41
43
|
"husky": "9.1.7",
|
|
42
44
|
"jest": "29.7.0",
|
|
43
45
|
"jest-environment-jsdom": "29.7.0",
|
|
44
46
|
"prettier": "3.5.3",
|
|
45
47
|
"rollup": "4.40.0",
|
|
46
|
-
"rollup-plugin-dts": "^6.2.
|
|
48
|
+
"rollup-plugin-dts": "^6.2.3",
|
|
47
49
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
48
50
|
"rollup-plugin-typescript2": "0.36.0",
|
|
49
|
-
"ts-jest": "^29.
|
|
51
|
+
"ts-jest": "^29.4.5",
|
|
50
52
|
"tslib": "2.8.1",
|
|
51
53
|
"typescript": "5.8.3"
|
|
52
54
|
},
|
|
53
55
|
"dependencies": {
|
|
54
|
-
"@iblai/iblai-api": "4.
|
|
56
|
+
"@iblai/iblai-api": "4.90.4-ai",
|
|
55
57
|
"rollup-plugin-copy": "^3.5.0",
|
|
56
58
|
"zod": "3.24.2"
|
|
57
59
|
},
|
|
58
60
|
"peerDependencies": {
|
|
59
61
|
"@reduxjs/toolkit": "2.7.0",
|
|
60
|
-
"react": "19.
|
|
61
|
-
"react-dom": "19.
|
|
62
|
+
"react": "19.1.0",
|
|
63
|
+
"react-dom": "19.1.0",
|
|
62
64
|
"react-redux": "9.2.0"
|
|
63
65
|
},
|
|
64
66
|
"publishConfig": {
|
|
@@ -68,12 +70,13 @@
|
|
|
68
70
|
"scripts": {
|
|
69
71
|
"build": "rollup -c",
|
|
70
72
|
"watch": "rollup -c -w",
|
|
71
|
-
"test": "
|
|
72
|
-
"test:watch": "
|
|
73
|
-
"test:coverage": "
|
|
73
|
+
"test": "vitest run",
|
|
74
|
+
"test:watch": "vitest",
|
|
75
|
+
"test:coverage": "vitest run --coverage",
|
|
74
76
|
"format": "prettier --write .",
|
|
75
77
|
"format:check": "prettier --check .",
|
|
76
78
|
"lint": "eslint --fix",
|
|
77
|
-
"lint:check": "eslint"
|
|
79
|
+
"lint:check": "eslint",
|
|
80
|
+
"typecheck": "tsc --noEmit"
|
|
78
81
|
}
|
|
79
82
|
}
|