@iblai/data-layer 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/index.d.ts +41476 -15632
- package/dist/index.esm.js +6764 -1863
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6947 -1859
- package/dist/index.js.map +1 -1
- package/dist/package.json +19 -17
- package/dist/src/__tests__/constants.test.d.ts +1 -0
- package/dist/src/core/index.d.ts +2 -1
- package/dist/src/features/analytics/api-slice.d.ts +1879 -122
- package/dist/src/features/analytics/constants.d.ts +56 -1
- package/dist/src/features/analytics/types.d.ts +327 -1
- package/dist/src/features/api-keys/api-slice.d.ts +25 -36
- package/dist/src/features/apps/api-slice.d.ts +25 -36
- package/dist/src/features/auth/api-slice.d.ts +504 -2
- package/dist/src/features/auth/constants.d.ts +13 -1
- package/dist/src/features/auth/types.d.ts +20 -0
- package/dist/src/features/billing/api-slice.d.ts +5 -5
- package/dist/src/features/career/api-slice.d.ts +2345 -180
- package/dist/src/features/catalog/api-slice.d.ts +2260 -244
- package/dist/src/features/chat/api-slice.d.ts +68 -68
- package/dist/src/features/chat-files/api-slice.d.ts +185 -0
- package/dist/src/features/chat-files/types.d.ts +32 -0
- package/dist/src/features/chat-history/api-slice.d.ts +60 -60
- package/dist/src/features/core/api-slice.d.ts +3793 -26
- package/dist/src/features/core/constants.d.ts +43 -0
- package/dist/src/features/core/custom-api-slice.d.ts +1458 -0
- package/dist/src/features/core/custom-public-image-asset-api-slice.d.ts +333 -0
- package/dist/src/features/core/types.d.ts +60 -0
- package/dist/src/features/credentials/api-slice.d.ts +766 -105
- package/dist/src/features/custom-domain/api-slice.d.ts +602 -0
- package/dist/src/features/custom-domain/constants.d.ts +20 -0
- package/dist/src/features/custom-domain/types.d.ts +46 -0
- package/dist/src/features/datasets/api-slice.d.ts +22 -22
- package/dist/src/features/disclaimers/api-slice.d.ts +912 -0
- package/dist/src/features/disclaimers/constants.d.ts +27 -0
- package/dist/src/features/disclaimers/index.d.ts +3 -0
- package/dist/src/features/disclaimers/types.d.ts +67 -0
- package/dist/src/features/edx-proctoring/api-slice.d.ts +590 -0
- package/dist/src/features/edx-proctoring/constants.d.ts +15 -0
- package/dist/src/features/edx-proctoring/types.d.ts +61 -0
- package/dist/src/features/llms/api-slice.d.ts +20 -20
- package/dist/src/features/memory/api-slice.d.ts +1437 -530
- package/dist/src/features/memory/constants.d.ts +50 -0
- package/dist/src/features/memory/index.d.ts +3 -0
- package/dist/src/features/memory/types.d.ts +122 -0
- package/dist/src/features/mentor/api-slice.d.ts +1738 -240
- package/dist/src/features/mentor/constants.d.ts +8 -0
- package/dist/src/features/mentor/custom-api-slice.d.ts +529 -1
- package/dist/src/features/mentor/types.d.ts +39 -0
- package/dist/src/features/mentor-categories/api-slice.d.ts +416 -20
- package/dist/src/features/notifications/api-slice.d.ts +696 -42
- package/dist/src/features/notifications/constants.d.ts +26 -0
- package/dist/src/features/notifications/custom-api-slice.d.ts +996 -0
- package/dist/src/features/notifications/types.d.ts +69 -0
- package/dist/src/features/per-learner/api-slice.d.ts +58 -58
- package/dist/src/features/platform/api-slice.d.ts +321 -167
- package/dist/src/features/platform/constants.d.ts +17 -0
- package/dist/src/features/platform/custom-api-slice.d.ts +493 -0
- package/dist/src/features/platform/types.d.ts +48 -0
- package/dist/src/features/projects/api-slice.d.ts +2026 -0
- package/dist/src/features/projects/constants.d.ts +51 -0
- package/dist/src/features/projects/types.d.ts +79 -0
- package/dist/src/features/prompts/api-slice.d.ts +105 -83
- package/dist/src/features/reports/api-slice.d.ts +814 -0
- package/dist/src/features/search/ai-search-api-slice.d.ts +1015 -0
- package/dist/src/features/search/api-slice.d.ts +39 -39
- package/dist/src/features/search/constants.d.ts +31 -0
- package/dist/src/features/search/types.d.ts +89 -0
- package/dist/src/features/sessions/api-slice.d.ts +24 -24
- package/dist/src/features/skills/api-slice.d.ts +77 -77
- package/dist/src/features/stripe/api-slice.d.ts +201 -40
- package/dist/src/features/stripe/constants.d.ts +5 -1
- package/dist/src/features/stripe/types.d.ts +10 -0
- package/dist/src/features/tenant/api-slice.d.ts +43 -52
- package/dist/src/features/tenant/types.d.ts +1 -0
- package/dist/src/features/tools/api-slice.d.ts +64 -20
- package/dist/src/features/training-documents/api-slice.d.ts +534 -27
- package/dist/src/features/user/api-slice.d.ts +124 -124
- package/dist/src/features/user/constants.d.ts +3 -1
- package/dist/src/features/user-invitations/api-slice.d.ts +22 -22
- package/dist/src/features/utils.d.ts +8 -5
- package/dist/src/index.d.ts +78 -47
- package/dist/src/reducers/skills.d.ts +2 -1128
- package/dist/src/services/StorageService.d.ts +1 -1
- package/dist/tests/setupTests.d.ts +1 -1
- package/package.json +26 -21
|
@@ -3,8 +3,8 @@ interface GetPromptCategoriesParams {
|
|
|
3
3
|
user_id: string;
|
|
4
4
|
filterBy?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare const promptsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
7
|
-
getPromptCategories: import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
6
|
+
export declare const promptsApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
|
|
7
|
+
getPromptCategories: import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>;
|
|
8
8
|
getPrompts: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
9
9
|
org: string;
|
|
10
10
|
category?: number;
|
|
@@ -13,12 +13,13 @@ export declare const promptsApiSlice: import("@reduxjs/toolkit/query").Api<impor
|
|
|
13
13
|
mentorUniqueId?: string;
|
|
14
14
|
tag?: number;
|
|
15
15
|
visibility?: string;
|
|
16
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
16
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>;
|
|
17
17
|
getPromptsSearch: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
18
18
|
org: string;
|
|
19
19
|
username: string;
|
|
20
20
|
alphabetical?: boolean;
|
|
21
21
|
category?: string;
|
|
22
|
+
createdBy?: string;
|
|
22
23
|
filterFacet?: boolean;
|
|
23
24
|
language?: string;
|
|
24
25
|
limit?: number;
|
|
@@ -30,7 +31,7 @@ export declare const promptsApiSlice: import("@reduxjs/toolkit/query").Api<impor
|
|
|
30
31
|
style?: string;
|
|
31
32
|
tenant?: string;
|
|
32
33
|
tone?: string;
|
|
33
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
34
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>;
|
|
34
35
|
createPrompt: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
35
36
|
org: string;
|
|
36
37
|
requestBody: import("@iblai/iblai-api").Prompt;
|
|
@@ -40,7 +41,7 @@ export declare const promptsApiSlice: import("@reduxjs/toolkit/query").Api<impor
|
|
|
40
41
|
mentorUniqueId?: string;
|
|
41
42
|
tag?: number;
|
|
42
43
|
visibility?: string;
|
|
43
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
44
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt, "promptsApiSlice", any>;
|
|
44
45
|
updatePrompt: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
45
46
|
id: number;
|
|
46
47
|
org: string;
|
|
@@ -51,7 +52,7 @@ export declare const promptsApiSlice: import("@reduxjs/toolkit/query").Api<impor
|
|
|
51
52
|
mentorUniqueId?: string;
|
|
52
53
|
tag?: number;
|
|
53
54
|
visibility?: string;
|
|
54
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
55
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt, "promptsApiSlice", any>;
|
|
55
56
|
deletePrompt: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
56
57
|
id: number;
|
|
57
58
|
org: string;
|
|
@@ -61,12 +62,12 @@ export declare const promptsApiSlice: import("@reduxjs/toolkit/query").Api<impor
|
|
|
61
62
|
mentorUniqueId?: string;
|
|
62
63
|
tag?: number;
|
|
63
64
|
visibility?: string;
|
|
64
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
65
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", void, "promptsApiSlice", any>;
|
|
65
66
|
getGuidedPrompts: import("@reduxjs/toolkit/query").QueryDefinition<{
|
|
66
67
|
org: string;
|
|
67
68
|
sessionId: string;
|
|
68
69
|
count?: number;
|
|
69
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
70
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>;
|
|
70
71
|
}, "promptsApiSlice", "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
71
72
|
export declare const useGetPromptCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
72
73
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -86,7 +87,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
86
87
|
isError: false;
|
|
87
88
|
}, "isUninitialized"> & {
|
|
88
89
|
isUninitialized: true;
|
|
89
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
90
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
90
91
|
currentData?: any;
|
|
91
92
|
isUninitialized: false;
|
|
92
93
|
isLoading: false;
|
|
@@ -101,7 +102,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
101
102
|
isSuccess: true;
|
|
102
103
|
isFetching: true;
|
|
103
104
|
error: undefined;
|
|
104
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
105
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
105
106
|
currentData?: any;
|
|
106
107
|
isUninitialized: false;
|
|
107
108
|
isLoading: false;
|
|
@@ -112,7 +113,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
112
113
|
isSuccess: true;
|
|
113
114
|
isFetching: false;
|
|
114
115
|
error: undefined;
|
|
115
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
116
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
116
117
|
currentData?: any;
|
|
117
118
|
isUninitialized: false;
|
|
118
119
|
isLoading: false;
|
|
@@ -121,7 +122,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
121
122
|
isError: false;
|
|
122
123
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
123
124
|
isError: true;
|
|
124
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
125
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
125
126
|
currentData?: any;
|
|
126
127
|
isUninitialized: false;
|
|
127
128
|
isLoading: false;
|
|
@@ -153,7 +154,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
153
154
|
isError: false;
|
|
154
155
|
}, "isUninitialized"> & {
|
|
155
156
|
isUninitialized: true;
|
|
156
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
157
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
157
158
|
currentData?: any;
|
|
158
159
|
isUninitialized: false;
|
|
159
160
|
isLoading: false;
|
|
@@ -168,7 +169,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
168
169
|
isSuccess: true;
|
|
169
170
|
isFetching: true;
|
|
170
171
|
error: undefined;
|
|
171
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
172
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
172
173
|
currentData?: any;
|
|
173
174
|
isUninitialized: false;
|
|
174
175
|
isLoading: false;
|
|
@@ -179,7 +180,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
179
180
|
isSuccess: true;
|
|
180
181
|
isFetching: false;
|
|
181
182
|
error: undefined;
|
|
182
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
183
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
183
184
|
currentData?: any;
|
|
184
185
|
isUninitialized: false;
|
|
185
186
|
isLoading: false;
|
|
@@ -188,7 +189,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
188
189
|
isError: false;
|
|
189
190
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
190
191
|
isError: true;
|
|
191
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
192
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
192
193
|
currentData?: any;
|
|
193
194
|
isUninitialized: false;
|
|
194
195
|
isLoading: false;
|
|
@@ -199,7 +200,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
199
200
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
200
201
|
}) => R) | undefined;
|
|
201
202
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
202
|
-
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
203
|
+
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>>;
|
|
203
204
|
}, useLazyGetPromptCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
204
205
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
205
206
|
originalArgs?: undefined | undefined;
|
|
@@ -218,7 +219,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
218
219
|
isError: false;
|
|
219
220
|
}, "isUninitialized"> & {
|
|
220
221
|
isUninitialized: true;
|
|
221
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
222
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
222
223
|
currentData?: any;
|
|
223
224
|
isUninitialized: false;
|
|
224
225
|
isLoading: false;
|
|
@@ -233,7 +234,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
233
234
|
isSuccess: true;
|
|
234
235
|
isFetching: true;
|
|
235
236
|
error: undefined;
|
|
236
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
237
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
237
238
|
currentData?: any;
|
|
238
239
|
isUninitialized: false;
|
|
239
240
|
isLoading: false;
|
|
@@ -244,7 +245,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
244
245
|
isSuccess: true;
|
|
245
246
|
isFetching: false;
|
|
246
247
|
error: undefined;
|
|
247
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
248
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
248
249
|
currentData?: any;
|
|
249
250
|
isUninitialized: false;
|
|
250
251
|
isLoading: false;
|
|
@@ -253,7 +254,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
253
254
|
isError: false;
|
|
254
255
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
255
256
|
isError: true;
|
|
256
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
257
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
257
258
|
currentData?: any;
|
|
258
259
|
isUninitialized: false;
|
|
259
260
|
isLoading: false;
|
|
@@ -282,7 +283,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
282
283
|
isError: false;
|
|
283
284
|
}, "isUninitialized"> & {
|
|
284
285
|
isUninitialized: true;
|
|
285
|
-
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
286
|
+
}) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
286
287
|
currentData?: any;
|
|
287
288
|
isUninitialized: false;
|
|
288
289
|
isLoading: false;
|
|
@@ -297,7 +298,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
297
298
|
isSuccess: true;
|
|
298
299
|
isFetching: true;
|
|
299
300
|
error: undefined;
|
|
300
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
301
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
301
302
|
currentData?: any;
|
|
302
303
|
isUninitialized: false;
|
|
303
304
|
isLoading: false;
|
|
@@ -308,7 +309,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
308
309
|
isSuccess: true;
|
|
309
310
|
isFetching: false;
|
|
310
311
|
error: undefined;
|
|
311
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
312
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
312
313
|
currentData?: any;
|
|
313
314
|
isUninitialized: false;
|
|
314
315
|
isLoading: false;
|
|
@@ -317,7 +318,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
317
318
|
isError: false;
|
|
318
319
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
319
320
|
isError: true;
|
|
320
|
-
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
321
|
+
} & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>> & {
|
|
321
322
|
currentData?: any;
|
|
322
323
|
isUninitialized: false;
|
|
323
324
|
isLoading: false;
|
|
@@ -327,7 +328,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
327
328
|
}, "error">>)>> & {
|
|
328
329
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
329
330
|
}) => R) | undefined;
|
|
330
|
-
}, "skip">) | undefined) => [(arg: GetPromptCategoriesParams, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
331
|
+
}, "skip">) | undefined) => [(arg: GetPromptCategoriesParams, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<GetPromptCategoriesParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", any, "promptsApiSlice", typeof import("@reduxjs/toolkit/query")._NEVER>>, [R][R extends any ? 0 : never] & {
|
|
331
332
|
reset: () => void;
|
|
332
333
|
}, {
|
|
333
334
|
lastArg: GetPromptCategoriesParams;
|
|
@@ -357,7 +358,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
357
358
|
mentorUniqueId?: string;
|
|
358
359
|
tag?: number;
|
|
359
360
|
visibility?: string;
|
|
360
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
361
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
361
362
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
362
363
|
isUninitialized: false;
|
|
363
364
|
isLoading: false;
|
|
@@ -380,7 +381,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
380
381
|
mentorUniqueId?: string;
|
|
381
382
|
tag?: number;
|
|
382
383
|
visibility?: string;
|
|
383
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
384
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
384
385
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
385
386
|
isUninitialized: false;
|
|
386
387
|
isLoading: false;
|
|
@@ -399,7 +400,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
399
400
|
mentorUniqueId?: string;
|
|
400
401
|
tag?: number;
|
|
401
402
|
visibility?: string;
|
|
402
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
403
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
403
404
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
404
405
|
isUninitialized: false;
|
|
405
406
|
isLoading: false;
|
|
@@ -416,7 +417,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
416
417
|
mentorUniqueId?: string;
|
|
417
418
|
tag?: number;
|
|
418
419
|
visibility?: string;
|
|
419
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
420
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
420
421
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
421
422
|
isUninitialized: false;
|
|
422
423
|
isLoading: false;
|
|
@@ -464,7 +465,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
464
465
|
mentorUniqueId?: string;
|
|
465
466
|
tag?: number;
|
|
466
467
|
visibility?: string;
|
|
467
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
468
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
468
469
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
469
470
|
isUninitialized: false;
|
|
470
471
|
isLoading: false;
|
|
@@ -487,7 +488,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
487
488
|
mentorUniqueId?: string;
|
|
488
489
|
tag?: number;
|
|
489
490
|
visibility?: string;
|
|
490
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
491
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
491
492
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
492
493
|
isUninitialized: false;
|
|
493
494
|
isLoading: false;
|
|
@@ -506,7 +507,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
506
507
|
mentorUniqueId?: string;
|
|
507
508
|
tag?: number;
|
|
508
509
|
visibility?: string;
|
|
509
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
510
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
510
511
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
511
512
|
isUninitialized: false;
|
|
512
513
|
isLoading: false;
|
|
@@ -523,7 +524,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
523
524
|
mentorUniqueId?: string;
|
|
524
525
|
tag?: number;
|
|
525
526
|
visibility?: string;
|
|
526
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
527
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
527
528
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
528
529
|
isUninitialized: false;
|
|
529
530
|
isLoading: false;
|
|
@@ -542,7 +543,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
542
543
|
mentorUniqueId?: string;
|
|
543
544
|
tag?: number;
|
|
544
545
|
visibility?: string;
|
|
545
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
546
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>>;
|
|
546
547
|
}, useLazyGetPromptsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
547
548
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
548
549
|
originalArgs?: undefined | undefined;
|
|
@@ -569,7 +570,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
569
570
|
mentorUniqueId?: string;
|
|
570
571
|
tag?: number;
|
|
571
572
|
visibility?: string;
|
|
572
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
573
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
573
574
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
574
575
|
isUninitialized: false;
|
|
575
576
|
isLoading: false;
|
|
@@ -592,7 +593,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
592
593
|
mentorUniqueId?: string;
|
|
593
594
|
tag?: number;
|
|
594
595
|
visibility?: string;
|
|
595
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
596
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
596
597
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
597
598
|
isUninitialized: false;
|
|
598
599
|
isLoading: false;
|
|
@@ -611,7 +612,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
611
612
|
mentorUniqueId?: string;
|
|
612
613
|
tag?: number;
|
|
613
614
|
visibility?: string;
|
|
614
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
615
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
615
616
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
616
617
|
isUninitialized: false;
|
|
617
618
|
isLoading: false;
|
|
@@ -628,7 +629,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
628
629
|
mentorUniqueId?: string;
|
|
629
630
|
tag?: number;
|
|
630
631
|
visibility?: string;
|
|
631
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
632
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
632
633
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
633
634
|
isUninitialized: false;
|
|
634
635
|
isLoading: false;
|
|
@@ -665,7 +666,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
665
666
|
mentorUniqueId?: string;
|
|
666
667
|
tag?: number;
|
|
667
668
|
visibility?: string;
|
|
668
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
669
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
669
670
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
670
671
|
isUninitialized: false;
|
|
671
672
|
isLoading: false;
|
|
@@ -688,7 +689,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
688
689
|
mentorUniqueId?: string;
|
|
689
690
|
tag?: number;
|
|
690
691
|
visibility?: string;
|
|
691
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
692
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
692
693
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
693
694
|
isUninitialized: false;
|
|
694
695
|
isLoading: false;
|
|
@@ -707,7 +708,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
707
708
|
mentorUniqueId?: string;
|
|
708
709
|
tag?: number;
|
|
709
710
|
visibility?: string;
|
|
710
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
711
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
711
712
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
712
713
|
isUninitialized: false;
|
|
713
714
|
isLoading: false;
|
|
@@ -724,7 +725,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
724
725
|
mentorUniqueId?: string;
|
|
725
726
|
tag?: number;
|
|
726
727
|
visibility?: string;
|
|
727
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
728
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>> & {
|
|
728
729
|
currentData?: import("@iblai/iblai-api").Prompt[] | undefined;
|
|
729
730
|
isUninitialized: false;
|
|
730
731
|
isLoading: false;
|
|
@@ -750,7 +751,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
750
751
|
mentorUniqueId?: string;
|
|
751
752
|
tag?: number;
|
|
752
753
|
visibility?: string;
|
|
753
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
754
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt[], "promptsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
754
755
|
reset: () => void;
|
|
755
756
|
}, {
|
|
756
757
|
lastArg: {
|
|
@@ -785,6 +786,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
785
786
|
username: string;
|
|
786
787
|
alphabetical?: boolean;
|
|
787
788
|
category?: string;
|
|
789
|
+
createdBy?: string;
|
|
788
790
|
filterFacet?: boolean;
|
|
789
791
|
language?: string;
|
|
790
792
|
limit?: number;
|
|
@@ -796,7 +798,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
796
798
|
style?: string;
|
|
797
799
|
tenant?: string;
|
|
798
800
|
tone?: string;
|
|
799
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
801
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
800
802
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
801
803
|
isUninitialized: false;
|
|
802
804
|
isLoading: false;
|
|
@@ -816,6 +818,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
816
818
|
username: string;
|
|
817
819
|
alphabetical?: boolean;
|
|
818
820
|
category?: string;
|
|
821
|
+
createdBy?: string;
|
|
819
822
|
filterFacet?: boolean;
|
|
820
823
|
language?: string;
|
|
821
824
|
limit?: number;
|
|
@@ -827,7 +830,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
827
830
|
style?: string;
|
|
828
831
|
tenant?: string;
|
|
829
832
|
tone?: string;
|
|
830
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
833
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
831
834
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
832
835
|
isUninitialized: false;
|
|
833
836
|
isLoading: false;
|
|
@@ -843,6 +846,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
843
846
|
username: string;
|
|
844
847
|
alphabetical?: boolean;
|
|
845
848
|
category?: string;
|
|
849
|
+
createdBy?: string;
|
|
846
850
|
filterFacet?: boolean;
|
|
847
851
|
language?: string;
|
|
848
852
|
limit?: number;
|
|
@@ -854,7 +858,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
854
858
|
style?: string;
|
|
855
859
|
tenant?: string;
|
|
856
860
|
tone?: string;
|
|
857
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
861
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
858
862
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
859
863
|
isUninitialized: false;
|
|
860
864
|
isLoading: false;
|
|
@@ -868,6 +872,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
868
872
|
username: string;
|
|
869
873
|
alphabetical?: boolean;
|
|
870
874
|
category?: string;
|
|
875
|
+
createdBy?: string;
|
|
871
876
|
filterFacet?: boolean;
|
|
872
877
|
language?: string;
|
|
873
878
|
limit?: number;
|
|
@@ -879,7 +884,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
879
884
|
style?: string;
|
|
880
885
|
tenant?: string;
|
|
881
886
|
tone?: string;
|
|
882
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
887
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
883
888
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
884
889
|
isUninitialized: false;
|
|
885
890
|
isLoading: false;
|
|
@@ -893,6 +898,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
893
898
|
username: string;
|
|
894
899
|
alphabetical?: boolean;
|
|
895
900
|
category?: string;
|
|
901
|
+
createdBy?: string;
|
|
896
902
|
filterFacet?: boolean;
|
|
897
903
|
language?: string;
|
|
898
904
|
limit?: number;
|
|
@@ -932,6 +938,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
932
938
|
username: string;
|
|
933
939
|
alphabetical?: boolean;
|
|
934
940
|
category?: string;
|
|
941
|
+
createdBy?: string;
|
|
935
942
|
filterFacet?: boolean;
|
|
936
943
|
language?: string;
|
|
937
944
|
limit?: number;
|
|
@@ -943,7 +950,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
943
950
|
style?: string;
|
|
944
951
|
tenant?: string;
|
|
945
952
|
tone?: string;
|
|
946
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
953
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
947
954
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
948
955
|
isUninitialized: false;
|
|
949
956
|
isLoading: false;
|
|
@@ -963,6 +970,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
963
970
|
username: string;
|
|
964
971
|
alphabetical?: boolean;
|
|
965
972
|
category?: string;
|
|
973
|
+
createdBy?: string;
|
|
966
974
|
filterFacet?: boolean;
|
|
967
975
|
language?: string;
|
|
968
976
|
limit?: number;
|
|
@@ -974,7 +982,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
974
982
|
style?: string;
|
|
975
983
|
tenant?: string;
|
|
976
984
|
tone?: string;
|
|
977
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
985
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
978
986
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
979
987
|
isUninitialized: false;
|
|
980
988
|
isLoading: false;
|
|
@@ -990,6 +998,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
990
998
|
username: string;
|
|
991
999
|
alphabetical?: boolean;
|
|
992
1000
|
category?: string;
|
|
1001
|
+
createdBy?: string;
|
|
993
1002
|
filterFacet?: boolean;
|
|
994
1003
|
language?: string;
|
|
995
1004
|
limit?: number;
|
|
@@ -1001,7 +1010,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1001
1010
|
style?: string;
|
|
1002
1011
|
tenant?: string;
|
|
1003
1012
|
tone?: string;
|
|
1004
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1013
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1005
1014
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1006
1015
|
isUninitialized: false;
|
|
1007
1016
|
isLoading: false;
|
|
@@ -1015,6 +1024,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1015
1024
|
username: string;
|
|
1016
1025
|
alphabetical?: boolean;
|
|
1017
1026
|
category?: string;
|
|
1027
|
+
createdBy?: string;
|
|
1018
1028
|
filterFacet?: boolean;
|
|
1019
1029
|
language?: string;
|
|
1020
1030
|
limit?: number;
|
|
@@ -1026,7 +1036,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1026
1036
|
style?: string;
|
|
1027
1037
|
tenant?: string;
|
|
1028
1038
|
tone?: string;
|
|
1029
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1039
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1030
1040
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1031
1041
|
isUninitialized: false;
|
|
1032
1042
|
isLoading: false;
|
|
@@ -1042,6 +1052,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1042
1052
|
username: string;
|
|
1043
1053
|
alphabetical?: boolean;
|
|
1044
1054
|
category?: string;
|
|
1055
|
+
createdBy?: string;
|
|
1045
1056
|
filterFacet?: boolean;
|
|
1046
1057
|
language?: string;
|
|
1047
1058
|
limit?: number;
|
|
@@ -1053,7 +1064,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1053
1064
|
style?: string;
|
|
1054
1065
|
tenant?: string;
|
|
1055
1066
|
tone?: string;
|
|
1056
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1067
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>>;
|
|
1057
1068
|
}, useLazyGetPromptsSearchQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1058
1069
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1059
1070
|
originalArgs?: undefined | undefined;
|
|
@@ -1077,6 +1088,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1077
1088
|
username: string;
|
|
1078
1089
|
alphabetical?: boolean;
|
|
1079
1090
|
category?: string;
|
|
1091
|
+
createdBy?: string;
|
|
1080
1092
|
filterFacet?: boolean;
|
|
1081
1093
|
language?: string;
|
|
1082
1094
|
limit?: number;
|
|
@@ -1088,7 +1100,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1088
1100
|
style?: string;
|
|
1089
1101
|
tenant?: string;
|
|
1090
1102
|
tone?: string;
|
|
1091
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1103
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1092
1104
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1093
1105
|
isUninitialized: false;
|
|
1094
1106
|
isLoading: false;
|
|
@@ -1108,6 +1120,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1108
1120
|
username: string;
|
|
1109
1121
|
alphabetical?: boolean;
|
|
1110
1122
|
category?: string;
|
|
1123
|
+
createdBy?: string;
|
|
1111
1124
|
filterFacet?: boolean;
|
|
1112
1125
|
language?: string;
|
|
1113
1126
|
limit?: number;
|
|
@@ -1119,7 +1132,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1119
1132
|
style?: string;
|
|
1120
1133
|
tenant?: string;
|
|
1121
1134
|
tone?: string;
|
|
1122
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1135
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1123
1136
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1124
1137
|
isUninitialized: false;
|
|
1125
1138
|
isLoading: false;
|
|
@@ -1135,6 +1148,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1135
1148
|
username: string;
|
|
1136
1149
|
alphabetical?: boolean;
|
|
1137
1150
|
category?: string;
|
|
1151
|
+
createdBy?: string;
|
|
1138
1152
|
filterFacet?: boolean;
|
|
1139
1153
|
language?: string;
|
|
1140
1154
|
limit?: number;
|
|
@@ -1146,7 +1160,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1146
1160
|
style?: string;
|
|
1147
1161
|
tenant?: string;
|
|
1148
1162
|
tone?: string;
|
|
1149
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1163
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1150
1164
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1151
1165
|
isUninitialized: false;
|
|
1152
1166
|
isLoading: false;
|
|
@@ -1160,6 +1174,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1160
1174
|
username: string;
|
|
1161
1175
|
alphabetical?: boolean;
|
|
1162
1176
|
category?: string;
|
|
1177
|
+
createdBy?: string;
|
|
1163
1178
|
filterFacet?: boolean;
|
|
1164
1179
|
language?: string;
|
|
1165
1180
|
limit?: number;
|
|
@@ -1171,7 +1186,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1171
1186
|
style?: string;
|
|
1172
1187
|
tenant?: string;
|
|
1173
1188
|
tone?: string;
|
|
1174
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1189
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1175
1190
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1176
1191
|
isUninitialized: false;
|
|
1177
1192
|
isLoading: false;
|
|
@@ -1205,6 +1220,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1205
1220
|
username: string;
|
|
1206
1221
|
alphabetical?: boolean;
|
|
1207
1222
|
category?: string;
|
|
1223
|
+
createdBy?: string;
|
|
1208
1224
|
filterFacet?: boolean;
|
|
1209
1225
|
language?: string;
|
|
1210
1226
|
limit?: number;
|
|
@@ -1216,7 +1232,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1216
1232
|
style?: string;
|
|
1217
1233
|
tenant?: string;
|
|
1218
1234
|
tone?: string;
|
|
1219
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1235
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1220
1236
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1221
1237
|
isUninitialized: false;
|
|
1222
1238
|
isLoading: false;
|
|
@@ -1236,6 +1252,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1236
1252
|
username: string;
|
|
1237
1253
|
alphabetical?: boolean;
|
|
1238
1254
|
category?: string;
|
|
1255
|
+
createdBy?: string;
|
|
1239
1256
|
filterFacet?: boolean;
|
|
1240
1257
|
language?: string;
|
|
1241
1258
|
limit?: number;
|
|
@@ -1247,7 +1264,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1247
1264
|
style?: string;
|
|
1248
1265
|
tenant?: string;
|
|
1249
1266
|
tone?: string;
|
|
1250
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1267
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1251
1268
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1252
1269
|
isUninitialized: false;
|
|
1253
1270
|
isLoading: false;
|
|
@@ -1263,6 +1280,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1263
1280
|
username: string;
|
|
1264
1281
|
alphabetical?: boolean;
|
|
1265
1282
|
category?: string;
|
|
1283
|
+
createdBy?: string;
|
|
1266
1284
|
filterFacet?: boolean;
|
|
1267
1285
|
language?: string;
|
|
1268
1286
|
limit?: number;
|
|
@@ -1274,7 +1292,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1274
1292
|
style?: string;
|
|
1275
1293
|
tenant?: string;
|
|
1276
1294
|
tone?: string;
|
|
1277
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1295
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1278
1296
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1279
1297
|
isUninitialized: false;
|
|
1280
1298
|
isLoading: false;
|
|
@@ -1288,6 +1306,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1288
1306
|
username: string;
|
|
1289
1307
|
alphabetical?: boolean;
|
|
1290
1308
|
category?: string;
|
|
1309
|
+
createdBy?: string;
|
|
1291
1310
|
filterFacet?: boolean;
|
|
1292
1311
|
language?: string;
|
|
1293
1312
|
limit?: number;
|
|
@@ -1299,7 +1318,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1299
1318
|
style?: string;
|
|
1300
1319
|
tenant?: string;
|
|
1301
1320
|
tone?: string;
|
|
1302
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1321
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1303
1322
|
currentData?: import("@iblai/iblai-api").PromptSearchResponse | undefined;
|
|
1304
1323
|
isUninitialized: false;
|
|
1305
1324
|
isLoading: false;
|
|
@@ -1314,6 +1333,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1314
1333
|
username: string;
|
|
1315
1334
|
alphabetical?: boolean;
|
|
1316
1335
|
category?: string;
|
|
1336
|
+
createdBy?: string;
|
|
1317
1337
|
filterFacet?: boolean;
|
|
1318
1338
|
language?: string;
|
|
1319
1339
|
limit?: number;
|
|
@@ -1330,6 +1350,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1330
1350
|
username: string;
|
|
1331
1351
|
alphabetical?: boolean;
|
|
1332
1352
|
category?: string;
|
|
1353
|
+
createdBy?: string;
|
|
1333
1354
|
filterFacet?: boolean;
|
|
1334
1355
|
language?: string;
|
|
1335
1356
|
limit?: number;
|
|
@@ -1341,7 +1362,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1341
1362
|
style?: string;
|
|
1342
1363
|
tenant?: string;
|
|
1343
1364
|
tone?: string;
|
|
1344
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1365
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").PromptSearchResponse, "promptsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
1345
1366
|
reset: () => void;
|
|
1346
1367
|
}, {
|
|
1347
1368
|
lastArg: {
|
|
@@ -1349,6 +1370,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1349
1370
|
username: string;
|
|
1350
1371
|
alphabetical?: boolean;
|
|
1351
1372
|
category?: string;
|
|
1373
|
+
createdBy?: string;
|
|
1352
1374
|
filterFacet?: boolean;
|
|
1353
1375
|
language?: string;
|
|
1354
1376
|
limit?: number;
|
|
@@ -1536,7 +1558,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1536
1558
|
mentorUniqueId?: string;
|
|
1537
1559
|
tag?: number;
|
|
1538
1560
|
visibility?: string;
|
|
1539
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1561
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt, "promptsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1540
1562
|
originalArgs?: {
|
|
1541
1563
|
org: string;
|
|
1542
1564
|
requestBody: import("@iblai/iblai-api").Prompt;
|
|
@@ -1725,7 +1747,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1725
1747
|
mentorUniqueId?: string;
|
|
1726
1748
|
tag?: number;
|
|
1727
1749
|
visibility?: string;
|
|
1728
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1750
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").Prompt, "promptsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1729
1751
|
originalArgs?: {
|
|
1730
1752
|
id: number;
|
|
1731
1753
|
org: string;
|
|
@@ -1913,7 +1935,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1913
1935
|
mentorUniqueId?: string;
|
|
1914
1936
|
tag?: number;
|
|
1915
1937
|
visibility?: string;
|
|
1916
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1938
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", void, "promptsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1917
1939
|
originalArgs?: {
|
|
1918
1940
|
id: number;
|
|
1919
1941
|
org: string;
|
|
@@ -1947,7 +1969,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1947
1969
|
org: string;
|
|
1948
1970
|
sessionId: string;
|
|
1949
1971
|
count?: number;
|
|
1950
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1972
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
1951
1973
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
1952
1974
|
isUninitialized: false;
|
|
1953
1975
|
isLoading: false;
|
|
@@ -1966,7 +1988,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1966
1988
|
org: string;
|
|
1967
1989
|
sessionId: string;
|
|
1968
1990
|
count?: number;
|
|
1969
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
1991
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
1970
1992
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
1971
1993
|
isUninitialized: false;
|
|
1972
1994
|
isLoading: false;
|
|
@@ -1981,7 +2003,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1981
2003
|
org: string;
|
|
1982
2004
|
sessionId: string;
|
|
1983
2005
|
count?: number;
|
|
1984
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2006
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
1985
2007
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
1986
2008
|
isUninitialized: false;
|
|
1987
2009
|
isLoading: false;
|
|
@@ -1994,7 +2016,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1994
2016
|
org: string;
|
|
1995
2017
|
sessionId: string;
|
|
1996
2018
|
count?: number;
|
|
1997
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2019
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
1998
2020
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
1999
2021
|
isUninitialized: false;
|
|
2000
2022
|
isLoading: false;
|
|
@@ -2034,7 +2056,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2034
2056
|
org: string;
|
|
2035
2057
|
sessionId: string;
|
|
2036
2058
|
count?: number;
|
|
2037
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2059
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2038
2060
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2039
2061
|
isUninitialized: false;
|
|
2040
2062
|
isLoading: false;
|
|
@@ -2053,7 +2075,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2053
2075
|
org: string;
|
|
2054
2076
|
sessionId: string;
|
|
2055
2077
|
count?: number;
|
|
2056
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2078
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2057
2079
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2058
2080
|
isUninitialized: false;
|
|
2059
2081
|
isLoading: false;
|
|
@@ -2068,7 +2090,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2068
2090
|
org: string;
|
|
2069
2091
|
sessionId: string;
|
|
2070
2092
|
count?: number;
|
|
2071
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2093
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2072
2094
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2073
2095
|
isUninitialized: false;
|
|
2074
2096
|
isLoading: false;
|
|
@@ -2081,7 +2103,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2081
2103
|
org: string;
|
|
2082
2104
|
sessionId: string;
|
|
2083
2105
|
count?: number;
|
|
2084
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2106
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2085
2107
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2086
2108
|
isUninitialized: false;
|
|
2087
2109
|
isLoading: false;
|
|
@@ -2096,7 +2118,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2096
2118
|
org: string;
|
|
2097
2119
|
sessionId: string;
|
|
2098
2120
|
count?: number;
|
|
2099
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2121
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>>;
|
|
2100
2122
|
}, useLazyGetGuidedPromptsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
2101
2123
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
2102
2124
|
originalArgs?: undefined | undefined;
|
|
@@ -2119,7 +2141,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2119
2141
|
org: string;
|
|
2120
2142
|
sessionId: string;
|
|
2121
2143
|
count?: number;
|
|
2122
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2144
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2123
2145
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2124
2146
|
isUninitialized: false;
|
|
2125
2147
|
isLoading: false;
|
|
@@ -2138,7 +2160,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2138
2160
|
org: string;
|
|
2139
2161
|
sessionId: string;
|
|
2140
2162
|
count?: number;
|
|
2141
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2163
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2142
2164
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2143
2165
|
isUninitialized: false;
|
|
2144
2166
|
isLoading: false;
|
|
@@ -2153,7 +2175,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2153
2175
|
org: string;
|
|
2154
2176
|
sessionId: string;
|
|
2155
2177
|
count?: number;
|
|
2156
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2178
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2157
2179
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2158
2180
|
isUninitialized: false;
|
|
2159
2181
|
isLoading: false;
|
|
@@ -2166,7 +2188,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2166
2188
|
org: string;
|
|
2167
2189
|
sessionId: string;
|
|
2168
2190
|
count?: number;
|
|
2169
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2191
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2170
2192
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2171
2193
|
isUninitialized: false;
|
|
2172
2194
|
isLoading: false;
|
|
@@ -2199,7 +2221,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2199
2221
|
org: string;
|
|
2200
2222
|
sessionId: string;
|
|
2201
2223
|
count?: number;
|
|
2202
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2224
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2203
2225
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2204
2226
|
isUninitialized: false;
|
|
2205
2227
|
isLoading: false;
|
|
@@ -2218,7 +2240,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2218
2240
|
org: string;
|
|
2219
2241
|
sessionId: string;
|
|
2220
2242
|
count?: number;
|
|
2221
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2222
2244
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2223
2245
|
isUninitialized: false;
|
|
2224
2246
|
isLoading: false;
|
|
@@ -2233,7 +2255,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2233
2255
|
org: string;
|
|
2234
2256
|
sessionId: string;
|
|
2235
2257
|
count?: number;
|
|
2236
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2258
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2237
2259
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2238
2260
|
isUninitialized: false;
|
|
2239
2261
|
isLoading: false;
|
|
@@ -2246,7 +2268,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2246
2268
|
org: string;
|
|
2247
2269
|
sessionId: string;
|
|
2248
2270
|
count?: number;
|
|
2249
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2271
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2250
2272
|
currentData?: import("@iblai/iblai-api").GuidedPromptsResponse | undefined;
|
|
2251
2273
|
isUninitialized: false;
|
|
2252
2274
|
isLoading: false;
|
|
@@ -2264,7 +2286,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2264
2286
|
org: string;
|
|
2265
2287
|
sessionId: string;
|
|
2266
2288
|
count?: number;
|
|
2267
|
-
}, import("@reduxjs/toolkit/query").BaseQueryFn<
|
|
2289
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("@iblai/iblai-api").GuidedPromptsResponse, "promptsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2268
2290
|
reset: () => void;
|
|
2269
2291
|
}, {
|
|
2270
2292
|
lastArg: {
|