@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.
- 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 +26 -21
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
export declare const toolsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const toolsApiSlice: 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
|
getTools: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
3
|
mentor: string;
|
|
4
4
|
org: string;
|
|
5
|
-
|
|
5
|
+
ordering?: string;
|
|
6
|
+
search?: string;
|
|
7
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>;
|
|
6
8
|
}, "toolsApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
7
9
|
export declare const useGetToolsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
8
10
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -25,7 +27,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
25
27
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
26
28
|
mentor: string;
|
|
27
29
|
org: string;
|
|
28
|
-
|
|
30
|
+
ordering?: string;
|
|
31
|
+
search?: string;
|
|
32
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
29
33
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
30
34
|
isUninitialized: false;
|
|
31
35
|
isLoading: false;
|
|
@@ -43,7 +47,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
43
47
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
44
48
|
mentor: string;
|
|
45
49
|
org: string;
|
|
46
|
-
|
|
50
|
+
ordering?: string;
|
|
51
|
+
search?: string;
|
|
52
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
47
53
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
48
54
|
isUninitialized: false;
|
|
49
55
|
isLoading: false;
|
|
@@ -57,7 +63,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
57
63
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
58
64
|
mentor: string;
|
|
59
65
|
org: string;
|
|
60
|
-
|
|
66
|
+
ordering?: string;
|
|
67
|
+
search?: string;
|
|
68
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
61
69
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
62
70
|
isUninitialized: false;
|
|
63
71
|
isLoading: false;
|
|
@@ -69,7 +77,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
69
77
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
70
78
|
mentor: string;
|
|
71
79
|
org: string;
|
|
72
|
-
|
|
80
|
+
ordering?: string;
|
|
81
|
+
search?: string;
|
|
82
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
73
83
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
74
84
|
isUninitialized: false;
|
|
75
85
|
isLoading: false;
|
|
@@ -81,6 +91,8 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
81
91
|
}>(arg: {
|
|
82
92
|
mentor: string;
|
|
83
93
|
org: string;
|
|
94
|
+
ordering?: string;
|
|
95
|
+
search?: string;
|
|
84
96
|
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
85
97
|
skip?: boolean;
|
|
86
98
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -107,7 +119,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
107
119
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
108
120
|
mentor: string;
|
|
109
121
|
org: string;
|
|
110
|
-
|
|
122
|
+
ordering?: string;
|
|
123
|
+
search?: string;
|
|
124
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
111
125
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
112
126
|
isUninitialized: false;
|
|
113
127
|
isLoading: false;
|
|
@@ -125,7 +139,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
125
139
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
126
140
|
mentor: string;
|
|
127
141
|
org: string;
|
|
128
|
-
|
|
142
|
+
ordering?: string;
|
|
143
|
+
search?: string;
|
|
144
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
129
145
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
130
146
|
isUninitialized: false;
|
|
131
147
|
isLoading: false;
|
|
@@ -139,7 +155,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
139
155
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
140
156
|
mentor: string;
|
|
141
157
|
org: string;
|
|
142
|
-
|
|
158
|
+
ordering?: string;
|
|
159
|
+
search?: string;
|
|
160
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
143
161
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
144
162
|
isUninitialized: false;
|
|
145
163
|
isLoading: false;
|
|
@@ -151,7 +169,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
151
169
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
152
170
|
mentor: string;
|
|
153
171
|
org: string;
|
|
154
|
-
|
|
172
|
+
ordering?: string;
|
|
173
|
+
search?: string;
|
|
174
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
155
175
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
156
176
|
isUninitialized: false;
|
|
157
177
|
isLoading: false;
|
|
@@ -165,7 +185,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
165
185
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
166
186
|
mentor: string;
|
|
167
187
|
org: string;
|
|
168
|
-
|
|
188
|
+
ordering?: string;
|
|
189
|
+
search?: string;
|
|
190
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>>;
|
|
169
191
|
}, useLazyGetToolsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
170
192
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
171
193
|
originalArgs?: undefined | undefined;
|
|
@@ -187,7 +209,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
187
209
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
188
210
|
mentor: string;
|
|
189
211
|
org: string;
|
|
190
|
-
|
|
212
|
+
ordering?: string;
|
|
213
|
+
search?: string;
|
|
214
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
191
215
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
192
216
|
isUninitialized: false;
|
|
193
217
|
isLoading: false;
|
|
@@ -205,7 +229,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
205
229
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
206
230
|
mentor: string;
|
|
207
231
|
org: string;
|
|
208
|
-
|
|
232
|
+
ordering?: string;
|
|
233
|
+
search?: string;
|
|
234
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
209
235
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
210
236
|
isUninitialized: false;
|
|
211
237
|
isLoading: false;
|
|
@@ -219,7 +245,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
219
245
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
220
246
|
mentor: string;
|
|
221
247
|
org: string;
|
|
222
|
-
|
|
248
|
+
ordering?: string;
|
|
249
|
+
search?: string;
|
|
250
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
223
251
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
224
252
|
isUninitialized: false;
|
|
225
253
|
isLoading: false;
|
|
@@ -231,7 +259,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
231
259
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
232
260
|
mentor: string;
|
|
233
261
|
org: string;
|
|
234
|
-
|
|
262
|
+
ordering?: string;
|
|
263
|
+
search?: string;
|
|
264
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
235
265
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
236
266
|
isUninitialized: false;
|
|
237
267
|
isLoading: false;
|
|
@@ -263,7 +293,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
263
293
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
264
294
|
mentor: string;
|
|
265
295
|
org: string;
|
|
266
|
-
|
|
296
|
+
ordering?: string;
|
|
297
|
+
search?: string;
|
|
298
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
267
299
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
268
300
|
isUninitialized: false;
|
|
269
301
|
isLoading: false;
|
|
@@ -281,7 +313,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
281
313
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
282
314
|
mentor: string;
|
|
283
315
|
org: string;
|
|
284
|
-
|
|
316
|
+
ordering?: string;
|
|
317
|
+
search?: string;
|
|
318
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
285
319
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
286
320
|
isUninitialized: false;
|
|
287
321
|
isLoading: false;
|
|
@@ -295,7 +329,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
295
329
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
296
330
|
mentor: string;
|
|
297
331
|
org: string;
|
|
298
|
-
|
|
332
|
+
ordering?: string;
|
|
333
|
+
search?: string;
|
|
334
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
299
335
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
300
336
|
isUninitialized: false;
|
|
301
337
|
isLoading: false;
|
|
@@ -307,7 +343,9 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
307
343
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
308
344
|
mentor: string;
|
|
309
345
|
org: string;
|
|
310
|
-
|
|
346
|
+
ordering?: string;
|
|
347
|
+
search?: string;
|
|
348
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
311
349
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
312
350
|
isUninitialized: false;
|
|
313
351
|
isLoading: false;
|
|
@@ -320,14 +358,20 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
320
358
|
}, "skip">) | undefined) => [(arg: {
|
|
321
359
|
mentor: string;
|
|
322
360
|
org: string;
|
|
361
|
+
ordering?: string;
|
|
362
|
+
search?: string;
|
|
323
363
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
324
364
|
mentor: string;
|
|
325
365
|
org: string;
|
|
326
|
-
|
|
366
|
+
ordering?: string;
|
|
367
|
+
search?: string;
|
|
368
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
327
369
|
reset: () => void;
|
|
328
370
|
}, {
|
|
329
371
|
lastArg: {
|
|
330
372
|
mentor: string;
|
|
331
373
|
org: string;
|
|
374
|
+
ordering?: string;
|
|
375
|
+
search?: string;
|
|
332
376
|
};
|
|
333
377
|
}];
|