@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,7 +1,14 @@
|
|
|
1
|
-
export declare const mentorCategoriesApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1
|
+
export declare const mentorCategoriesApiSlice: 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
|
getMentorCategories: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
3
3
|
org: string;
|
|
4
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
4
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>;
|
|
5
|
+
getMentorCategoryGroups: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
6
|
+
org: string;
|
|
7
|
+
audience?: number;
|
|
8
|
+
audienceName?: string;
|
|
9
|
+
ordering?: string;
|
|
10
|
+
search?: string;
|
|
11
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>;
|
|
5
12
|
}, "mentorCategoriesApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
6
13
|
export declare const useGetMentorCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
7
14
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -13,7 +20,7 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
13
20
|
startedTimeStamp?: undefined | undefined;
|
|
14
21
|
fulfilledTimeStamp?: undefined | undefined;
|
|
15
22
|
} & {
|
|
16
|
-
currentData?: import("
|
|
23
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
17
24
|
isUninitialized: false;
|
|
18
25
|
isLoading: false;
|
|
19
26
|
isFetching: false;
|
|
@@ -23,8 +30,8 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
23
30
|
isUninitialized: true;
|
|
24
31
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
25
32
|
org: string;
|
|
26
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
27
|
-
currentData?: import("
|
|
33
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
34
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
28
35
|
isUninitialized: false;
|
|
29
36
|
isLoading: false;
|
|
30
37
|
isFetching: false;
|
|
@@ -40,8 +47,8 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
40
47
|
error: undefined;
|
|
41
48
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
42
49
|
org: string;
|
|
43
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
44
|
-
currentData?: import("
|
|
50
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
51
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
45
52
|
isUninitialized: false;
|
|
46
53
|
isLoading: false;
|
|
47
54
|
isFetching: false;
|
|
@@ -53,8 +60,8 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
53
60
|
error: undefined;
|
|
54
61
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
55
62
|
org: string;
|
|
56
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
57
|
-
currentData?: import("
|
|
63
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
64
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
58
65
|
isUninitialized: false;
|
|
59
66
|
isLoading: false;
|
|
60
67
|
isFetching: false;
|
|
@@ -64,8 +71,8 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
64
71
|
isError: true;
|
|
65
72
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
66
73
|
org: string;
|
|
67
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
68
|
-
currentData?: import("
|
|
74
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
75
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
69
76
|
isUninitialized: false;
|
|
70
77
|
isLoading: false;
|
|
71
78
|
isFetching: false;
|
|
@@ -90,7 +97,7 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
90
97
|
startedTimeStamp?: undefined | undefined;
|
|
91
98
|
fulfilledTimeStamp?: undefined | undefined;
|
|
92
99
|
} & {
|
|
93
|
-
currentData?: import("
|
|
100
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
94
101
|
isUninitialized: false;
|
|
95
102
|
isLoading: false;
|
|
96
103
|
isFetching: false;
|
|
@@ -100,8 +107,8 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
100
107
|
isUninitialized: true;
|
|
101
108
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
102
109
|
org: string;
|
|
103
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
104
|
-
currentData?: import("
|
|
110
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
111
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
105
112
|
isUninitialized: false;
|
|
106
113
|
isLoading: false;
|
|
107
114
|
isFetching: false;
|
|
@@ -117,8 +124,8 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
117
124
|
error: undefined;
|
|
118
125
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
119
126
|
org: string;
|
|
120
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
121
|
-
currentData?: import("
|
|
127
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
128
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
122
129
|
isUninitialized: false;
|
|
123
130
|
isLoading: false;
|
|
124
131
|
isFetching: false;
|
|
@@ -130,8 +137,8 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
130
137
|
error: undefined;
|
|
131
138
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
132
139
|
org: string;
|
|
133
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
134
|
-
currentData?: import("
|
|
140
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
141
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
135
142
|
isUninitialized: false;
|
|
136
143
|
isLoading: false;
|
|
137
144
|
isFetching: false;
|
|
@@ -141,8 +148,8 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
141
148
|
isError: true;
|
|
142
149
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
143
150
|
org: string;
|
|
144
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
145
|
-
currentData?: import("
|
|
151
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
152
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
146
153
|
isUninitialized: false;
|
|
147
154
|
isLoading: false;
|
|
148
155
|
isFetching: false;
|
|
@@ -154,7 +161,7 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
154
161
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
155
162
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
156
163
|
org: string;
|
|
157
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
164
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>>;
|
|
158
165
|
}, useLazyGetMentorCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
159
166
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
160
167
|
originalArgs?: undefined | undefined;
|
|
@@ -165,7 +172,352 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
165
172
|
startedTimeStamp?: undefined | undefined;
|
|
166
173
|
fulfilledTimeStamp?: undefined | undefined;
|
|
167
174
|
} & {
|
|
168
|
-
currentData?: import("
|
|
175
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
176
|
+
isUninitialized: false;
|
|
177
|
+
isLoading: false;
|
|
178
|
+
isFetching: false;
|
|
179
|
+
isSuccess: false;
|
|
180
|
+
isError: false;
|
|
181
|
+
}, "isUninitialized"> & {
|
|
182
|
+
isUninitialized: true;
|
|
183
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
184
|
+
org: string;
|
|
185
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
186
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
187
|
+
isUninitialized: false;
|
|
188
|
+
isLoading: false;
|
|
189
|
+
isFetching: false;
|
|
190
|
+
isSuccess: false;
|
|
191
|
+
isError: false;
|
|
192
|
+
}, {
|
|
193
|
+
isLoading: true;
|
|
194
|
+
isFetching: boolean;
|
|
195
|
+
data: undefined;
|
|
196
|
+
} | ({
|
|
197
|
+
isSuccess: true;
|
|
198
|
+
isFetching: true;
|
|
199
|
+
error: undefined;
|
|
200
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
201
|
+
org: string;
|
|
202
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
203
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
204
|
+
isUninitialized: false;
|
|
205
|
+
isLoading: false;
|
|
206
|
+
isFetching: false;
|
|
207
|
+
isSuccess: false;
|
|
208
|
+
isError: false;
|
|
209
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
210
|
+
isSuccess: true;
|
|
211
|
+
isFetching: false;
|
|
212
|
+
error: undefined;
|
|
213
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
214
|
+
org: string;
|
|
215
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
216
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
217
|
+
isUninitialized: false;
|
|
218
|
+
isLoading: false;
|
|
219
|
+
isFetching: false;
|
|
220
|
+
isSuccess: false;
|
|
221
|
+
isError: false;
|
|
222
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
223
|
+
isError: true;
|
|
224
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
225
|
+
org: string;
|
|
226
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
227
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
228
|
+
isUninitialized: false;
|
|
229
|
+
isLoading: false;
|
|
230
|
+
isFetching: false;
|
|
231
|
+
isSuccess: false;
|
|
232
|
+
isError: false;
|
|
233
|
+
}, "error">>)>> & {
|
|
234
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
235
|
+
}>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
|
|
236
|
+
skip?: boolean;
|
|
237
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
238
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
239
|
+
originalArgs?: undefined | undefined;
|
|
240
|
+
data?: undefined | undefined;
|
|
241
|
+
error?: undefined | undefined;
|
|
242
|
+
requestId?: undefined | undefined;
|
|
243
|
+
endpointName?: string | undefined;
|
|
244
|
+
startedTimeStamp?: undefined | undefined;
|
|
245
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
246
|
+
} & {
|
|
247
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
248
|
+
isUninitialized: false;
|
|
249
|
+
isLoading: false;
|
|
250
|
+
isFetching: false;
|
|
251
|
+
isSuccess: false;
|
|
252
|
+
isError: false;
|
|
253
|
+
}, "isUninitialized"> & {
|
|
254
|
+
isUninitialized: true;
|
|
255
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
256
|
+
org: string;
|
|
257
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
258
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
259
|
+
isUninitialized: false;
|
|
260
|
+
isLoading: false;
|
|
261
|
+
isFetching: false;
|
|
262
|
+
isSuccess: false;
|
|
263
|
+
isError: false;
|
|
264
|
+
}, {
|
|
265
|
+
isLoading: true;
|
|
266
|
+
isFetching: boolean;
|
|
267
|
+
data: undefined;
|
|
268
|
+
} | ({
|
|
269
|
+
isSuccess: true;
|
|
270
|
+
isFetching: true;
|
|
271
|
+
error: undefined;
|
|
272
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
273
|
+
org: string;
|
|
274
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
275
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
276
|
+
isUninitialized: false;
|
|
277
|
+
isLoading: false;
|
|
278
|
+
isFetching: false;
|
|
279
|
+
isSuccess: false;
|
|
280
|
+
isError: false;
|
|
281
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
282
|
+
isSuccess: true;
|
|
283
|
+
isFetching: false;
|
|
284
|
+
error: undefined;
|
|
285
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
286
|
+
org: string;
|
|
287
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
288
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
289
|
+
isUninitialized: false;
|
|
290
|
+
isLoading: false;
|
|
291
|
+
isFetching: false;
|
|
292
|
+
isSuccess: false;
|
|
293
|
+
isError: false;
|
|
294
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
295
|
+
isError: true;
|
|
296
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
297
|
+
org: 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").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
|
|
299
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
|
|
300
|
+
isUninitialized: false;
|
|
301
|
+
isLoading: false;
|
|
302
|
+
isFetching: false;
|
|
303
|
+
isSuccess: false;
|
|
304
|
+
isError: false;
|
|
305
|
+
}, "error">>)>> & {
|
|
306
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
307
|
+
}) => R) | undefined;
|
|
308
|
+
}, "skip">) | undefined) => [(arg: {
|
|
309
|
+
org: string;
|
|
310
|
+
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
311
|
+
org: string;
|
|
312
|
+
}, 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").MentorCategory[], "mentorCategoriesApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
313
|
+
reset: () => void;
|
|
314
|
+
}, {
|
|
315
|
+
lastArg: {
|
|
316
|
+
org: string;
|
|
317
|
+
};
|
|
318
|
+
}], useGetMentorCategoryGroupsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
319
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
320
|
+
originalArgs?: undefined | undefined;
|
|
321
|
+
data?: undefined | undefined;
|
|
322
|
+
error?: undefined | undefined;
|
|
323
|
+
requestId?: undefined | undefined;
|
|
324
|
+
endpointName?: string | undefined;
|
|
325
|
+
startedTimeStamp?: undefined | undefined;
|
|
326
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
327
|
+
} & {
|
|
328
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
329
|
+
isUninitialized: false;
|
|
330
|
+
isLoading: false;
|
|
331
|
+
isFetching: false;
|
|
332
|
+
isSuccess: false;
|
|
333
|
+
isError: false;
|
|
334
|
+
}, "isUninitialized"> & {
|
|
335
|
+
isUninitialized: true;
|
|
336
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
337
|
+
org: string;
|
|
338
|
+
audience?: number;
|
|
339
|
+
audienceName?: string;
|
|
340
|
+
ordering?: string;
|
|
341
|
+
search?: string;
|
|
342
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
343
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
344
|
+
isUninitialized: false;
|
|
345
|
+
isLoading: false;
|
|
346
|
+
isFetching: false;
|
|
347
|
+
isSuccess: false;
|
|
348
|
+
isError: false;
|
|
349
|
+
}, {
|
|
350
|
+
isLoading: true;
|
|
351
|
+
isFetching: boolean;
|
|
352
|
+
data: undefined;
|
|
353
|
+
} | ({
|
|
354
|
+
isSuccess: true;
|
|
355
|
+
isFetching: true;
|
|
356
|
+
error: undefined;
|
|
357
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
358
|
+
org: string;
|
|
359
|
+
audience?: number;
|
|
360
|
+
audienceName?: string;
|
|
361
|
+
ordering?: string;
|
|
362
|
+
search?: string;
|
|
363
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
364
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
365
|
+
isUninitialized: false;
|
|
366
|
+
isLoading: false;
|
|
367
|
+
isFetching: false;
|
|
368
|
+
isSuccess: false;
|
|
369
|
+
isError: false;
|
|
370
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
371
|
+
isSuccess: true;
|
|
372
|
+
isFetching: false;
|
|
373
|
+
error: undefined;
|
|
374
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
375
|
+
org: string;
|
|
376
|
+
audience?: number;
|
|
377
|
+
audienceName?: string;
|
|
378
|
+
ordering?: string;
|
|
379
|
+
search?: string;
|
|
380
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
381
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
382
|
+
isUninitialized: false;
|
|
383
|
+
isLoading: false;
|
|
384
|
+
isFetching: false;
|
|
385
|
+
isSuccess: false;
|
|
386
|
+
isError: false;
|
|
387
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
388
|
+
isError: true;
|
|
389
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
390
|
+
org: string;
|
|
391
|
+
audience?: number;
|
|
392
|
+
audienceName?: string;
|
|
393
|
+
ordering?: string;
|
|
394
|
+
search?: string;
|
|
395
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
396
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
397
|
+
isUninitialized: false;
|
|
398
|
+
isLoading: false;
|
|
399
|
+
isFetching: false;
|
|
400
|
+
isSuccess: false;
|
|
401
|
+
isError: false;
|
|
402
|
+
}, "error">>)>> & {
|
|
403
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
404
|
+
}>(arg: {
|
|
405
|
+
org: string;
|
|
406
|
+
audience?: number;
|
|
407
|
+
audienceName?: string;
|
|
408
|
+
ordering?: string;
|
|
409
|
+
search?: string;
|
|
410
|
+
} | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
411
|
+
skip?: boolean;
|
|
412
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
413
|
+
} & {
|
|
414
|
+
skip?: boolean;
|
|
415
|
+
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
416
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
417
|
+
originalArgs?: undefined | undefined;
|
|
418
|
+
data?: undefined | undefined;
|
|
419
|
+
error?: undefined | undefined;
|
|
420
|
+
requestId?: undefined | undefined;
|
|
421
|
+
endpointName?: string | undefined;
|
|
422
|
+
startedTimeStamp?: undefined | undefined;
|
|
423
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
424
|
+
} & {
|
|
425
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
426
|
+
isUninitialized: false;
|
|
427
|
+
isLoading: false;
|
|
428
|
+
isFetching: false;
|
|
429
|
+
isSuccess: false;
|
|
430
|
+
isError: false;
|
|
431
|
+
}, "isUninitialized"> & {
|
|
432
|
+
isUninitialized: true;
|
|
433
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
434
|
+
org: string;
|
|
435
|
+
audience?: number;
|
|
436
|
+
audienceName?: string;
|
|
437
|
+
ordering?: string;
|
|
438
|
+
search?: string;
|
|
439
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
440
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
441
|
+
isUninitialized: false;
|
|
442
|
+
isLoading: false;
|
|
443
|
+
isFetching: false;
|
|
444
|
+
isSuccess: false;
|
|
445
|
+
isError: false;
|
|
446
|
+
}, {
|
|
447
|
+
isLoading: true;
|
|
448
|
+
isFetching: boolean;
|
|
449
|
+
data: undefined;
|
|
450
|
+
} | ({
|
|
451
|
+
isSuccess: true;
|
|
452
|
+
isFetching: true;
|
|
453
|
+
error: undefined;
|
|
454
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
455
|
+
org: string;
|
|
456
|
+
audience?: number;
|
|
457
|
+
audienceName?: string;
|
|
458
|
+
ordering?: string;
|
|
459
|
+
search?: string;
|
|
460
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
461
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
462
|
+
isUninitialized: false;
|
|
463
|
+
isLoading: false;
|
|
464
|
+
isFetching: false;
|
|
465
|
+
isSuccess: false;
|
|
466
|
+
isError: false;
|
|
467
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
468
|
+
isSuccess: true;
|
|
469
|
+
isFetching: false;
|
|
470
|
+
error: undefined;
|
|
471
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
472
|
+
org: string;
|
|
473
|
+
audience?: number;
|
|
474
|
+
audienceName?: string;
|
|
475
|
+
ordering?: string;
|
|
476
|
+
search?: string;
|
|
477
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
478
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
479
|
+
isUninitialized: false;
|
|
480
|
+
isLoading: false;
|
|
481
|
+
isFetching: false;
|
|
482
|
+
isSuccess: false;
|
|
483
|
+
isError: false;
|
|
484
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
485
|
+
isError: true;
|
|
486
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
487
|
+
org: string;
|
|
488
|
+
audience?: number;
|
|
489
|
+
audienceName?: string;
|
|
490
|
+
ordering?: string;
|
|
491
|
+
search?: string;
|
|
492
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
493
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
494
|
+
isUninitialized: false;
|
|
495
|
+
isLoading: false;
|
|
496
|
+
isFetching: false;
|
|
497
|
+
isSuccess: false;
|
|
498
|
+
isError: false;
|
|
499
|
+
}, "error">>)>> & {
|
|
500
|
+
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
501
|
+
}) => R) | undefined;
|
|
502
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
503
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
504
|
+
org: string;
|
|
505
|
+
audience?: number;
|
|
506
|
+
audienceName?: string;
|
|
507
|
+
ordering?: string;
|
|
508
|
+
search?: string;
|
|
509
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>>;
|
|
510
|
+
}, useLazyGetMentorCategoryGroupsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
511
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
512
|
+
originalArgs?: undefined | undefined;
|
|
513
|
+
data?: undefined | undefined;
|
|
514
|
+
error?: undefined | undefined;
|
|
515
|
+
requestId?: undefined | undefined;
|
|
516
|
+
endpointName?: string | undefined;
|
|
517
|
+
startedTimeStamp?: undefined | undefined;
|
|
518
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
519
|
+
} & {
|
|
520
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
169
521
|
isUninitialized: false;
|
|
170
522
|
isLoading: false;
|
|
171
523
|
isFetching: false;
|
|
@@ -175,8 +527,12 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
175
527
|
isUninitialized: true;
|
|
176
528
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
177
529
|
org: string;
|
|
178
|
-
|
|
179
|
-
|
|
530
|
+
audience?: number;
|
|
531
|
+
audienceName?: string;
|
|
532
|
+
ordering?: string;
|
|
533
|
+
search?: string;
|
|
534
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
535
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
180
536
|
isUninitialized: false;
|
|
181
537
|
isLoading: false;
|
|
182
538
|
isFetching: false;
|
|
@@ -192,8 +548,12 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
192
548
|
error: undefined;
|
|
193
549
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
194
550
|
org: string;
|
|
195
|
-
|
|
196
|
-
|
|
551
|
+
audience?: number;
|
|
552
|
+
audienceName?: string;
|
|
553
|
+
ordering?: string;
|
|
554
|
+
search?: string;
|
|
555
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
556
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
197
557
|
isUninitialized: false;
|
|
198
558
|
isLoading: false;
|
|
199
559
|
isFetching: false;
|
|
@@ -205,8 +565,12 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
205
565
|
error: undefined;
|
|
206
566
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
207
567
|
org: string;
|
|
208
|
-
|
|
209
|
-
|
|
568
|
+
audience?: number;
|
|
569
|
+
audienceName?: string;
|
|
570
|
+
ordering?: string;
|
|
571
|
+
search?: string;
|
|
572
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
573
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
210
574
|
isUninitialized: false;
|
|
211
575
|
isLoading: false;
|
|
212
576
|
isFetching: false;
|
|
@@ -216,8 +580,12 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
216
580
|
isError: true;
|
|
217
581
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
218
582
|
org: string;
|
|
219
|
-
|
|
220
|
-
|
|
583
|
+
audience?: number;
|
|
584
|
+
audienceName?: string;
|
|
585
|
+
ordering?: string;
|
|
586
|
+
search?: string;
|
|
587
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
588
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
221
589
|
isUninitialized: false;
|
|
222
590
|
isLoading: false;
|
|
223
591
|
isFetching: false;
|
|
@@ -237,7 +605,7 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
237
605
|
startedTimeStamp?: undefined | undefined;
|
|
238
606
|
fulfilledTimeStamp?: undefined | undefined;
|
|
239
607
|
} & {
|
|
240
|
-
currentData?: import("
|
|
608
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
241
609
|
isUninitialized: false;
|
|
242
610
|
isLoading: false;
|
|
243
611
|
isFetching: false;
|
|
@@ -247,8 +615,12 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
247
615
|
isUninitialized: true;
|
|
248
616
|
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
249
617
|
org: string;
|
|
250
|
-
|
|
251
|
-
|
|
618
|
+
audience?: number;
|
|
619
|
+
audienceName?: string;
|
|
620
|
+
ordering?: string;
|
|
621
|
+
search?: string;
|
|
622
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
623
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
252
624
|
isUninitialized: false;
|
|
253
625
|
isLoading: false;
|
|
254
626
|
isFetching: false;
|
|
@@ -264,8 +636,12 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
264
636
|
error: undefined;
|
|
265
637
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
266
638
|
org: string;
|
|
267
|
-
|
|
268
|
-
|
|
639
|
+
audience?: number;
|
|
640
|
+
audienceName?: string;
|
|
641
|
+
ordering?: string;
|
|
642
|
+
search?: string;
|
|
643
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
644
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
269
645
|
isUninitialized: false;
|
|
270
646
|
isLoading: false;
|
|
271
647
|
isFetching: false;
|
|
@@ -277,8 +653,12 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
277
653
|
error: undefined;
|
|
278
654
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
279
655
|
org: string;
|
|
280
|
-
|
|
281
|
-
|
|
656
|
+
audience?: number;
|
|
657
|
+
audienceName?: string;
|
|
658
|
+
ordering?: string;
|
|
659
|
+
search?: string;
|
|
660
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
661
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
282
662
|
isUninitialized: false;
|
|
283
663
|
isLoading: false;
|
|
284
664
|
isFetching: false;
|
|
@@ -288,8 +668,12 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
288
668
|
isError: true;
|
|
289
669
|
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
290
670
|
org: string;
|
|
291
|
-
|
|
292
|
-
|
|
671
|
+
audience?: number;
|
|
672
|
+
audienceName?: string;
|
|
673
|
+
ordering?: string;
|
|
674
|
+
search?: string;
|
|
675
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
|
|
676
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
|
|
293
677
|
isUninitialized: false;
|
|
294
678
|
isLoading: false;
|
|
295
679
|
isFetching: false;
|
|
@@ -300,12 +684,24 @@ export declare const useGetMentorCategoriesQuery: <R extends Record<string, any>
|
|
|
300
684
|
}) => R) | undefined;
|
|
301
685
|
}, "skip">) | undefined) => [(arg: {
|
|
302
686
|
org: string;
|
|
687
|
+
audience?: number;
|
|
688
|
+
audienceName?: string;
|
|
689
|
+
ordering?: string;
|
|
690
|
+
search?: string;
|
|
303
691
|
}, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
304
692
|
org: string;
|
|
305
|
-
|
|
693
|
+
audience?: number;
|
|
694
|
+
audienceName?: string;
|
|
695
|
+
ordering?: string;
|
|
696
|
+
search?: string;
|
|
697
|
+
}, 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").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
306
698
|
reset: () => void;
|
|
307
699
|
}, {
|
|
308
700
|
lastArg: {
|
|
309
701
|
org: string;
|
|
702
|
+
audience?: number;
|
|
703
|
+
audienceName?: string;
|
|
704
|
+
ordering?: string;
|
|
705
|
+
search?: string;
|
|
310
706
|
};
|
|
311
707
|
}];
|