@iblai/data-layer 0.0.5 → 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 +65009 -23
- package/dist/index.esm.js +29131 -16819
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +29475 -16817
- package/dist/index.js.map +1 -1
- package/dist/package.json +84 -0
- package/dist/src/config.d.ts +2 -0
- package/dist/src/constants.d.ts +2 -3
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +3357 -0
- package/dist/src/features/analytics/constants.d.ts +121 -0
- package/dist/src/features/analytics/types.d.ts +426 -0
- package/dist/src/features/api-keys/api-slice.d.ts +94 -34
- package/dist/{features/api-keys → src/features/apps}/api-slice.d.ts +156 -78
- package/dist/src/features/auth/api-slice.d.ts +639 -0
- package/dist/src/features/auth/constants.d.ts +20 -0
- package/dist/src/features/auth/types.d.ts +33 -0
- package/dist/src/features/billing/api-slice.d.ts +349 -0
- package/dist/src/features/career/api-slice.d.ts +2852 -0
- package/dist/src/features/catalog/api-slice.d.ts +8618 -1
- package/dist/src/features/chat/api-slice.d.ts +1567 -32
- package/dist/src/features/chat/chat-slice.d.ts +4 -7
- package/dist/{features/core → src/features/chat-files}/api-slice.d.ts +47 -26
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +518 -244
- package/dist/src/features/core/api-slice.d.ts +4261 -5
- package/dist/src/features/core/constants.d.ts +47 -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 +2343 -84
- package/dist/src/features/credentials/constants.d.ts +28 -0
- package/dist/src/features/credentials/custom-api-slice.d.ts +1284 -0
- package/dist/src/features/credentials/types.d.ts +16 -0
- 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 +352 -43
- 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 +89 -23
- package/dist/src/features/memory/api-slice.d.ts +2129 -0
- 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 +4126 -146
- package/dist/src/features/mentor/constants.d.ts +39 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +796 -0
- package/dist/src/features/mentor/types.d.ts +77 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +463 -23
- package/dist/src/features/notifications/api-slice.d.ts +1600 -0
- 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 +1213 -0
- package/dist/src/features/platform/api-slice.d.ts +944 -70
- 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 +1357 -73
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/{features/prompts/api-slice.d.ts → src/features/search/ai-search-api-slice.d.ts} +161 -160
- package/dist/src/features/search/api-slice.d.ts +1939 -0
- 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 +705 -0
- package/dist/src/features/skills/api-slice.d.ts +505 -65
- package/dist/src/features/stripe/api-slice.d.ts +781 -0
- package/dist/src/features/stripe/constants.d.ts +19 -0
- package/dist/src/features/stripe/types.d.ts +19 -0
- package/dist/src/features/tenant/api-slice.d.ts +261 -47
- package/dist/src/features/tenant/constants.d.ts +1 -1
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tenant-logo/api-slice.d.ts +349 -0
- package/dist/src/features/tenant-logo/constants.d.ts +24 -0
- package/dist/src/features/tools/api-slice.d.ts +133 -23
- package/dist/src/features/training-documents/api-slice.d.ts +731 -52
- package/dist/src/features/user/api-slice.d.ts +1457 -22
- package/dist/src/features/user/constants.d.ts +32 -1
- package/dist/src/features/user/types.d.ts +65 -2
- package/dist/src/features/user-invitations/api-slice.d.ts +346 -56
- package/dist/src/features/utils.d.ts +31 -8
- package/dist/src/index.d.ts +78 -23
- package/dist/src/reducers/index.d.ts +1 -0
- package/dist/src/reducers/mentor.d.ts +2 -120
- package/dist/src/reducers/skills.d.ts +2 -0
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/src/utils/index.d.ts +2 -2
- package/dist/tests/features/analytics/api-slice.test.d.ts +1 -0
- package/dist/tests/features/analytics/constants.test.d.ts +1 -0
- package/dist/tests/features/user/api-slice.test.d.ts +1 -0
- package/dist/tests/features/user/constants.test.d.ts +1 -0
- package/dist/tests/setupTests.d.ts +1 -0
- package/package.json +26 -15
- package/dist/config.d.ts +0 -5
- package/dist/constants.d.ts +0 -31
- package/dist/core/index.d.ts +0 -4
- package/dist/features/chat/api-slice.d.ts +0 -1278
- package/dist/features/chat/chat-slice.d.ts +0 -15
- package/dist/features/chat-history/api-slice.d.ts +0 -956
- package/dist/features/chat-history/constants.d.ts +0 -3
- package/dist/features/credentials/api-slice.d.ts +0 -531
- package/dist/features/datasets/api-slice.d.ts +0 -267
- package/dist/features/index.d.ts +0 -1
- package/dist/features/llms/api-slice.d.ts +0 -267
- package/dist/features/mentor/api-slice.d.ts +0 -1816
- package/dist/features/mentor-categories/api-slice.d.ts +0 -267
- package/dist/features/platform/api-slice.d.ts +0 -735
- package/dist/features/skills/api-slice.d.ts +0 -795
- package/dist/features/tenant/api-slice.d.ts +0 -536
- package/dist/features/tenant/constants.d.ts +0 -11
- package/dist/features/tenant/types.d.ts +0 -18
- package/dist/features/tools/api-slice.d.ts +0 -267
- package/dist/features/training-documents/api-slice.d.ts +0 -750
- package/dist/features/user/api-slice.d.ts +0 -751
- package/dist/features/user/constants.d.ts +0 -19
- package/dist/features/user/types.d.ts +0 -64
- package/dist/features/user-invitations/api-slice.d.ts +0 -428
- package/dist/features/utils.d.ts +0 -46
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiError.d.ts +0 -10
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiRequestOptions.d.ts +0 -13
- package/dist/node_modules/@iblai/iblai-api/src/core/ApiResult.d.ts +0 -7
- package/dist/node_modules/@iblai/iblai-api/src/core/CancelablePromise.d.ts +0 -20
- package/dist/node_modules/@iblai/iblai-api/src/core/OpenAPI.d.ts +0 -16
- package/dist/node_modules/@iblai/iblai-api/src/core/request.d.ts +0 -30
- package/dist/reducers/index.d.ts +0 -1
- package/dist/reducers/mentor.d.ts +0 -135
- package/dist/services/StorageService.d.ts +0 -5
- package/dist/src/features/chat-history/constants.d.ts +0 -8
- package/dist/utils/index.d.ts +0 -2
- /package/dist/{features/catalog/api-slice.d.ts → src/__tests__/constants.test.d.ts} +0 -0
- /package/dist/{features → src/features}/constants.d.ts +0 -0
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
export declare const toolsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2
|
-
getTools: import("@reduxjs/toolkit/query").QueryDefinition<
|
|
3
|
-
|
|
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
|
+
getTools: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
|
+
mentor: string;
|
|
4
|
+
org: string;
|
|
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>;
|
|
8
|
+
}, "toolsApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
4
9
|
export declare const useGetToolsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5
10
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6
11
|
originalArgs?: undefined | undefined;
|
|
@@ -19,7 +24,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
19
24
|
isError: false;
|
|
20
25
|
}, "isUninitialized"> & {
|
|
21
26
|
isUninitialized: true;
|
|
22
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
27
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
28
|
+
mentor: string;
|
|
29
|
+
org: string;
|
|
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>> & {
|
|
23
33
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
24
34
|
isUninitialized: false;
|
|
25
35
|
isLoading: false;
|
|
@@ -34,7 +44,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
34
44
|
isSuccess: true;
|
|
35
45
|
isFetching: true;
|
|
36
46
|
error: undefined;
|
|
37
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
47
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
48
|
+
mentor: string;
|
|
49
|
+
org: string;
|
|
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>> & {
|
|
38
53
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
39
54
|
isUninitialized: false;
|
|
40
55
|
isLoading: false;
|
|
@@ -45,7 +60,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
45
60
|
isSuccess: true;
|
|
46
61
|
isFetching: false;
|
|
47
62
|
error: undefined;
|
|
48
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
63
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
64
|
+
mentor: string;
|
|
65
|
+
org: string;
|
|
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>> & {
|
|
49
69
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
50
70
|
isUninitialized: false;
|
|
51
71
|
isLoading: false;
|
|
@@ -54,7 +74,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
54
74
|
isError: false;
|
|
55
75
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
56
76
|
isError: true;
|
|
57
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
77
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
78
|
+
mentor: string;
|
|
79
|
+
org: string;
|
|
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>> & {
|
|
58
83
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
59
84
|
isUninitialized: false;
|
|
60
85
|
isLoading: false;
|
|
@@ -63,7 +88,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
63
88
|
isError: false;
|
|
64
89
|
}, "error">>)>> & {
|
|
65
90
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
66
|
-
}>(arg:
|
|
91
|
+
}>(arg: {
|
|
92
|
+
mentor: string;
|
|
93
|
+
org: string;
|
|
94
|
+
ordering?: string;
|
|
95
|
+
search?: string;
|
|
96
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
67
97
|
skip?: boolean;
|
|
68
98
|
refetchOnMountOrArgChange?: boolean | number;
|
|
69
99
|
} & {
|
|
@@ -86,7 +116,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
86
116
|
isError: false;
|
|
87
117
|
}, "isUninitialized"> & {
|
|
88
118
|
isUninitialized: true;
|
|
89
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
119
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
120
|
+
mentor: string;
|
|
121
|
+
org: string;
|
|
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>> & {
|
|
90
125
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
91
126
|
isUninitialized: false;
|
|
92
127
|
isLoading: false;
|
|
@@ -101,7 +136,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
101
136
|
isSuccess: true;
|
|
102
137
|
isFetching: true;
|
|
103
138
|
error: undefined;
|
|
104
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
139
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
140
|
+
mentor: string;
|
|
141
|
+
org: string;
|
|
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>> & {
|
|
105
145
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
106
146
|
isUninitialized: false;
|
|
107
147
|
isLoading: false;
|
|
@@ -112,7 +152,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
112
152
|
isSuccess: true;
|
|
113
153
|
isFetching: false;
|
|
114
154
|
error: undefined;
|
|
115
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
155
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
156
|
+
mentor: string;
|
|
157
|
+
org: string;
|
|
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>> & {
|
|
116
161
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
117
162
|
isUninitialized: false;
|
|
118
163
|
isLoading: false;
|
|
@@ -121,7 +166,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
121
166
|
isError: false;
|
|
122
167
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
123
168
|
isError: true;
|
|
124
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
169
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
170
|
+
mentor: string;
|
|
171
|
+
org: string;
|
|
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>> & {
|
|
125
175
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
126
176
|
isUninitialized: false;
|
|
127
177
|
isLoading: false;
|
|
@@ -132,7 +182,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
132
182
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
133
183
|
}) => R) | undefined;
|
|
134
184
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
135
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
185
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
186
|
+
mentor: string;
|
|
187
|
+
org: string;
|
|
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>>;
|
|
136
191
|
}, useLazyGetToolsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
137
192
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
138
193
|
originalArgs?: undefined | undefined;
|
|
@@ -151,7 +206,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
151
206
|
isError: false;
|
|
152
207
|
}, "isUninitialized"> & {
|
|
153
208
|
isUninitialized: true;
|
|
154
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
209
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
210
|
+
mentor: string;
|
|
211
|
+
org: string;
|
|
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>> & {
|
|
155
215
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
156
216
|
isUninitialized: false;
|
|
157
217
|
isLoading: false;
|
|
@@ -166,7 +226,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
166
226
|
isSuccess: true;
|
|
167
227
|
isFetching: true;
|
|
168
228
|
error: undefined;
|
|
169
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
229
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
230
|
+
mentor: string;
|
|
231
|
+
org: string;
|
|
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>> & {
|
|
170
235
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
171
236
|
isUninitialized: false;
|
|
172
237
|
isLoading: false;
|
|
@@ -177,7 +242,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
177
242
|
isSuccess: true;
|
|
178
243
|
isFetching: false;
|
|
179
244
|
error: undefined;
|
|
180
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
245
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
246
|
+
mentor: string;
|
|
247
|
+
org: string;
|
|
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>> & {
|
|
181
251
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
182
252
|
isUninitialized: false;
|
|
183
253
|
isLoading: false;
|
|
@@ -186,7 +256,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
186
256
|
isError: false;
|
|
187
257
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
188
258
|
isError: true;
|
|
189
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
259
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
260
|
+
mentor: string;
|
|
261
|
+
org: string;
|
|
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>> & {
|
|
190
265
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
191
266
|
isUninitialized: false;
|
|
192
267
|
isLoading: false;
|
|
@@ -215,7 +290,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
215
290
|
isError: false;
|
|
216
291
|
}, "isUninitialized"> & {
|
|
217
292
|
isUninitialized: true;
|
|
218
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
293
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
294
|
+
mentor: string;
|
|
295
|
+
org: string;
|
|
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>> & {
|
|
219
299
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
220
300
|
isUninitialized: false;
|
|
221
301
|
isLoading: false;
|
|
@@ -230,7 +310,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
230
310
|
isSuccess: true;
|
|
231
311
|
isFetching: true;
|
|
232
312
|
error: undefined;
|
|
233
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
313
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
314
|
+
mentor: string;
|
|
315
|
+
org: string;
|
|
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>> & {
|
|
234
319
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
235
320
|
isUninitialized: false;
|
|
236
321
|
isLoading: false;
|
|
@@ -241,7 +326,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
241
326
|
isSuccess: true;
|
|
242
327
|
isFetching: false;
|
|
243
328
|
error: undefined;
|
|
244
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
329
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
330
|
+
mentor: string;
|
|
331
|
+
org: string;
|
|
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>> & {
|
|
245
335
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
246
336
|
isUninitialized: false;
|
|
247
337
|
isLoading: false;
|
|
@@ -250,7 +340,12 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
250
340
|
isError: false;
|
|
251
341
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
252
342
|
isError: true;
|
|
253
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<
|
|
343
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
344
|
+
mentor: string;
|
|
345
|
+
org: string;
|
|
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>> & {
|
|
254
349
|
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
255
350
|
isUninitialized: false;
|
|
256
351
|
isLoading: false;
|
|
@@ -260,8 +355,23 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
260
355
|
}, "error">>)>> & {
|
|
261
356
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
262
357
|
}) => R) | undefined;
|
|
263
|
-
}, "skip">) | undefined) => [(arg:
|
|
358
|
+
}, "skip">) | undefined) => [(arg: {
|
|
359
|
+
mentor: string;
|
|
360
|
+
org: string;
|
|
361
|
+
ordering?: string;
|
|
362
|
+
search?: string;
|
|
363
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
364
|
+
mentor: string;
|
|
365
|
+
org: string;
|
|
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] & {
|
|
264
369
|
reset: () => void;
|
|
265
370
|
}, {
|
|
266
|
-
lastArg:
|
|
371
|
+
lastArg: {
|
|
372
|
+
mentor: string;
|
|
373
|
+
org: string;
|
|
374
|
+
ordering?: string;
|
|
375
|
+
search?: string;
|
|
376
|
+
};
|
|
267
377
|
}];
|