@iblai/web-utils 0.2.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/config.d.ts +7 -0
- package/dist/data-layer/src/constants.d.ts +30 -0
- package/dist/data-layer/src/core/index.d.ts +4 -0
- package/dist/data-layer/src/features/analytics/api-slice.d.ts +1600 -0
- package/dist/data-layer/src/features/analytics/constants.d.ts +66 -0
- package/dist/data-layer/src/features/analytics/types.d.ts +100 -0
- package/dist/data-layer/src/features/api-keys/api-slice.d.ts +665 -0
- package/dist/data-layer/src/features/apps/api-slice.d.ts +683 -0
- package/dist/data-layer/src/features/auth/api-slice.d.ts +137 -0
- package/dist/data-layer/src/features/auth/constants.d.ts +8 -0
- package/dist/data-layer/src/features/auth/types.d.ts +13 -0
- package/dist/data-layer/src/features/billing/api-slice.d.ts +349 -0
- package/dist/data-layer/src/features/career/api-slice.d.ts +687 -0
- package/dist/data-layer/src/features/catalog/api-slice.d.ts +6602 -0
- package/dist/data-layer/src/features/chat/api-slice.d.ts +1832 -0
- package/dist/data-layer/src/features/chat-history/api-slice.d.ts +1386 -0
- package/dist/data-layer/src/features/constants.d.ts +3 -0
- package/dist/data-layer/src/features/core/api-slice.d.ts +653 -0
- package/dist/data-layer/src/features/core/constants.d.ts +4 -0
- package/dist/data-layer/src/features/credentials/api-slice.d.ts +2129 -0
- package/dist/data-layer/src/features/credentials/constants.d.ts +28 -0
- package/dist/data-layer/src/features/credentials/custom-api-slice.d.ts +1284 -0
- package/dist/data-layer/src/features/credentials/types.d.ts +16 -0
- package/dist/data-layer/src/features/datasets/api-slice.d.ts +576 -0
- package/dist/data-layer/src/features/llms/api-slice.d.ts +333 -0
- package/dist/data-layer/src/features/mentor/api-slice.d.ts +4298 -0
- package/dist/data-layer/src/features/mentor/constants.d.ts +31 -0
- package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +268 -0
- package/dist/data-layer/src/features/mentor/types.d.ts +38 -0
- package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +311 -0
- package/dist/data-layer/src/features/notifications/api-slice.d.ts +946 -0
- package/dist/data-layer/src/features/per-learner/api-slice.d.ts +1213 -0
- package/dist/data-layer/src/features/platform/api-slice.d.ts +1124 -0
- package/dist/data-layer/src/features/prompts/api-slice.d.ts +2276 -0
- package/dist/data-layer/src/features/search/api-slice.d.ts +1939 -0
- package/dist/data-layer/src/features/sessions/api-slice.d.ts +705 -0
- package/dist/data-layer/src/features/skills/api-slice.d.ts +1235 -0
- package/dist/data-layer/src/features/stripe/api-slice.d.ts +620 -0
- package/dist/data-layer/src/features/stripe/constants.d.ts +15 -0
- package/dist/data-layer/src/features/stripe/types.d.ts +9 -0
- package/dist/data-layer/src/features/tenant/api-slice.d.ts +759 -0
- package/dist/data-layer/src/features/tenant/constants.d.ts +11 -0
- package/dist/data-layer/src/features/tenant/types.d.ts +18 -0
- package/dist/data-layer/src/features/tenant-logo/api-slice.d.ts +349 -0
- package/dist/data-layer/src/features/tenant-logo/constants.d.ts +24 -0
- package/dist/data-layer/src/features/tools/api-slice.d.ts +333 -0
- package/dist/data-layer/src/features/training-documents/api-slice.d.ts +922 -0
- package/dist/data-layer/src/features/user/api-slice.d.ts +1703 -0
- package/dist/data-layer/src/features/user/constants.d.ts +40 -0
- package/dist/data-layer/src/features/user/types.d.ts +107 -0
- package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +718 -0
- package/dist/data-layer/src/features/utils.d.ts +66 -0
- package/dist/data-layer/src/index.d.ts +47 -0
- package/dist/data-layer/src/reducers/index.d.ts +2 -0
- package/dist/data-layer/src/reducers/mentor.d.ts +2 -0
- package/dist/data-layer/src/reducers/skills.d.ts +1148 -0
- package/dist/data-layer/src/services/StorageService.d.ts +5 -0
- package/dist/data-layer/src/utils/index.d.ts +2 -0
- package/dist/features/chat/slice.d.ts +59 -0
- package/dist/features/index.d.ts +1 -0
- package/dist/hooks/chat/use-advanced-chat.d.ts +41 -0
- package/dist/hooks/chat/use-chat-v2.d.ts +53 -0
- package/dist/hooks/chat/use-chat.d.ts +52 -0
- package/dist/hooks/chat/use-get-chat-details.d.ts +13 -0
- package/dist/hooks/index.d.ts +10 -0
- package/dist/hooks/subscription/class-subscription-flow.d.ts +70 -0
- package/dist/hooks/subscription/constants.d.ts +4 -0
- package/dist/hooks/subscription/use-subscription-handler.d.ts +11 -0
- package/dist/hooks/subscription-v2/class-subscription-flow.d.ts +62 -0
- package/dist/hooks/subscription-v2/constants.d.ts +5 -0
- package/dist/hooks/subscription-v2/use-external-pricing-plan.d.ts +7 -0
- package/dist/hooks/subscription-v2/use-subscription-handler.d.ts +12 -0
- package/dist/hooks/use-day-js.d.ts +7 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.esm.js +15076 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +15160 -0
- package/dist/index.js.map +1 -0
- package/dist/package.json +53 -0
- package/dist/providers/auth-provider.d.ts +63 -0
- package/dist/providers/index.d.ts +3 -0
- package/dist/providers/mentor-provider.d.ts +40 -0
- package/dist/providers/tenant-provider.d.ts +60 -0
- package/dist/types/chat.d.ts +1 -0
- package/dist/types/index.d.ts +55 -0
- package/dist/types/subscription.d.ts +18 -0
- package/dist/utils/constants.d.ts +13 -0
- package/dist/utils/data/advanced-tab.d.ts +62 -0
- package/dist/utils/helpers.d.ts +1 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/web-utils/src/features/chat/slice.d.ts +91 -0
- package/dist/web-utils/src/features/index.d.ts +1 -0
- package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +48 -0
- package/dist/web-utils/src/hooks/chat/use-chat-v2.d.ts +56 -0
- package/dist/web-utils/src/hooks/chat/use-chat.d.ts +52 -0
- package/dist/web-utils/src/hooks/chat/use-get-chat-details.d.ts +13 -0
- package/dist/web-utils/src/hooks/chat/use-mentor-tools.d.ts +18 -0
- package/dist/web-utils/src/hooks/index.d.ts +15 -0
- package/dist/web-utils/src/hooks/profile/use-profile-image-upload.d.ts +13 -0
- package/dist/web-utils/src/hooks/profile/use-user-profile-update.d.ts +28 -0
- package/dist/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +70 -0
- package/dist/web-utils/src/hooks/subscription/constants.d.ts +4 -0
- package/dist/web-utils/src/hooks/subscription/use-subscription-handler.d.ts +11 -0
- package/dist/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +77 -0
- package/dist/web-utils/src/hooks/subscription-v2/constants.d.ts +51 -0
- package/dist/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +7 -0
- package/dist/web-utils/src/hooks/subscription-v2/use-subscription-handler.d.ts +16 -0
- package/dist/web-utils/src/hooks/tenant-metadata/config-loader.d.ts +41 -0
- package/dist/web-utils/src/hooks/tenant-metadata/constants.d.ts +9 -0
- package/dist/web-utils/src/hooks/tenant-metadata/index.d.ts +5 -0
- package/dist/web-utils/src/hooks/tenant-metadata/types.d.ts +9 -0
- package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +24 -0
- package/dist/web-utils/src/hooks/use-day-js.d.ts +7 -0
- package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +21 -0
- package/dist/web-utils/src/index.d.ts +5 -0
- package/dist/web-utils/src/providers/auth-provider.d.ts +64 -0
- package/dist/web-utils/src/providers/index.d.ts +3 -0
- package/dist/web-utils/src/providers/mentor-provider.d.ts +40 -0
- package/dist/web-utils/src/providers/tenant-provider.d.ts +63 -0
- package/dist/web-utils/src/types/chat.d.ts +1 -0
- package/dist/web-utils/src/types/index.d.ts +55 -0
- package/dist/web-utils/src/types/subscription.d.ts +18 -0
- package/dist/web-utils/src/utils/constants.d.ts +37 -0
- package/dist/web-utils/src/utils/data/advanced-tab.d.ts +62 -0
- package/dist/web-utils/src/utils/helpers.d.ts +6 -0
- package/dist/web-utils/src/utils/index.d.ts +3 -0
- package/package.json +56 -0
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
export declare const toolsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, {
|
|
2
|
+
getTools: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
|
+
mentor: string;
|
|
4
|
+
org: string;
|
|
5
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>;
|
|
6
|
+
}, "toolsApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
7
|
+
export declare const useGetToolsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
8
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
9
|
+
originalArgs?: undefined | undefined;
|
|
10
|
+
data?: undefined | undefined;
|
|
11
|
+
error?: undefined | undefined;
|
|
12
|
+
requestId?: undefined | undefined;
|
|
13
|
+
endpointName?: string | undefined;
|
|
14
|
+
startedTimeStamp?: undefined | undefined;
|
|
15
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
16
|
+
} & {
|
|
17
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
18
|
+
isUninitialized: false;
|
|
19
|
+
isLoading: false;
|
|
20
|
+
isFetching: false;
|
|
21
|
+
isSuccess: false;
|
|
22
|
+
isError: false;
|
|
23
|
+
}, "isUninitialized"> & {
|
|
24
|
+
isUninitialized: true;
|
|
25
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
26
|
+
mentor: string;
|
|
27
|
+
org: string;
|
|
28
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
29
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
30
|
+
isUninitialized: false;
|
|
31
|
+
isLoading: false;
|
|
32
|
+
isFetching: false;
|
|
33
|
+
isSuccess: false;
|
|
34
|
+
isError: false;
|
|
35
|
+
}, {
|
|
36
|
+
isLoading: true;
|
|
37
|
+
isFetching: boolean;
|
|
38
|
+
data: undefined;
|
|
39
|
+
} | ({
|
|
40
|
+
isSuccess: true;
|
|
41
|
+
isFetching: true;
|
|
42
|
+
error: undefined;
|
|
43
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
44
|
+
mentor: string;
|
|
45
|
+
org: string;
|
|
46
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
47
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
48
|
+
isUninitialized: false;
|
|
49
|
+
isLoading: false;
|
|
50
|
+
isFetching: false;
|
|
51
|
+
isSuccess: false;
|
|
52
|
+
isError: false;
|
|
53
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
54
|
+
isSuccess: true;
|
|
55
|
+
isFetching: false;
|
|
56
|
+
error: undefined;
|
|
57
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
58
|
+
mentor: string;
|
|
59
|
+
org: string;
|
|
60
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
61
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
62
|
+
isUninitialized: false;
|
|
63
|
+
isLoading: false;
|
|
64
|
+
isFetching: false;
|
|
65
|
+
isSuccess: false;
|
|
66
|
+
isError: false;
|
|
67
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
68
|
+
isError: true;
|
|
69
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
70
|
+
mentor: string;
|
|
71
|
+
org: string;
|
|
72
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
73
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
74
|
+
isUninitialized: false;
|
|
75
|
+
isLoading: false;
|
|
76
|
+
isFetching: false;
|
|
77
|
+
isSuccess: false;
|
|
78
|
+
isError: false;
|
|
79
|
+
}, "error">>)>> & {
|
|
80
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
81
|
+
}>(arg: {
|
|
82
|
+
mentor: string;
|
|
83
|
+
org: string;
|
|
84
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
85
|
+
skip?: boolean;
|
|
86
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
87
|
+
} & {
|
|
88
|
+
skip?: boolean;
|
|
89
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
90
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
91
|
+
originalArgs?: undefined | undefined;
|
|
92
|
+
data?: undefined | undefined;
|
|
93
|
+
error?: undefined | undefined;
|
|
94
|
+
requestId?: undefined | undefined;
|
|
95
|
+
endpointName?: string | undefined;
|
|
96
|
+
startedTimeStamp?: undefined | undefined;
|
|
97
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
98
|
+
} & {
|
|
99
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
100
|
+
isUninitialized: false;
|
|
101
|
+
isLoading: false;
|
|
102
|
+
isFetching: false;
|
|
103
|
+
isSuccess: false;
|
|
104
|
+
isError: false;
|
|
105
|
+
}, "isUninitialized"> & {
|
|
106
|
+
isUninitialized: true;
|
|
107
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
108
|
+
mentor: string;
|
|
109
|
+
org: string;
|
|
110
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
111
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
112
|
+
isUninitialized: false;
|
|
113
|
+
isLoading: false;
|
|
114
|
+
isFetching: false;
|
|
115
|
+
isSuccess: false;
|
|
116
|
+
isError: false;
|
|
117
|
+
}, {
|
|
118
|
+
isLoading: true;
|
|
119
|
+
isFetching: boolean;
|
|
120
|
+
data: undefined;
|
|
121
|
+
} | ({
|
|
122
|
+
isSuccess: true;
|
|
123
|
+
isFetching: true;
|
|
124
|
+
error: undefined;
|
|
125
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
126
|
+
mentor: string;
|
|
127
|
+
org: string;
|
|
128
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
129
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
130
|
+
isUninitialized: false;
|
|
131
|
+
isLoading: false;
|
|
132
|
+
isFetching: false;
|
|
133
|
+
isSuccess: false;
|
|
134
|
+
isError: false;
|
|
135
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
136
|
+
isSuccess: true;
|
|
137
|
+
isFetching: false;
|
|
138
|
+
error: undefined;
|
|
139
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
140
|
+
mentor: string;
|
|
141
|
+
org: string;
|
|
142
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
143
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
144
|
+
isUninitialized: false;
|
|
145
|
+
isLoading: false;
|
|
146
|
+
isFetching: false;
|
|
147
|
+
isSuccess: false;
|
|
148
|
+
isError: false;
|
|
149
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
150
|
+
isError: true;
|
|
151
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
152
|
+
mentor: string;
|
|
153
|
+
org: string;
|
|
154
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
155
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
156
|
+
isUninitialized: false;
|
|
157
|
+
isLoading: false;
|
|
158
|
+
isFetching: false;
|
|
159
|
+
isSuccess: false;
|
|
160
|
+
isError: false;
|
|
161
|
+
}, "error">>)>> & {
|
|
162
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
163
|
+
}) => R) | undefined;
|
|
164
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
165
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
166
|
+
mentor: string;
|
|
167
|
+
org: string;
|
|
168
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>>;
|
|
169
|
+
}, useLazyGetToolsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
170
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
171
|
+
originalArgs?: undefined | undefined;
|
|
172
|
+
data?: undefined | undefined;
|
|
173
|
+
error?: undefined | undefined;
|
|
174
|
+
requestId?: undefined | undefined;
|
|
175
|
+
endpointName?: string | undefined;
|
|
176
|
+
startedTimeStamp?: undefined | undefined;
|
|
177
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
178
|
+
} & {
|
|
179
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
180
|
+
isUninitialized: false;
|
|
181
|
+
isLoading: false;
|
|
182
|
+
isFetching: false;
|
|
183
|
+
isSuccess: false;
|
|
184
|
+
isError: false;
|
|
185
|
+
}, "isUninitialized"> & {
|
|
186
|
+
isUninitialized: true;
|
|
187
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
188
|
+
mentor: string;
|
|
189
|
+
org: string;
|
|
190
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
191
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
192
|
+
isUninitialized: false;
|
|
193
|
+
isLoading: false;
|
|
194
|
+
isFetching: false;
|
|
195
|
+
isSuccess: false;
|
|
196
|
+
isError: false;
|
|
197
|
+
}, {
|
|
198
|
+
isLoading: true;
|
|
199
|
+
isFetching: boolean;
|
|
200
|
+
data: undefined;
|
|
201
|
+
} | ({
|
|
202
|
+
isSuccess: true;
|
|
203
|
+
isFetching: true;
|
|
204
|
+
error: undefined;
|
|
205
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
206
|
+
mentor: string;
|
|
207
|
+
org: string;
|
|
208
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
209
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
210
|
+
isUninitialized: false;
|
|
211
|
+
isLoading: false;
|
|
212
|
+
isFetching: false;
|
|
213
|
+
isSuccess: false;
|
|
214
|
+
isError: false;
|
|
215
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
216
|
+
isSuccess: true;
|
|
217
|
+
isFetching: false;
|
|
218
|
+
error: undefined;
|
|
219
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
220
|
+
mentor: string;
|
|
221
|
+
org: string;
|
|
222
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
223
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
224
|
+
isUninitialized: false;
|
|
225
|
+
isLoading: false;
|
|
226
|
+
isFetching: false;
|
|
227
|
+
isSuccess: false;
|
|
228
|
+
isError: false;
|
|
229
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
230
|
+
isError: true;
|
|
231
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
232
|
+
mentor: string;
|
|
233
|
+
org: string;
|
|
234
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
235
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
236
|
+
isUninitialized: false;
|
|
237
|
+
isLoading: false;
|
|
238
|
+
isFetching: false;
|
|
239
|
+
isSuccess: false;
|
|
240
|
+
isError: false;
|
|
241
|
+
}, "error">>)>> & {
|
|
242
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
243
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
244
|
+
skip?: boolean;
|
|
245
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
246
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
247
|
+
originalArgs?: undefined | undefined;
|
|
248
|
+
data?: undefined | undefined;
|
|
249
|
+
error?: undefined | undefined;
|
|
250
|
+
requestId?: undefined | undefined;
|
|
251
|
+
endpointName?: string | undefined;
|
|
252
|
+
startedTimeStamp?: undefined | undefined;
|
|
253
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
254
|
+
} & {
|
|
255
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
256
|
+
isUninitialized: false;
|
|
257
|
+
isLoading: false;
|
|
258
|
+
isFetching: false;
|
|
259
|
+
isSuccess: false;
|
|
260
|
+
isError: false;
|
|
261
|
+
}, "isUninitialized"> & {
|
|
262
|
+
isUninitialized: true;
|
|
263
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
264
|
+
mentor: string;
|
|
265
|
+
org: string;
|
|
266
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
267
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
268
|
+
isUninitialized: false;
|
|
269
|
+
isLoading: false;
|
|
270
|
+
isFetching: false;
|
|
271
|
+
isSuccess: false;
|
|
272
|
+
isError: false;
|
|
273
|
+
}, {
|
|
274
|
+
isLoading: true;
|
|
275
|
+
isFetching: boolean;
|
|
276
|
+
data: undefined;
|
|
277
|
+
} | ({
|
|
278
|
+
isSuccess: true;
|
|
279
|
+
isFetching: true;
|
|
280
|
+
error: undefined;
|
|
281
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
282
|
+
mentor: string;
|
|
283
|
+
org: string;
|
|
284
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
285
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
286
|
+
isUninitialized: false;
|
|
287
|
+
isLoading: false;
|
|
288
|
+
isFetching: false;
|
|
289
|
+
isSuccess: false;
|
|
290
|
+
isError: false;
|
|
291
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
292
|
+
isSuccess: true;
|
|
293
|
+
isFetching: false;
|
|
294
|
+
error: undefined;
|
|
295
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
296
|
+
mentor: string;
|
|
297
|
+
org: string;
|
|
298
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
299
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
300
|
+
isUninitialized: false;
|
|
301
|
+
isLoading: false;
|
|
302
|
+
isFetching: false;
|
|
303
|
+
isSuccess: false;
|
|
304
|
+
isError: false;
|
|
305
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
306
|
+
isError: true;
|
|
307
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
308
|
+
mentor: string;
|
|
309
|
+
org: string;
|
|
310
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>> & {
|
|
311
|
+
currentData?: import("@iblai/iblai-api").ToolResponse[] | undefined;
|
|
312
|
+
isUninitialized: false;
|
|
313
|
+
isLoading: false;
|
|
314
|
+
isFetching: false;
|
|
315
|
+
isSuccess: false;
|
|
316
|
+
isError: false;
|
|
317
|
+
}, "error">>)>> & {
|
|
318
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
319
|
+
}) => R) | undefined;
|
|
320
|
+
}, "skip">) | undefined) => [(arg: {
|
|
321
|
+
mentor: string;
|
|
322
|
+
org: string;
|
|
323
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
324
|
+
mentor: string;
|
|
325
|
+
org: string;
|
|
326
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").ToolResponse[], "toolsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
327
|
+
reset: () => void;
|
|
328
|
+
}, {
|
|
329
|
+
lastArg: {
|
|
330
|
+
mentor: string;
|
|
331
|
+
org: string;
|
|
332
|
+
};
|
|
333
|
+
}];
|