@iblai/data-layer 0.2.0 → 0.3.0

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 (86) hide show
  1. package/dist/index.d.ts +41476 -15632
  2. package/dist/index.esm.js +6764 -1863
  3. package/dist/index.esm.js.map +1 -1
  4. package/dist/index.js +6947 -1859
  5. package/dist/index.js.map +1 -1
  6. package/dist/package.json +19 -17
  7. package/dist/src/__tests__/constants.test.d.ts +1 -0
  8. package/dist/src/core/index.d.ts +2 -1
  9. package/dist/src/features/analytics/api-slice.d.ts +1879 -122
  10. package/dist/src/features/analytics/constants.d.ts +56 -1
  11. package/dist/src/features/analytics/types.d.ts +327 -1
  12. package/dist/src/features/api-keys/api-slice.d.ts +25 -36
  13. package/dist/src/features/apps/api-slice.d.ts +25 -36
  14. package/dist/src/features/auth/api-slice.d.ts +504 -2
  15. package/dist/src/features/auth/constants.d.ts +13 -1
  16. package/dist/src/features/auth/types.d.ts +20 -0
  17. package/dist/src/features/billing/api-slice.d.ts +5 -5
  18. package/dist/src/features/career/api-slice.d.ts +2345 -180
  19. package/dist/src/features/catalog/api-slice.d.ts +2260 -244
  20. package/dist/src/features/chat/api-slice.d.ts +68 -68
  21. package/dist/src/features/chat-files/api-slice.d.ts +185 -0
  22. package/dist/src/features/chat-files/types.d.ts +32 -0
  23. package/dist/src/features/chat-history/api-slice.d.ts +60 -60
  24. package/dist/src/features/core/api-slice.d.ts +3793 -26
  25. package/dist/src/features/core/constants.d.ts +43 -0
  26. package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
  27. package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
  28. package/dist/src/features/core/types.d.ts +60 -0
  29. package/dist/src/features/credentials/api-slice.d.ts +766 -105
  30. package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
  31. package/dist/src/features/custom-domain/constants.d.ts +20 -0
  32. package/dist/src/features/custom-domain/types.d.ts +46 -0
  33. package/dist/src/features/datasets/api-slice.d.ts +22 -22
  34. package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
  35. package/dist/src/features/disclaimers/constants.d.ts +27 -0
  36. package/dist/src/features/disclaimers/index.d.ts +3 -0
  37. package/dist/src/features/disclaimers/types.d.ts +67 -0
  38. package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
  39. package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
  40. package/dist/src/features/edx-proctoring/types.d.ts +61 -0
  41. package/dist/src/features/llms/api-slice.d.ts +20 -20
  42. package/dist/src/features/memory/api-slice.d.ts +1437 -530
  43. package/dist/src/features/memory/constants.d.ts +50 -0
  44. package/dist/src/features/memory/index.d.ts +3 -0
  45. package/dist/src/features/memory/types.d.ts +122 -0
  46. package/dist/src/features/mentor/api-slice.d.ts +1738 -240
  47. package/dist/src/features/mentor/constants.d.ts +8 -0
  48. package/dist/src/features/mentor/custom-api-slice.d.ts +529 -1
  49. package/dist/src/features/mentor/types.d.ts +39 -0
  50. package/dist/src/features/mentor-categories/api-slice.d.ts +416 -20
  51. package/dist/src/features/notifications/api-slice.d.ts +696 -42
  52. package/dist/src/features/notifications/constants.d.ts +26 -0
  53. package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
  54. package/dist/src/features/notifications/types.d.ts +69 -0
  55. package/dist/src/features/per-learner/api-slice.d.ts +58 -58
  56. package/dist/src/features/platform/api-slice.d.ts +321 -167
  57. package/dist/src/features/platform/constants.d.ts +17 -0
  58. package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
  59. package/dist/src/features/platform/types.d.ts +48 -0
  60. package/dist/src/features/projects/api-slice.d.ts +2026 -0
  61. package/dist/src/features/projects/constants.d.ts +51 -0
  62. package/dist/src/features/projects/types.d.ts +79 -0
  63. package/dist/src/features/prompts/api-slice.d.ts +105 -83
  64. package/dist/src/features/reports/api-slice.d.ts +814 -0
  65. package/dist/src/features/search/ai-search-api-slice.d.ts +1015 -0
  66. package/dist/src/features/search/api-slice.d.ts +39 -39
  67. package/dist/src/features/search/constants.d.ts +31 -0
  68. package/dist/src/features/search/types.d.ts +89 -0
  69. package/dist/src/features/sessions/api-slice.d.ts +24 -24
  70. package/dist/src/features/skills/api-slice.d.ts +77 -77
  71. package/dist/src/features/stripe/api-slice.d.ts +201 -40
  72. package/dist/src/features/stripe/constants.d.ts +5 -1
  73. package/dist/src/features/stripe/types.d.ts +10 -0
  74. package/dist/src/features/tenant/api-slice.d.ts +43 -52
  75. package/dist/src/features/tenant/types.d.ts +1 -0
  76. package/dist/src/features/tools/api-slice.d.ts +64 -20
  77. package/dist/src/features/training-documents/api-slice.d.ts +534 -27
  78. package/dist/src/features/user/api-slice.d.ts +124 -124
  79. package/dist/src/features/user/constants.d.ts +3 -1
  80. package/dist/src/features/user-invitations/api-slice.d.ts +22 -22
  81. package/dist/src/features/utils.d.ts +8 -5
  82. package/dist/src/index.d.ts +78 -47
  83. package/dist/src/reducers/skills.d.ts +2 -1128
  84. package/dist/src/services/StorageService.d.ts +1 -1
  85. package/dist/tests/setupTests.d.ts +1 -1
  86. package/package.json +26 -21
@@ -1,4 +1,47 @@
1
+ import { SERVICES } from '@data-layer/constants';
1
2
  export declare const LOGO_ENDPOINTS: {
2
3
  light_logo: (platformKey: string) => string;
3
4
  dark_logo: (platformKey: string) => string;
4
5
  };
6
+ export declare const CORE_CUSTOM_REDUCER_PATH = "coreCustomApiSlice";
7
+ export declare const CORE_FAKE_CUSTOM_REDUCER_PATH = "coreFakeCustomApiSlice";
8
+ export declare const PLATFORM_MEMBERSHIP_TAG = "PlatformMembership";
9
+ export declare const CORE_CUSTOM_ENDPOINTS: {
10
+ GET_PLATFORM_MEMBERSHIP: {
11
+ path: string;
12
+ service: SERVICES;
13
+ };
14
+ UPDATE_PLATFORM_MEMBERSHIP: {
15
+ path: string;
16
+ service: SERVICES;
17
+ };
18
+ JOIN_PLATFORM: {
19
+ path: string;
20
+ service: SERVICES;
21
+ };
22
+ GET_PLATFORM_IMAGE_ASSETS_LIST: {
23
+ path: (platform_key: string) => string;
24
+ service: SERVICES;
25
+ };
26
+ CREATE_PLATFORM_IMAGE_ASSET: {
27
+ path: (platform_key: string) => string;
28
+ service: SERVICES;
29
+ };
30
+ GET_PLATFORM_IMAGE_ASSET_DETAILS: {
31
+ path: (platform_key: string, asset_id: number) => string;
32
+ service: SERVICES;
33
+ };
34
+ UPDATE_PLATFORM_IMAGE_ASSET: {
35
+ path: (platform_key: string, asset_id: number) => string;
36
+ service: SERVICES;
37
+ };
38
+ DELETE_PLATFORM_IMAGE_ASSET: {
39
+ path: (platform_key: string, asset_id: number) => string;
40
+ service: SERVICES;
41
+ };
42
+ GET_PUBLIC_PLATFORM_IMAGE_ASSET_FILE_URL: {
43
+ path: (platform_key: string, asset_id: number) => string;
44
+ baseUrl: string;
45
+ service: SERVICES;
46
+ };
47
+ };