@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,8 +1,8 @@
|
|
|
1
|
-
export declare const llmsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const llmsApiSlice: 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
|
getLlms: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
3
|
org: string;
|
|
4
4
|
mentorId?: string;
|
|
5
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
5
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>;
|
|
6
6
|
}, "llmsApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
7
7
|
export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
8
8
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -25,7 +25,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
25
25
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
26
26
|
org: string;
|
|
27
27
|
mentorId?: string;
|
|
28
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
28
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
29
29
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
30
30
|
isUninitialized: false;
|
|
31
31
|
isLoading: false;
|
|
@@ -43,7 +43,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
43
43
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
44
44
|
org: string;
|
|
45
45
|
mentorId?: string;
|
|
46
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
46
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
47
47
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
48
48
|
isUninitialized: false;
|
|
49
49
|
isLoading: false;
|
|
@@ -57,7 +57,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
57
57
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
58
58
|
org: string;
|
|
59
59
|
mentorId?: string;
|
|
60
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
60
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
61
61
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
62
62
|
isUninitialized: false;
|
|
63
63
|
isLoading: false;
|
|
@@ -69,7 +69,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
69
69
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
70
70
|
org: string;
|
|
71
71
|
mentorId?: string;
|
|
72
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
72
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
73
73
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
74
74
|
isUninitialized: false;
|
|
75
75
|
isLoading: false;
|
|
@@ -107,7 +107,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
107
107
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
108
108
|
org: string;
|
|
109
109
|
mentorId?: string;
|
|
110
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
110
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
111
111
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
112
112
|
isUninitialized: false;
|
|
113
113
|
isLoading: false;
|
|
@@ -125,7 +125,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
125
125
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
126
126
|
org: string;
|
|
127
127
|
mentorId?: string;
|
|
128
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
128
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
129
129
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
130
130
|
isUninitialized: false;
|
|
131
131
|
isLoading: false;
|
|
@@ -139,7 +139,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
139
139
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
140
140
|
org: string;
|
|
141
141
|
mentorId?: string;
|
|
142
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
142
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
143
143
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
144
144
|
isUninitialized: false;
|
|
145
145
|
isLoading: false;
|
|
@@ -151,7 +151,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
151
151
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
152
152
|
org: string;
|
|
153
153
|
mentorId?: string;
|
|
154
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
154
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
155
155
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
156
156
|
isUninitialized: false;
|
|
157
157
|
isLoading: false;
|
|
@@ -165,7 +165,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
165
165
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
166
166
|
org: string;
|
|
167
167
|
mentorId?: string;
|
|
168
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
168
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>>;
|
|
169
169
|
}, useLazyGetLlmsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
170
170
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
171
171
|
originalArgs?: undefined | undefined;
|
|
@@ -187,7 +187,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
187
187
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
188
188
|
org: string;
|
|
189
189
|
mentorId?: string;
|
|
190
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
190
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
191
191
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
192
192
|
isUninitialized: false;
|
|
193
193
|
isLoading: false;
|
|
@@ -205,7 +205,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
205
205
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
206
206
|
org: string;
|
|
207
207
|
mentorId?: string;
|
|
208
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
208
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
209
209
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
210
210
|
isUninitialized: false;
|
|
211
211
|
isLoading: false;
|
|
@@ -219,7 +219,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
219
219
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
220
220
|
org: string;
|
|
221
221
|
mentorId?: string;
|
|
222
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
222
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
223
223
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
224
224
|
isUninitialized: false;
|
|
225
225
|
isLoading: false;
|
|
@@ -231,7 +231,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
231
231
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
232
232
|
org: string;
|
|
233
233
|
mentorId?: string;
|
|
234
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
234
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
235
235
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
236
236
|
isUninitialized: false;
|
|
237
237
|
isLoading: false;
|
|
@@ -263,7 +263,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
263
263
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
264
264
|
org: string;
|
|
265
265
|
mentorId?: string;
|
|
266
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
266
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
267
267
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
268
268
|
isUninitialized: false;
|
|
269
269
|
isLoading: false;
|
|
@@ -281,7 +281,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
281
281
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
282
282
|
org: string;
|
|
283
283
|
mentorId?: string;
|
|
284
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
284
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
285
285
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
286
286
|
isUninitialized: false;
|
|
287
287
|
isLoading: false;
|
|
@@ -295,7 +295,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
295
295
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
296
296
|
org: string;
|
|
297
297
|
mentorId?: string;
|
|
298
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
298
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
299
299
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
300
300
|
isUninitialized: false;
|
|
301
301
|
isLoading: false;
|
|
@@ -307,7 +307,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
307
307
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
308
308
|
org: string;
|
|
309
309
|
mentorId?: string;
|
|
310
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
310
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>> & {
|
|
311
311
|
currentData?: import("@iblai/iblai-api").LLMResponse[] | undefined;
|
|
312
312
|
isUninitialized: false;
|
|
313
313
|
isLoading: false;
|
|
@@ -323,7 +323,7 @@ export declare const useGetLlmsQuery: <R extends Record<string, any> = import("@
|
|
|
323
323
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
324
324
|
org: string;
|
|
325
325
|
mentorId?: string;
|
|
326
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
326
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").LLMResponse[], "llmsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
327
327
|
reset: () => void;
|
|
328
328
|
}, {
|
|
329
329
|
lastArg: {
|