@iblai/web-utils 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.
- package/dist/data-layer/src/core/index.d.ts +2 -1
- package/dist/data-layer/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/data-layer/src/features/analytics/constants.d.ts +56 -1
- package/dist/data-layer/src/features/analytics/types.d.ts +327 -1
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +59 -70
- package/dist/data-layer/src/features/apps/api-slice.d.ts +73 -84
- package/dist/data-layer/src/features/auth/api-slice.d.ts +504 -2
- package/dist/data-layer/src/features/auth/constants.d.ts +13 -1
- package/dist/data-layer/src/features/auth/types.d.ts +20 -0
- package/dist/data-layer/src/features/billing/api-slice.d.ts +33 -33
- package/dist/data-layer/src/features/career/api-slice.d.ts +2345 -180
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +2578 -562
- package/dist/data-layer/src/features/chat/api-slice.d.ts +150 -150
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +134 -134
- package/dist/data-layer/src/features/core/api-slice.d.ts +3484 -75
- package/dist/data-layer/src/features/core/constants.d.ts +40 -0
- package/dist/data-layer/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/data-layer/src/features/core/types.d.ts +27 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +859 -221
- package/dist/data-layer/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/data-layer/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/data-layer/src/features/custom-domain/types.d.ts +46 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/data-layer/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/data-layer/src/features/disclaimers/types.d.ts +67 -0
- package/dist/data-layer/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/data-layer/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/data-layer/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/data-layer/src/features/llms/api-slice.d.ts +40 -40
- package/dist/data-layer/src/features/memory/api-slice.d.ts +2129 -0
- package/dist/data-layer/src/features/memory/constants.d.ts +50 -0
- package/dist/data-layer/src/features/memory/types.d.ts +122 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +1176 -470
- package/dist/data-layer/src/features/mentor/constants.d.ts +8 -0
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/data-layer/src/features/mentor/types.d.ts +39 -0
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +436 -40
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +750 -96
- package/dist/data-layer/src/features/notifications/constants.d.ts +20 -0
- package/dist/data-layer/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/data-layer/src/features/notifications/types.d.ts +46 -0
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +118 -118
- package/dist/data-layer/src/features/platform/api-slice.d.ts +345 -191
- package/dist/data-layer/src/features/platform/constants.d.ts +17 -0
- package/dist/data-layer/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/data-layer/src/features/platform/types.d.ts +48 -0
- package/dist/data-layer/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/data-layer/src/features/projects/constants.d.ts +51 -0
- package/dist/data-layer/src/features/projects/types.d.ts +79 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +193 -171
- package/dist/data-layer/src/features/reports/api-slice.d.ts +814 -0
- package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/data-layer/src/features/search/api-slice.d.ts +59 -59
- package/dist/data-layer/src/features/search/constants.d.ts +31 -0
- package/dist/data-layer/src/features/search/types.d.ts +89 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +72 -72
- package/dist/data-layer/src/features/skills/api-slice.d.ts +157 -157
- package/dist/data-layer/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/data-layer/src/features/stripe/constants.d.ts +5 -1
- package/dist/data-layer/src/features/stripe/types.d.ts +10 -0
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +77 -86
- package/dist/data-layer/src/features/tenant/types.d.ts +1 -0
- package/dist/data-layer/src/features/tools/api-slice.d.ts +84 -40
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +582 -75
- package/dist/data-layer/src/features/user/api-slice.d.ts +124 -124
- package/dist/data-layer/src/features/user/constants.d.ts +3 -1
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +56 -56
- package/dist/data-layer/src/features/utils.d.ts +8 -5
- package/dist/data-layer/src/index.d.ts +75 -47
- package/dist/data-layer/src/reducers/skills.d.ts +2 -1148
- package/dist/data-layer/src/services/StorageService.d.ts +1 -1
- package/dist/index.d.ts +1021 -5
- package/dist/index.esm.js +3299 -453
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3305 -448
- package/dist/index.js.map +1 -1
- package/dist/package.json +34 -18
- package/dist/web-utils/src/features/chat/slice.d.ts +12 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/__tests__/time-tracker.test.d.ts +1 -0
- package/dist/web-utils/src/features/tracking/examples.d.ts +4 -0
- package/dist/web-utils/src/features/tracking/index.d.ts +6 -0
- package/dist/web-utils/src/features/tracking/time-tracker.d.ts +29 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker-native.d.ts +14 -0
- package/dist/web-utils/src/features/tracking/use-time-tracker.d.ts +14 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +2 -2
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +9 -1
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.d.ts +2 -1
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +3 -0
- package/dist/web-utils/src/hooks/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +6 -6
- package/dist/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +9 -8
- package/dist/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +1 -1
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +2 -1
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +1 -0
- package/dist/web-utils/src/index.mobile.d.ts +10 -0
- package/dist/web-utils/src/index.web.d.ts +12 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +55 -1
- package/dist/web-utils/src/providers/mentor-provider.d.ts +3 -1
- package/dist/web-utils/src/providers/tenant-provider.d.ts +10 -5
- package/dist/web-utils/src/types/index.d.ts +9 -0
- package/dist/web-utils/src/utils/constants.d.ts +4 -0
- package/dist/web-utils/src/utils/helpers.d.ts +1 -0
- package/dist/web-utils/src/utils/platform.d.ts +7 -0
- package/dist/web-utils/tests/hooks/subscription/class-subscription-flow.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/constants.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/subscription/use-subscription-handler.test.d.ts +1 -0
- package/dist/web-utils/tests/hooks/use-day-js.test.d.ts +1 -0
- package/dist/web-utils/tests/setupTests.d.ts +5 -0
- package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
- package/package.json +37 -22
- package/dist/features/chat/slice.d.ts +0 -59
- package/dist/features/index.d.ts +0 -1
- package/dist/hooks/chat/use-advanced-chat.d.ts +0 -41
- package/dist/hooks/chat/use-chat-v2.d.ts +0 -53
- package/dist/hooks/chat/use-chat.d.ts +0 -52
- package/dist/hooks/chat/use-get-chat-details.d.ts +0 -13
- package/dist/hooks/index.d.ts +0 -10
- package/dist/hooks/subscription/class-subscription-flow.d.ts +0 -70
- package/dist/hooks/subscription/constants.d.ts +0 -4
- package/dist/hooks/subscription/use-subscription-handler.d.ts +0 -11
- package/dist/hooks/subscription-v2/class-subscription-flow.d.ts +0 -62
- package/dist/hooks/subscription-v2/constants.d.ts +0 -5
- package/dist/hooks/subscription-v2/use-external-pricing-plan.d.ts +0 -7
- package/dist/hooks/subscription-v2/use-subscription-handler.d.ts +0 -12
- package/dist/hooks/use-day-js.d.ts +0 -7
- package/dist/providers/auth-provider.d.ts +0 -63
- package/dist/providers/index.d.ts +0 -3
- package/dist/providers/mentor-provider.d.ts +0 -40
- package/dist/providers/tenant-provider.d.ts +0 -60
- package/dist/types/chat.d.ts +0 -1
- package/dist/types/index.d.ts +0 -55
- package/dist/types/subscription.d.ts +0 -18
- package/dist/utils/constants.d.ts +0 -13
- package/dist/utils/data/advanced-tab.d.ts +0 -62
- package/dist/utils/helpers.d.ts +0 -1
- package/dist/utils/index.d.ts +0 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SERVICES } from
|
|
1
|
+
import { SERVICES } from '../../constants';
|
|
2
2
|
export declare const USERS_ENDPOINTS: {
|
|
3
3
|
GET_USER_METADATA: {
|
|
4
4
|
service: SERVICES;
|
|
@@ -35,6 +35,8 @@ export declare const USERS_QUERY_KEYS: {
|
|
|
35
35
|
RESET_PASSWORD: () => string[];
|
|
36
36
|
UPDATE_USER_ROLES: () => string[];
|
|
37
37
|
UPLOAD_PROFILE_IMAGE: () => string[];
|
|
38
|
+
EDX_UPDATE_USER_METADATA: () => string[];
|
|
39
|
+
EDX_GET_USER_METADATA: () => string[];
|
|
38
40
|
REMOVE_PROFILE_IMAGE: () => string[];
|
|
39
41
|
};
|
|
40
42
|
export declare const USERS_REDUCER_PATH = "userApiSlice";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const userInvitationsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const userInvitationsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
2
2
|
getUserInvitations: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
3
|
active?: boolean;
|
|
4
4
|
email?: string;
|
|
@@ -10,9 +10,9 @@ export declare const userInvitationsApiSlice: import("@reduxjs/toolkit/query").A
|
|
|
10
10
|
source?: string;
|
|
11
11
|
username?: string;
|
|
12
12
|
verbose?: boolean;
|
|
13
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
13
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>;
|
|
14
14
|
createUserInvitation: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
15
|
-
requestBody: import("
|
|
15
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationCreate;
|
|
16
16
|
active?: boolean;
|
|
17
17
|
email?: string;
|
|
18
18
|
org?: string;
|
|
@@ -23,7 +23,7 @@ export declare const userInvitationsApiSlice: import("@reduxjs/toolkit/query").A
|
|
|
23
23
|
source?: string;
|
|
24
24
|
username?: string;
|
|
25
25
|
verbose?: boolean;
|
|
26
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
26
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail, "userInvitationsApiSlice", any>;
|
|
27
27
|
}, "userInvitationsApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
28
28
|
export declare const useGetUserInvitationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
29
29
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -35,7 +35,7 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
35
35
|
startedTimeStamp?: undefined | undefined;
|
|
36
36
|
fulfilledTimeStamp?: undefined | undefined;
|
|
37
37
|
} & {
|
|
38
|
-
currentData?: import("
|
|
38
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
39
39
|
isUninitialized: false;
|
|
40
40
|
isLoading: false;
|
|
41
41
|
isFetching: false;
|
|
@@ -54,8 +54,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
54
54
|
source?: string;
|
|
55
55
|
username?: string;
|
|
56
56
|
verbose?: boolean;
|
|
57
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
58
|
-
currentData?: import("
|
|
57
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
58
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
59
59
|
isUninitialized: false;
|
|
60
60
|
isLoading: false;
|
|
61
61
|
isFetching: false;
|
|
@@ -80,8 +80,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
80
80
|
source?: string;
|
|
81
81
|
username?: string;
|
|
82
82
|
verbose?: boolean;
|
|
83
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
84
|
-
currentData?: import("
|
|
83
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
84
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
85
85
|
isUninitialized: false;
|
|
86
86
|
isLoading: false;
|
|
87
87
|
isFetching: false;
|
|
@@ -102,8 +102,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
102
102
|
source?: string;
|
|
103
103
|
username?: string;
|
|
104
104
|
verbose?: boolean;
|
|
105
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
106
|
-
currentData?: import("
|
|
105
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
106
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
107
107
|
isUninitialized: false;
|
|
108
108
|
isLoading: false;
|
|
109
109
|
isFetching: false;
|
|
@@ -122,8 +122,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
122
122
|
source?: string;
|
|
123
123
|
username?: string;
|
|
124
124
|
verbose?: boolean;
|
|
125
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
126
|
-
currentData?: import("
|
|
125
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
126
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
127
127
|
isUninitialized: false;
|
|
128
128
|
isLoading: false;
|
|
129
129
|
isFetching: false;
|
|
@@ -157,7 +157,7 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
157
157
|
startedTimeStamp?: undefined | undefined;
|
|
158
158
|
fulfilledTimeStamp?: undefined | undefined;
|
|
159
159
|
} & {
|
|
160
|
-
currentData?: import("
|
|
160
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
161
161
|
isUninitialized: false;
|
|
162
162
|
isLoading: false;
|
|
163
163
|
isFetching: false;
|
|
@@ -176,8 +176,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
176
176
|
source?: string;
|
|
177
177
|
username?: string;
|
|
178
178
|
verbose?: boolean;
|
|
179
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
180
|
-
currentData?: import("
|
|
179
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
180
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
181
181
|
isUninitialized: false;
|
|
182
182
|
isLoading: false;
|
|
183
183
|
isFetching: false;
|
|
@@ -202,8 +202,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
202
202
|
source?: string;
|
|
203
203
|
username?: string;
|
|
204
204
|
verbose?: boolean;
|
|
205
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
206
|
-
currentData?: import("
|
|
205
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
206
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
207
207
|
isUninitialized: false;
|
|
208
208
|
isLoading: false;
|
|
209
209
|
isFetching: false;
|
|
@@ -224,8 +224,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
224
224
|
source?: string;
|
|
225
225
|
username?: string;
|
|
226
226
|
verbose?: boolean;
|
|
227
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
228
|
-
currentData?: import("
|
|
227
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
228
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
229
229
|
isUninitialized: false;
|
|
230
230
|
isLoading: false;
|
|
231
231
|
isFetching: false;
|
|
@@ -244,8 +244,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
244
244
|
source?: string;
|
|
245
245
|
username?: string;
|
|
246
246
|
verbose?: boolean;
|
|
247
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
248
|
-
currentData?: import("
|
|
247
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
248
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
249
249
|
isUninitialized: false;
|
|
250
250
|
isLoading: false;
|
|
251
251
|
isFetching: false;
|
|
@@ -266,7 +266,7 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
266
266
|
source?: string;
|
|
267
267
|
username?: string;
|
|
268
268
|
verbose?: boolean;
|
|
269
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
269
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>>;
|
|
270
270
|
}, useLazyGetUserInvitationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
271
271
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
272
272
|
originalArgs?: undefined | undefined;
|
|
@@ -277,7 +277,7 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
277
277
|
startedTimeStamp?: undefined | undefined;
|
|
278
278
|
fulfilledTimeStamp?: undefined | undefined;
|
|
279
279
|
} & {
|
|
280
|
-
currentData?: import("
|
|
280
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
281
281
|
isUninitialized: false;
|
|
282
282
|
isLoading: false;
|
|
283
283
|
isFetching: false;
|
|
@@ -296,8 +296,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
296
296
|
source?: string;
|
|
297
297
|
username?: string;
|
|
298
298
|
verbose?: boolean;
|
|
299
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
300
|
-
currentData?: import("
|
|
299
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
300
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
301
301
|
isUninitialized: false;
|
|
302
302
|
isLoading: false;
|
|
303
303
|
isFetching: false;
|
|
@@ -322,8 +322,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
322
322
|
source?: string;
|
|
323
323
|
username?: string;
|
|
324
324
|
verbose?: boolean;
|
|
325
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
326
|
-
currentData?: import("
|
|
325
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
326
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
327
327
|
isUninitialized: false;
|
|
328
328
|
isLoading: false;
|
|
329
329
|
isFetching: false;
|
|
@@ -344,8 +344,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
344
344
|
source?: string;
|
|
345
345
|
username?: string;
|
|
346
346
|
verbose?: boolean;
|
|
347
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
348
|
-
currentData?: import("
|
|
347
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
348
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
349
349
|
isUninitialized: false;
|
|
350
350
|
isLoading: false;
|
|
351
351
|
isFetching: false;
|
|
@@ -364,8 +364,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
364
364
|
source?: string;
|
|
365
365
|
username?: string;
|
|
366
366
|
verbose?: boolean;
|
|
367
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
368
|
-
currentData?: import("
|
|
367
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
368
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
369
369
|
isUninitialized: false;
|
|
370
370
|
isLoading: false;
|
|
371
371
|
isFetching: false;
|
|
@@ -385,7 +385,7 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
385
385
|
startedTimeStamp?: undefined | undefined;
|
|
386
386
|
fulfilledTimeStamp?: undefined | undefined;
|
|
387
387
|
} & {
|
|
388
|
-
currentData?: import("
|
|
388
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
389
389
|
isUninitialized: false;
|
|
390
390
|
isLoading: false;
|
|
391
391
|
isFetching: false;
|
|
@@ -404,8 +404,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
404
404
|
source?: string;
|
|
405
405
|
username?: string;
|
|
406
406
|
verbose?: boolean;
|
|
407
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
408
|
-
currentData?: import("
|
|
407
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
408
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
409
409
|
isUninitialized: false;
|
|
410
410
|
isLoading: false;
|
|
411
411
|
isFetching: false;
|
|
@@ -430,8 +430,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
430
430
|
source?: string;
|
|
431
431
|
username?: string;
|
|
432
432
|
verbose?: boolean;
|
|
433
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
434
|
-
currentData?: import("
|
|
433
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
434
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
435
435
|
isUninitialized: false;
|
|
436
436
|
isLoading: false;
|
|
437
437
|
isFetching: false;
|
|
@@ -452,8 +452,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
452
452
|
source?: string;
|
|
453
453
|
username?: string;
|
|
454
454
|
verbose?: boolean;
|
|
455
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
456
|
-
currentData?: import("
|
|
455
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
456
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
457
457
|
isUninitialized: false;
|
|
458
458
|
isLoading: false;
|
|
459
459
|
isFetching: false;
|
|
@@ -472,8 +472,8 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
472
472
|
source?: string;
|
|
473
473
|
username?: string;
|
|
474
474
|
verbose?: boolean;
|
|
475
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
476
|
-
currentData?: import("
|
|
475
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>> & {
|
|
476
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation | undefined;
|
|
477
477
|
isUninitialized: false;
|
|
478
478
|
isLoading: false;
|
|
479
479
|
isFetching: false;
|
|
@@ -504,7 +504,7 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
504
504
|
source?: string;
|
|
505
505
|
username?: string;
|
|
506
506
|
verbose?: boolean;
|
|
507
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
507
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PaginatedPlatformInvitation, "userInvitationsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
508
508
|
reset: () => void;
|
|
509
509
|
}, {
|
|
510
510
|
lastArg: {
|
|
@@ -537,14 +537,14 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
537
537
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
538
538
|
} & Omit<{
|
|
539
539
|
requestId: string;
|
|
540
|
-
data?: import("
|
|
540
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
541
541
|
error?: unknown;
|
|
542
542
|
endpointName: string;
|
|
543
543
|
startedTimeStamp: number;
|
|
544
544
|
fulfilledTimeStamp?: number;
|
|
545
545
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
546
546
|
requestId: string;
|
|
547
|
-
data?: import("
|
|
547
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
548
548
|
error?: unknown;
|
|
549
549
|
endpointName: string;
|
|
550
550
|
startedTimeStamp: number;
|
|
@@ -561,7 +561,7 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
561
561
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
562
562
|
} & {
|
|
563
563
|
requestId: string;
|
|
564
|
-
data?: import("
|
|
564
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
565
565
|
error?: unknown;
|
|
566
566
|
endpointName: string;
|
|
567
567
|
startedTimeStamp: number;
|
|
@@ -578,14 +578,14 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
578
578
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
579
579
|
} & Omit<{
|
|
580
580
|
requestId: string;
|
|
581
|
-
data?: import("
|
|
581
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
582
582
|
error?: unknown;
|
|
583
583
|
endpointName: string;
|
|
584
584
|
startedTimeStamp: number;
|
|
585
585
|
fulfilledTimeStamp?: number;
|
|
586
586
|
}, "error"> & Required<Pick<{
|
|
587
587
|
requestId: string;
|
|
588
|
-
data?: import("
|
|
588
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
589
589
|
error?: unknown;
|
|
590
590
|
endpointName: string;
|
|
591
591
|
startedTimeStamp: number;
|
|
@@ -615,14 +615,14 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
615
615
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
616
616
|
} & Omit<{
|
|
617
617
|
requestId: string;
|
|
618
|
-
data?: import("
|
|
618
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
619
619
|
error?: unknown;
|
|
620
620
|
endpointName: string;
|
|
621
621
|
startedTimeStamp: number;
|
|
622
622
|
fulfilledTimeStamp?: number;
|
|
623
623
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
624
624
|
requestId: string;
|
|
625
|
-
data?: import("
|
|
625
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
626
626
|
error?: unknown;
|
|
627
627
|
endpointName: string;
|
|
628
628
|
startedTimeStamp: number;
|
|
@@ -639,7 +639,7 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
639
639
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
640
640
|
} & {
|
|
641
641
|
requestId: string;
|
|
642
|
-
data?: import("
|
|
642
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
643
643
|
error?: unknown;
|
|
644
644
|
endpointName: string;
|
|
645
645
|
startedTimeStamp: number;
|
|
@@ -656,14 +656,14 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
656
656
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
657
657
|
} & Omit<{
|
|
658
658
|
requestId: string;
|
|
659
|
-
data?: import("
|
|
659
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
660
660
|
error?: unknown;
|
|
661
661
|
endpointName: string;
|
|
662
662
|
startedTimeStamp: number;
|
|
663
663
|
fulfilledTimeStamp?: number;
|
|
664
664
|
}, "error"> & Required<Pick<{
|
|
665
665
|
requestId: string;
|
|
666
|
-
data?: import("
|
|
666
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail | undefined;
|
|
667
667
|
error?: unknown;
|
|
668
668
|
endpointName: string;
|
|
669
669
|
startedTimeStamp: number;
|
|
@@ -677,7 +677,7 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
677
677
|
})) => R) | undefined;
|
|
678
678
|
fixedCacheKey?: string;
|
|
679
679
|
} | undefined) => readonly [(arg: {
|
|
680
|
-
requestBody: import("
|
|
680
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationCreate;
|
|
681
681
|
active?: boolean;
|
|
682
682
|
email?: string;
|
|
683
683
|
org?: string;
|
|
@@ -689,7 +689,7 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
689
689
|
username?: string;
|
|
690
690
|
verbose?: boolean;
|
|
691
691
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
692
|
-
requestBody: import("
|
|
692
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationCreate;
|
|
693
693
|
active?: boolean;
|
|
694
694
|
email?: string;
|
|
695
695
|
org?: string;
|
|
@@ -700,9 +700,9 @@ export declare const useGetUserInvitationsQuery: <R extends Record<string, any>
|
|
|
700
700
|
source?: string;
|
|
701
701
|
username?: string;
|
|
702
702
|
verbose?: boolean;
|
|
703
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
703
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationDetail, "userInvitationsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
704
704
|
originalArgs?: {
|
|
705
|
-
requestBody: import("
|
|
705
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").PlatformInvitationCreate;
|
|
706
706
|
active?: boolean;
|
|
707
707
|
email?: string;
|
|
708
708
|
org?: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { SERVICES } from
|
|
2
|
-
|
|
1
|
+
import { SERVICES } from '../constants';
|
|
2
|
+
export { SERVICES };
|
|
3
|
+
import { type BaseQueryFn, type FetchArgs, type FetchBaseQueryError, type FetchBaseQueryMeta } from '@reduxjs/toolkit/query';
|
|
3
4
|
type CustomError = {
|
|
4
5
|
status: number;
|
|
5
6
|
error: string | object;
|
|
@@ -13,7 +14,7 @@ export declare const getServiceUrl: (service: SERVICES) => string;
|
|
|
13
14
|
*/
|
|
14
15
|
export declare const getHeaders: (service: SERVICES) => Promise<{
|
|
15
16
|
Authorization: string;
|
|
16
|
-
} |
|
|
17
|
+
} | undefined>;
|
|
17
18
|
/**
|
|
18
19
|
* Build a generic RTK Query endpoint from a service function.
|
|
19
20
|
*/
|
|
@@ -32,16 +33,19 @@ export declare const buildEndpointFromDmService: <Args extends Record<string, un
|
|
|
32
33
|
export declare const buildEndpointFromAxdService: <Args extends Record<string, unknown>, Result>(serviceFn: (args: Args) => Promise<Result>) => {
|
|
33
34
|
queryFn: BaseQueryFn<Args, Result, FetchBaseQueryError | CustomError>;
|
|
34
35
|
};
|
|
35
|
-
export interface CustomQueryArgs extends Omit<FetchArgs,
|
|
36
|
+
export interface CustomQueryArgs extends Omit<FetchArgs, 'url'> {
|
|
36
37
|
url: string;
|
|
37
38
|
service: SERVICES;
|
|
38
39
|
isJson?: boolean;
|
|
39
40
|
contentType?: string;
|
|
41
|
+
skipAuth?: boolean;
|
|
40
42
|
}
|
|
41
43
|
export type ExtendedFetchBaseQueryError = FetchBaseQueryError & {
|
|
42
44
|
data?: {
|
|
43
45
|
detail?: string;
|
|
44
46
|
message?: string;
|
|
47
|
+
error?: string;
|
|
48
|
+
error_description?: string;
|
|
45
49
|
} | string;
|
|
46
50
|
};
|
|
47
51
|
export declare const iblFetchBaseQuery: BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, FetchBaseQueryMeta>;
|
|
@@ -63,4 +67,3 @@ export declare const buildEndpointFromDmServiceLegacy: <Args extends any[], Resu
|
|
|
63
67
|
export declare const buildEndpointFromAxdServiceLegacy: <Args extends any[], Result>(serviceFn: (...args: Args) => Promise<Result>) => {
|
|
64
68
|
queryFn: BaseQueryFn<Args, Result, FetchBaseQueryError | CustomError>;
|
|
65
69
|
};
|
|
66
|
-
export {};
|
|
@@ -1,47 +1,75 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
16
|
-
export * from
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
21
|
-
export * from
|
|
22
|
-
export * from
|
|
23
|
-
export * from
|
|
24
|
-
export * from
|
|
25
|
-
export * from
|
|
26
|
-
export * from
|
|
27
|
-
export * from
|
|
28
|
-
export * from
|
|
29
|
-
export * from
|
|
30
|
-
export * from
|
|
31
|
-
export * from
|
|
32
|
-
export * from
|
|
33
|
-
export * from
|
|
34
|
-
export * from
|
|
35
|
-
export * from
|
|
36
|
-
export * from
|
|
37
|
-
export * from
|
|
38
|
-
export * from
|
|
39
|
-
export * from
|
|
40
|
-
export * from
|
|
41
|
-
export * from
|
|
42
|
-
export * from
|
|
43
|
-
export * from
|
|
44
|
-
export * from
|
|
45
|
-
export * from
|
|
46
|
-
export * from
|
|
47
|
-
export * from
|
|
1
|
+
export * from './features/api-keys/api-slice';
|
|
2
|
+
export * from './features/chat-history/api-slice';
|
|
3
|
+
export * from './features/chat/api-slice';
|
|
4
|
+
export * from './features/llms/api-slice';
|
|
5
|
+
export * from './features/mentor/api-slice';
|
|
6
|
+
export * from './features/mentor-categories/api-slice';
|
|
7
|
+
export * from './features/prompts/api-slice';
|
|
8
|
+
export * from './features/auth/api-slice';
|
|
9
|
+
export * from './features/auth/types';
|
|
10
|
+
export * from './features/tenant/api-slice';
|
|
11
|
+
export * from './features/training-documents/api-slice';
|
|
12
|
+
export * from './features/platform/api-slice';
|
|
13
|
+
export * from './features/user/api-slice';
|
|
14
|
+
export * from './features/user/types';
|
|
15
|
+
export * from './features/user/api-slice';
|
|
16
|
+
export * from './features/core/api-slice';
|
|
17
|
+
export * from './features/core/constants';
|
|
18
|
+
export * from './features/skills/api-slice';
|
|
19
|
+
export * from './features/credentials/api-slice';
|
|
20
|
+
export * from './features/credentials/types';
|
|
21
|
+
export * from './features/user-invitations/api-slice';
|
|
22
|
+
export * from './features/apps/api-slice';
|
|
23
|
+
export * from './features/billing/api-slice';
|
|
24
|
+
export * from './features/stripe/types';
|
|
25
|
+
export * from './features/stripe/api-slice';
|
|
26
|
+
export * from './features/sessions/api-slice';
|
|
27
|
+
export * from './features/datasets/api-slice';
|
|
28
|
+
export * from './features/tools/api-slice';
|
|
29
|
+
export * from './features/analytics/api-slice';
|
|
30
|
+
export * from './features/analytics/types';
|
|
31
|
+
export * from './features/reports/api-slice';
|
|
32
|
+
export * from './features/catalog/api-slice';
|
|
33
|
+
export * from './features/per-learner/api-slice';
|
|
34
|
+
export * from './features/search/api-slice';
|
|
35
|
+
export * from './features/career/api-slice';
|
|
36
|
+
export * from './constants';
|
|
37
|
+
export * from './config';
|
|
38
|
+
export * from './services/StorageService';
|
|
39
|
+
export * from './core';
|
|
40
|
+
export * from './features/tenant-logo/api-slice';
|
|
41
|
+
export * from './features/tenant-logo/constants';
|
|
42
|
+
export * from './features/credentials/custom-api-slice';
|
|
43
|
+
export * from './features/credentials/constants';
|
|
44
|
+
export * from './features/notifications/api-slice';
|
|
45
|
+
export * from './features/notifications/custom-api-slice';
|
|
46
|
+
export * from './features/notifications/types';
|
|
47
|
+
export * from './features/notifications/constants';
|
|
48
|
+
export * from './features/mentor/custom-api-slice';
|
|
49
|
+
export * from './features/mentor/constants';
|
|
50
|
+
export * from './features/mentor/types';
|
|
51
|
+
export * from './features/memory/api-slice';
|
|
52
|
+
export * from './features/memory/constants';
|
|
53
|
+
export * from './features/memory/types';
|
|
54
|
+
export * from './features/constants';
|
|
55
|
+
export * from './features/custom-domain/api-slice';
|
|
56
|
+
export * from './features/custom-domain/types';
|
|
57
|
+
export * from './features/custom-domain/constants';
|
|
58
|
+
export * from './features/platform/custom-api-slice';
|
|
59
|
+
export * from './features/platform/constants';
|
|
60
|
+
export * from './features/platform/types';
|
|
61
|
+
export * from './features/core/custom-api-slice';
|
|
62
|
+
export * from './features/core/constants';
|
|
63
|
+
export * from './features/core/types';
|
|
64
|
+
export * from './features/edx-proctoring/api-slice';
|
|
65
|
+
export * from './features/edx-proctoring/constants';
|
|
66
|
+
export * from './features/edx-proctoring/types';
|
|
67
|
+
export * from './features/disclaimers/api-slice';
|
|
68
|
+
export * from './features/disclaimers/constants';
|
|
69
|
+
export * from './features/disclaimers/types';
|
|
70
|
+
export * from './features/search/ai-search-api-slice';
|
|
71
|
+
export * from './features/search/types';
|
|
72
|
+
export * from './features/search/constants';
|
|
73
|
+
export * from './reducers';
|
|
74
|
+
export * from './utils';
|
|
75
|
+
export type { LLMResponse, MentorSettings } from '@iblai/iblai-api';
|