@iblai/data-layer 0.0.4 → 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/index.d.ts +39165 -23
- package/dist/index.esm.js +23977 -16560
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +24138 -16560
- package/dist/index.js.map +1 -1
- package/dist/package.json +82 -0
- package/dist/src/config.d.ts +2 -0
- package/dist/src/constants.d.ts +2 -3
- package/dist/src/features/analytics/api-slice.d.ts +1600 -0
- package/dist/src/features/analytics/constants.d.ts +66 -0
- package/dist/src/features/analytics/types.d.ts +100 -0
- package/dist/src/features/api-keys/api-slice.d.ts +104 -33
- package/dist/src/features/apps/api-slice.d.ts +683 -0
- package/dist/src/features/auth/api-slice.d.ts +137 -0
- package/dist/src/features/auth/constants.d.ts +8 -0
- package/dist/src/features/auth/types.d.ts +13 -0
- package/dist/src/features/billing/api-slice.d.ts +349 -0
- package/dist/{features/api-keys → src/features/career}/api-slice.d.ts +392 -299
- package/dist/src/features/catalog/api-slice.d.ts +6602 -1
- package/dist/src/features/chat/api-slice.d.ts +1566 -31
- package/dist/src/features/chat/chat-slice.d.ts +4 -7
- package/dist/src/features/chat-history/api-slice.d.ts +517 -243
- package/dist/src/features/core/api-slice.d.ts +493 -4
- package/dist/src/features/core/constants.d.ts +4 -0
- package/dist/src/features/credentials/api-slice.d.ts +1661 -63
- 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/datasets/api-slice.d.ts +351 -42
- package/dist/src/features/llms/api-slice.d.ts +88 -22
- package/dist/src/features/memory/api-slice.d.ts +1222 -0
- package/dist/src/features/mentor/api-slice.d.ts +2628 -146
- package/dist/src/features/mentor/constants.d.ts +31 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +268 -0
- package/dist/src/features/mentor/types.d.ts +38 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +66 -22
- package/dist/src/features/notifications/api-slice.d.ts +946 -0
- package/dist/src/features/per-learner/api-slice.d.ts +1213 -0
- package/dist/src/features/platform/api-slice.d.ts +769 -49
- package/dist/src/features/prompts/api-slice.d.ts +1334 -72
- package/dist/src/features/search/api-slice.d.ts +1939 -0
- package/dist/src/features/sessions/api-slice.d.ts +705 -0
- package/dist/src/features/skills/api-slice.d.ts +504 -64
- package/dist/src/features/stripe/api-slice.d.ts +620 -0
- package/dist/src/features/stripe/constants.d.ts +15 -0
- package/dist/src/features/stripe/types.d.ts +9 -0
- package/dist/src/features/tenant/api-slice.d.ts +268 -45
- package/dist/src/features/tenant/constants.d.ts +1 -1
- 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 +88 -22
- package/dist/src/features/training-documents/api-slice.d.ts +223 -51
- package/dist/src/features/user/api-slice.d.ts +1457 -22
- package/dist/src/features/user/constants.d.ts +30 -1
- package/dist/src/features/user/types.d.ts +65 -2
- package/dist/src/features/user-invitations/api-slice.d.ts +345 -55
- package/dist/src/features/utils.d.ts +25 -5
- package/dist/src/index.d.ts +24 -0
- 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 +1128 -0
- package/dist/src/utils/index.d.ts +2 -2
- 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 +31 -25
- 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 -956
- 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/core/api-slice.d.ts +0 -164
- 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/prompts/api-slice.d.ts +0 -1014
- 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 → src/features}/constants.d.ts +0 -0
- /package/dist/{features/catalog/api-slice.d.ts → tests/features/analytics/api-slice.test.d.ts} +0 -0
|
@@ -1,267 +0,0 @@
|
|
|
1
|
-
export declare const mentorCategoriesApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, {
|
|
2
|
-
getMentorCategories: import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>;
|
|
3
|
-
}, "mentorCategoriesApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;
|
|
4
|
-
export declare const useGetMentorCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
5
|
-
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
6
|
-
originalArgs?: undefined | undefined;
|
|
7
|
-
data?: undefined | undefined;
|
|
8
|
-
error?: undefined | undefined;
|
|
9
|
-
requestId?: undefined | undefined;
|
|
10
|
-
endpointName?: string | undefined;
|
|
11
|
-
startedTimeStamp?: undefined | undefined;
|
|
12
|
-
fulfilledTimeStamp?: undefined | undefined;
|
|
13
|
-
} & {
|
|
14
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
15
|
-
isUninitialized: false;
|
|
16
|
-
isLoading: false;
|
|
17
|
-
isFetching: false;
|
|
18
|
-
isSuccess: false;
|
|
19
|
-
isError: false;
|
|
20
|
-
}, "isUninitialized"> & {
|
|
21
|
-
isUninitialized: true;
|
|
22
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
23
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
24
|
-
isUninitialized: false;
|
|
25
|
-
isLoading: false;
|
|
26
|
-
isFetching: false;
|
|
27
|
-
isSuccess: false;
|
|
28
|
-
isError: false;
|
|
29
|
-
}, {
|
|
30
|
-
isLoading: true;
|
|
31
|
-
isFetching: boolean;
|
|
32
|
-
data: undefined;
|
|
33
|
-
} | ({
|
|
34
|
-
isSuccess: true;
|
|
35
|
-
isFetching: true;
|
|
36
|
-
error: undefined;
|
|
37
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
38
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
39
|
-
isUninitialized: false;
|
|
40
|
-
isLoading: false;
|
|
41
|
-
isFetching: false;
|
|
42
|
-
isSuccess: false;
|
|
43
|
-
isError: false;
|
|
44
|
-
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
45
|
-
isSuccess: true;
|
|
46
|
-
isFetching: false;
|
|
47
|
-
error: undefined;
|
|
48
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
49
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
50
|
-
isUninitialized: false;
|
|
51
|
-
isLoading: false;
|
|
52
|
-
isFetching: false;
|
|
53
|
-
isSuccess: false;
|
|
54
|
-
isError: false;
|
|
55
|
-
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
56
|
-
isError: true;
|
|
57
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
58
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
59
|
-
isUninitialized: false;
|
|
60
|
-
isLoading: false;
|
|
61
|
-
isFetching: false;
|
|
62
|
-
isSuccess: false;
|
|
63
|
-
isError: false;
|
|
64
|
-
}, "error">>)>> & {
|
|
65
|
-
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
66
|
-
}>(arg: [org: string, userId: string] | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
67
|
-
skip?: boolean;
|
|
68
|
-
refetchOnMountOrArgChange?: boolean | number;
|
|
69
|
-
} & {
|
|
70
|
-
skip?: boolean;
|
|
71
|
-
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
72
|
-
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
73
|
-
originalArgs?: undefined | undefined;
|
|
74
|
-
data?: undefined | undefined;
|
|
75
|
-
error?: undefined | undefined;
|
|
76
|
-
requestId?: undefined | undefined;
|
|
77
|
-
endpointName?: string | undefined;
|
|
78
|
-
startedTimeStamp?: undefined | undefined;
|
|
79
|
-
fulfilledTimeStamp?: undefined | undefined;
|
|
80
|
-
} & {
|
|
81
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
82
|
-
isUninitialized: false;
|
|
83
|
-
isLoading: false;
|
|
84
|
-
isFetching: false;
|
|
85
|
-
isSuccess: false;
|
|
86
|
-
isError: false;
|
|
87
|
-
}, "isUninitialized"> & {
|
|
88
|
-
isUninitialized: true;
|
|
89
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
90
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
91
|
-
isUninitialized: false;
|
|
92
|
-
isLoading: false;
|
|
93
|
-
isFetching: false;
|
|
94
|
-
isSuccess: false;
|
|
95
|
-
isError: false;
|
|
96
|
-
}, {
|
|
97
|
-
isLoading: true;
|
|
98
|
-
isFetching: boolean;
|
|
99
|
-
data: undefined;
|
|
100
|
-
} | ({
|
|
101
|
-
isSuccess: true;
|
|
102
|
-
isFetching: true;
|
|
103
|
-
error: undefined;
|
|
104
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
105
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
106
|
-
isUninitialized: false;
|
|
107
|
-
isLoading: false;
|
|
108
|
-
isFetching: false;
|
|
109
|
-
isSuccess: false;
|
|
110
|
-
isError: false;
|
|
111
|
-
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
112
|
-
isSuccess: true;
|
|
113
|
-
isFetching: false;
|
|
114
|
-
error: undefined;
|
|
115
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
116
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
117
|
-
isUninitialized: false;
|
|
118
|
-
isLoading: false;
|
|
119
|
-
isFetching: false;
|
|
120
|
-
isSuccess: false;
|
|
121
|
-
isError: false;
|
|
122
|
-
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
123
|
-
isError: true;
|
|
124
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
125
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
126
|
-
isUninitialized: false;
|
|
127
|
-
isLoading: false;
|
|
128
|
-
isFetching: false;
|
|
129
|
-
isSuccess: false;
|
|
130
|
-
isError: false;
|
|
131
|
-
}, "error">>)>> & {
|
|
132
|
-
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
133
|
-
}) => R) | undefined;
|
|
134
|
-
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
135
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>>;
|
|
136
|
-
}, useLazyGetMentorCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
137
|
-
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
138
|
-
originalArgs?: undefined | undefined;
|
|
139
|
-
data?: undefined | undefined;
|
|
140
|
-
error?: undefined | undefined;
|
|
141
|
-
requestId?: undefined | undefined;
|
|
142
|
-
endpointName?: string | undefined;
|
|
143
|
-
startedTimeStamp?: undefined | undefined;
|
|
144
|
-
fulfilledTimeStamp?: undefined | undefined;
|
|
145
|
-
} & {
|
|
146
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
147
|
-
isUninitialized: false;
|
|
148
|
-
isLoading: false;
|
|
149
|
-
isFetching: false;
|
|
150
|
-
isSuccess: false;
|
|
151
|
-
isError: false;
|
|
152
|
-
}, "isUninitialized"> & {
|
|
153
|
-
isUninitialized: true;
|
|
154
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
155
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
156
|
-
isUninitialized: false;
|
|
157
|
-
isLoading: false;
|
|
158
|
-
isFetching: false;
|
|
159
|
-
isSuccess: false;
|
|
160
|
-
isError: false;
|
|
161
|
-
}, {
|
|
162
|
-
isLoading: true;
|
|
163
|
-
isFetching: boolean;
|
|
164
|
-
data: undefined;
|
|
165
|
-
} | ({
|
|
166
|
-
isSuccess: true;
|
|
167
|
-
isFetching: true;
|
|
168
|
-
error: undefined;
|
|
169
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
170
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
171
|
-
isUninitialized: false;
|
|
172
|
-
isLoading: false;
|
|
173
|
-
isFetching: false;
|
|
174
|
-
isSuccess: false;
|
|
175
|
-
isError: false;
|
|
176
|
-
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
177
|
-
isSuccess: true;
|
|
178
|
-
isFetching: false;
|
|
179
|
-
error: undefined;
|
|
180
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
181
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
182
|
-
isUninitialized: false;
|
|
183
|
-
isLoading: false;
|
|
184
|
-
isFetching: false;
|
|
185
|
-
isSuccess: false;
|
|
186
|
-
isError: false;
|
|
187
|
-
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
188
|
-
isError: true;
|
|
189
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
190
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
191
|
-
isUninitialized: false;
|
|
192
|
-
isLoading: false;
|
|
193
|
-
isFetching: false;
|
|
194
|
-
isSuccess: false;
|
|
195
|
-
isError: false;
|
|
196
|
-
}, "error">>)>> & {
|
|
197
|
-
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
198
|
-
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
199
|
-
skip?: boolean;
|
|
200
|
-
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
201
|
-
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
202
|
-
originalArgs?: undefined | undefined;
|
|
203
|
-
data?: undefined | undefined;
|
|
204
|
-
error?: undefined | undefined;
|
|
205
|
-
requestId?: undefined | undefined;
|
|
206
|
-
endpointName?: string | undefined;
|
|
207
|
-
startedTimeStamp?: undefined | undefined;
|
|
208
|
-
fulfilledTimeStamp?: undefined | undefined;
|
|
209
|
-
} & {
|
|
210
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
211
|
-
isUninitialized: false;
|
|
212
|
-
isLoading: false;
|
|
213
|
-
isFetching: false;
|
|
214
|
-
isSuccess: false;
|
|
215
|
-
isError: false;
|
|
216
|
-
}, "isUninitialized"> & {
|
|
217
|
-
isUninitialized: true;
|
|
218
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
219
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
220
|
-
isUninitialized: false;
|
|
221
|
-
isLoading: false;
|
|
222
|
-
isFetching: false;
|
|
223
|
-
isSuccess: false;
|
|
224
|
-
isError: false;
|
|
225
|
-
}, {
|
|
226
|
-
isLoading: true;
|
|
227
|
-
isFetching: boolean;
|
|
228
|
-
data: undefined;
|
|
229
|
-
} | ({
|
|
230
|
-
isSuccess: true;
|
|
231
|
-
isFetching: true;
|
|
232
|
-
error: undefined;
|
|
233
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
234
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
235
|
-
isUninitialized: false;
|
|
236
|
-
isLoading: false;
|
|
237
|
-
isFetching: false;
|
|
238
|
-
isSuccess: false;
|
|
239
|
-
isError: false;
|
|
240
|
-
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
241
|
-
isSuccess: true;
|
|
242
|
-
isFetching: false;
|
|
243
|
-
error: undefined;
|
|
244
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
245
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
246
|
-
isUninitialized: false;
|
|
247
|
-
isLoading: false;
|
|
248
|
-
isFetching: false;
|
|
249
|
-
isSuccess: false;
|
|
250
|
-
isError: false;
|
|
251
|
-
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
252
|
-
isError: true;
|
|
253
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
254
|
-
currentData?: import("@iblai/iblai-api").MentorCategory[] | undefined;
|
|
255
|
-
isUninitialized: false;
|
|
256
|
-
isLoading: false;
|
|
257
|
-
isFetching: false;
|
|
258
|
-
isSuccess: false;
|
|
259
|
-
isError: false;
|
|
260
|
-
}, "error">>)>> & {
|
|
261
|
-
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
262
|
-
}) => R) | undefined;
|
|
263
|
-
}, "skip">) | undefined) => [(arg: [org: string, userId: string], preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, never, import("@iblai/iblai-api").MentorCategory[], "mentorCategoriesApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
264
|
-
reset: () => void;
|
|
265
|
-
}, {
|
|
266
|
-
lastArg: [org: string, userId: string];
|
|
267
|
-
}];
|