@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,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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -14,7 +16,7 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
14
16
|
startedTimeStamp?: undefined | undefined;
|
|
15
17
|
fulfilledTimeStamp?: undefined | undefined;
|
|
16
18
|
} & {
|
|
17
|
-
currentData?: import("
|
|
19
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
18
20
|
isUninitialized: false;
|
|
19
21
|
isLoading: false;
|
|
20
22
|
isFetching: false;
|
|
@@ -25,8 +27,10 @@ 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
|
-
|
|
29
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
33
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
30
34
|
isUninitialized: false;
|
|
31
35
|
isLoading: false;
|
|
32
36
|
isFetching: false;
|
|
@@ -43,8 +47,10 @@ 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
|
-
|
|
47
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
53
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
48
54
|
isUninitialized: false;
|
|
49
55
|
isLoading: false;
|
|
50
56
|
isFetching: false;
|
|
@@ -57,8 +63,10 @@ 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
|
-
|
|
61
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
69
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
62
70
|
isUninitialized: false;
|
|
63
71
|
isLoading: false;
|
|
64
72
|
isFetching: false;
|
|
@@ -69,8 +77,10 @@ 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
|
-
|
|
73
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
83
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
74
84
|
isUninitialized: false;
|
|
75
85
|
isLoading: false;
|
|
76
86
|
isFetching: 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;
|
|
@@ -96,7 +108,7 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
96
108
|
startedTimeStamp?: undefined | undefined;
|
|
97
109
|
fulfilledTimeStamp?: undefined | undefined;
|
|
98
110
|
} & {
|
|
99
|
-
currentData?: import("
|
|
111
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
100
112
|
isUninitialized: false;
|
|
101
113
|
isLoading: false;
|
|
102
114
|
isFetching: false;
|
|
@@ -107,8 +119,10 @@ 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
|
-
|
|
111
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
125
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
112
126
|
isUninitialized: false;
|
|
113
127
|
isLoading: false;
|
|
114
128
|
isFetching: false;
|
|
@@ -125,8 +139,10 @@ 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
|
-
|
|
129
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
145
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
130
146
|
isUninitialized: false;
|
|
131
147
|
isLoading: false;
|
|
132
148
|
isFetching: false;
|
|
@@ -139,8 +155,10 @@ 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
|
-
|
|
143
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
161
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
144
162
|
isUninitialized: false;
|
|
145
163
|
isLoading: false;
|
|
146
164
|
isFetching: false;
|
|
@@ -151,8 +169,10 @@ 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
|
-
|
|
155
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
175
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
156
176
|
isUninitialized: false;
|
|
157
177
|
isLoading: false;
|
|
158
178
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -176,7 +198,7 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
176
198
|
startedTimeStamp?: undefined | undefined;
|
|
177
199
|
fulfilledTimeStamp?: undefined | undefined;
|
|
178
200
|
} & {
|
|
179
|
-
currentData?: import("
|
|
201
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
180
202
|
isUninitialized: false;
|
|
181
203
|
isLoading: false;
|
|
182
204
|
isFetching: false;
|
|
@@ -187,8 +209,10 @@ 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
|
-
|
|
191
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
215
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
192
216
|
isUninitialized: false;
|
|
193
217
|
isLoading: false;
|
|
194
218
|
isFetching: false;
|
|
@@ -205,8 +229,10 @@ 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
|
-
|
|
209
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
235
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
210
236
|
isUninitialized: false;
|
|
211
237
|
isLoading: false;
|
|
212
238
|
isFetching: false;
|
|
@@ -219,8 +245,10 @@ 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
|
-
|
|
223
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
251
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
224
252
|
isUninitialized: false;
|
|
225
253
|
isLoading: false;
|
|
226
254
|
isFetching: false;
|
|
@@ -231,8 +259,10 @@ 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
|
-
|
|
235
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
265
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
236
266
|
isUninitialized: false;
|
|
237
267
|
isLoading: false;
|
|
238
268
|
isFetching: false;
|
|
@@ -252,7 +282,7 @@ export declare const useGetToolsQuery: <R extends Record<string, any> = import("
|
|
|
252
282
|
startedTimeStamp?: undefined | undefined;
|
|
253
283
|
fulfilledTimeStamp?: undefined | undefined;
|
|
254
284
|
} & {
|
|
255
|
-
currentData?: import("
|
|
285
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
256
286
|
isUninitialized: false;
|
|
257
287
|
isLoading: false;
|
|
258
288
|
isFetching: false;
|
|
@@ -263,8 +293,10 @@ 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
|
-
|
|
267
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
299
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
268
300
|
isUninitialized: false;
|
|
269
301
|
isLoading: false;
|
|
270
302
|
isFetching: false;
|
|
@@ -281,8 +313,10 @@ 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
|
-
|
|
285
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
319
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
286
320
|
isUninitialized: false;
|
|
287
321
|
isLoading: false;
|
|
288
322
|
isFetching: false;
|
|
@@ -295,8 +329,10 @@ 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
|
-
|
|
299
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
335
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
300
336
|
isUninitialized: false;
|
|
301
337
|
isLoading: false;
|
|
302
338
|
isFetching: false;
|
|
@@ -307,8 +343,10 @@ 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
|
-
|
|
311
|
-
|
|
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("node_modules/@iblai/iblai-api/dist/types").ToolResponse[], "toolsApiSlice", any>> & {
|
|
349
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").ToolResponse[] | undefined;
|
|
312
350
|
isUninitialized: false;
|
|
313
351
|
isLoading: false;
|
|
314
352
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").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
|
}];
|