@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
|
@@ -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("node_modules/@iblai/iblai-api/dist/types").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,28 +31,28 @@ 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("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>;
|
|
34
35
|
createPrompt: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
35
36
|
org: string;
|
|
36
|
-
requestBody: import("
|
|
37
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").Prompt;
|
|
37
38
|
category?: number;
|
|
38
39
|
createdBy?: string;
|
|
39
40
|
filterBy?: string;
|
|
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("node_modules/@iblai/iblai-api/dist/types").Prompt, "promptsApiSlice", any>;
|
|
44
45
|
updatePrompt: import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
45
46
|
id: number;
|
|
46
47
|
org: string;
|
|
47
|
-
requestBody: import("
|
|
48
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").Prompt;
|
|
48
49
|
category?: number;
|
|
49
50
|
createdBy?: string;
|
|
50
51
|
filterBy?: string;
|
|
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("node_modules/@iblai/iblai-api/dist/types").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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -341,7 +342,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
341
342
|
startedTimeStamp?: undefined | undefined;
|
|
342
343
|
fulfilledTimeStamp?: undefined | undefined;
|
|
343
344
|
} & {
|
|
344
|
-
currentData?: import("
|
|
345
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
345
346
|
isUninitialized: false;
|
|
346
347
|
isLoading: false;
|
|
347
348
|
isFetching: false;
|
|
@@ -357,8 +358,8 @@ 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
|
-
currentData?: import("
|
|
361
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
362
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
362
363
|
isUninitialized: false;
|
|
363
364
|
isLoading: false;
|
|
364
365
|
isFetching: false;
|
|
@@ -380,8 +381,8 @@ 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
|
-
currentData?: import("
|
|
384
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
385
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
385
386
|
isUninitialized: false;
|
|
386
387
|
isLoading: false;
|
|
387
388
|
isFetching: false;
|
|
@@ -399,8 +400,8 @@ 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
|
-
currentData?: import("
|
|
403
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
404
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
404
405
|
isUninitialized: false;
|
|
405
406
|
isLoading: false;
|
|
406
407
|
isFetching: false;
|
|
@@ -416,8 +417,8 @@ 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
|
-
currentData?: import("
|
|
420
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
421
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
421
422
|
isUninitialized: false;
|
|
422
423
|
isLoading: false;
|
|
423
424
|
isFetching: false;
|
|
@@ -448,7 +449,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
448
449
|
startedTimeStamp?: undefined | undefined;
|
|
449
450
|
fulfilledTimeStamp?: undefined | undefined;
|
|
450
451
|
} & {
|
|
451
|
-
currentData?: import("
|
|
452
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
452
453
|
isUninitialized: false;
|
|
453
454
|
isLoading: false;
|
|
454
455
|
isFetching: false;
|
|
@@ -464,8 +465,8 @@ 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
|
-
currentData?: import("
|
|
468
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
469
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
469
470
|
isUninitialized: false;
|
|
470
471
|
isLoading: false;
|
|
471
472
|
isFetching: false;
|
|
@@ -487,8 +488,8 @@ 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
|
-
currentData?: import("
|
|
491
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
492
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
492
493
|
isUninitialized: false;
|
|
493
494
|
isLoading: false;
|
|
494
495
|
isFetching: false;
|
|
@@ -506,8 +507,8 @@ 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
|
-
currentData?: import("
|
|
510
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
511
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
511
512
|
isUninitialized: false;
|
|
512
513
|
isLoading: false;
|
|
513
514
|
isFetching: false;
|
|
@@ -523,8 +524,8 @@ 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
|
-
currentData?: import("
|
|
527
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
528
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
528
529
|
isUninitialized: false;
|
|
529
530
|
isLoading: false;
|
|
530
531
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -553,7 +554,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
553
554
|
startedTimeStamp?: undefined | undefined;
|
|
554
555
|
fulfilledTimeStamp?: undefined | undefined;
|
|
555
556
|
} & {
|
|
556
|
-
currentData?: import("
|
|
557
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
557
558
|
isUninitialized: false;
|
|
558
559
|
isLoading: false;
|
|
559
560
|
isFetching: false;
|
|
@@ -569,8 +570,8 @@ 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
|
-
currentData?: import("
|
|
573
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
574
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
574
575
|
isUninitialized: false;
|
|
575
576
|
isLoading: false;
|
|
576
577
|
isFetching: false;
|
|
@@ -592,8 +593,8 @@ 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
|
-
currentData?: import("
|
|
596
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
597
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
597
598
|
isUninitialized: false;
|
|
598
599
|
isLoading: false;
|
|
599
600
|
isFetching: false;
|
|
@@ -611,8 +612,8 @@ 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
|
-
currentData?: import("
|
|
615
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
616
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
616
617
|
isUninitialized: false;
|
|
617
618
|
isLoading: false;
|
|
618
619
|
isFetching: false;
|
|
@@ -628,8 +629,8 @@ 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
|
-
currentData?: import("
|
|
632
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
633
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
633
634
|
isUninitialized: false;
|
|
634
635
|
isLoading: false;
|
|
635
636
|
isFetching: false;
|
|
@@ -649,7 +650,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
649
650
|
startedTimeStamp?: undefined | undefined;
|
|
650
651
|
fulfilledTimeStamp?: undefined | undefined;
|
|
651
652
|
} & {
|
|
652
|
-
currentData?: import("
|
|
653
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
653
654
|
isUninitialized: false;
|
|
654
655
|
isLoading: false;
|
|
655
656
|
isFetching: false;
|
|
@@ -665,8 +666,8 @@ 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
|
-
currentData?: import("
|
|
669
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
670
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
670
671
|
isUninitialized: false;
|
|
671
672
|
isLoading: false;
|
|
672
673
|
isFetching: false;
|
|
@@ -688,8 +689,8 @@ 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
|
-
currentData?: import("
|
|
692
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
693
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
693
694
|
isUninitialized: false;
|
|
694
695
|
isLoading: false;
|
|
695
696
|
isFetching: false;
|
|
@@ -707,8 +708,8 @@ 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
|
-
currentData?: import("
|
|
711
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
712
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
712
713
|
isUninitialized: false;
|
|
713
714
|
isLoading: false;
|
|
714
715
|
isFetching: false;
|
|
@@ -724,8 +725,8 @@ 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
|
-
currentData?: import("
|
|
728
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>> & {
|
|
729
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").Prompt[] | undefined;
|
|
729
730
|
isUninitialized: false;
|
|
730
731
|
isLoading: false;
|
|
731
732
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").Prompt[], "promptsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
754
755
|
reset: () => void;
|
|
755
756
|
}, {
|
|
756
757
|
lastArg: {
|
|
@@ -772,7 +773,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
772
773
|
startedTimeStamp?: undefined | undefined;
|
|
773
774
|
fulfilledTimeStamp?: undefined | undefined;
|
|
774
775
|
} & {
|
|
775
|
-
currentData?: import("
|
|
776
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
776
777
|
isUninitialized: false;
|
|
777
778
|
isLoading: false;
|
|
778
779
|
isFetching: false;
|
|
@@ -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,8 +798,8 @@ 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<
|
|
800
|
-
currentData?: import("
|
|
801
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
802
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
801
803
|
isUninitialized: false;
|
|
802
804
|
isLoading: false;
|
|
803
805
|
isFetching: 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,8 +830,8 @@ 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<
|
|
831
|
-
currentData?: import("
|
|
833
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
834
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
832
835
|
isUninitialized: false;
|
|
833
836
|
isLoading: false;
|
|
834
837
|
isFetching: 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,8 +858,8 @@ 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<
|
|
858
|
-
currentData?: import("
|
|
861
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
862
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
859
863
|
isUninitialized: false;
|
|
860
864
|
isLoading: false;
|
|
861
865
|
isFetching: 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,8 +884,8 @@ 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<
|
|
883
|
-
currentData?: import("
|
|
887
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
888
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
884
889
|
isUninitialized: false;
|
|
885
890
|
isLoading: false;
|
|
886
891
|
isFetching: 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;
|
|
@@ -919,7 +925,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
919
925
|
startedTimeStamp?: undefined | undefined;
|
|
920
926
|
fulfilledTimeStamp?: undefined | undefined;
|
|
921
927
|
} & {
|
|
922
|
-
currentData?: import("
|
|
928
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
923
929
|
isUninitialized: false;
|
|
924
930
|
isLoading: false;
|
|
925
931
|
isFetching: false;
|
|
@@ -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,8 +950,8 @@ 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<
|
|
947
|
-
currentData?: import("
|
|
953
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
954
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
948
955
|
isUninitialized: false;
|
|
949
956
|
isLoading: false;
|
|
950
957
|
isFetching: 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,8 +982,8 @@ 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<
|
|
978
|
-
currentData?: import("
|
|
985
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
986
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
979
987
|
isUninitialized: false;
|
|
980
988
|
isLoading: false;
|
|
981
989
|
isFetching: 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,8 +1010,8 @@ 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<
|
|
1005
|
-
currentData?: import("
|
|
1013
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1014
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1006
1015
|
isUninitialized: false;
|
|
1007
1016
|
isLoading: false;
|
|
1008
1017
|
isFetching: 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,8 +1036,8 @@ 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<
|
|
1030
|
-
currentData?: import("
|
|
1039
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1040
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1031
1041
|
isUninitialized: false;
|
|
1032
1042
|
isLoading: false;
|
|
1033
1043
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -1064,7 +1075,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1064
1075
|
startedTimeStamp?: undefined | undefined;
|
|
1065
1076
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1066
1077
|
} & {
|
|
1067
|
-
currentData?: import("
|
|
1078
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1068
1079
|
isUninitialized: false;
|
|
1069
1080
|
isLoading: false;
|
|
1070
1081
|
isFetching: false;
|
|
@@ -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,8 +1100,8 @@ 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<
|
|
1092
|
-
currentData?: import("
|
|
1103
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1104
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1093
1105
|
isUninitialized: false;
|
|
1094
1106
|
isLoading: false;
|
|
1095
1107
|
isFetching: 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,8 +1132,8 @@ 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<
|
|
1123
|
-
currentData?: import("
|
|
1135
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1136
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1124
1137
|
isUninitialized: false;
|
|
1125
1138
|
isLoading: false;
|
|
1126
1139
|
isFetching: 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,8 +1160,8 @@ 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<
|
|
1150
|
-
currentData?: import("
|
|
1163
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1164
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1151
1165
|
isUninitialized: false;
|
|
1152
1166
|
isLoading: false;
|
|
1153
1167
|
isFetching: 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,8 +1186,8 @@ 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<
|
|
1175
|
-
currentData?: import("
|
|
1189
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1190
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1176
1191
|
isUninitialized: false;
|
|
1177
1192
|
isLoading: false;
|
|
1178
1193
|
isFetching: false;
|
|
@@ -1192,7 +1207,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1192
1207
|
startedTimeStamp?: undefined | undefined;
|
|
1193
1208
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1194
1209
|
} & {
|
|
1195
|
-
currentData?: import("
|
|
1210
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1196
1211
|
isUninitialized: false;
|
|
1197
1212
|
isLoading: false;
|
|
1198
1213
|
isFetching: 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,8 +1232,8 @@ 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<
|
|
1220
|
-
currentData?: import("
|
|
1235
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1236
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1221
1237
|
isUninitialized: false;
|
|
1222
1238
|
isLoading: false;
|
|
1223
1239
|
isFetching: 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,8 +1264,8 @@ 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<
|
|
1251
|
-
currentData?: import("
|
|
1267
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1268
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1252
1269
|
isUninitialized: false;
|
|
1253
1270
|
isLoading: false;
|
|
1254
1271
|
isFetching: 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,8 +1292,8 @@ 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<
|
|
1278
|
-
currentData?: import("
|
|
1295
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1296
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1279
1297
|
isUninitialized: false;
|
|
1280
1298
|
isLoading: false;
|
|
1281
1299
|
isFetching: 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,8 +1318,8 @@ 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<
|
|
1303
|
-
currentData?: import("
|
|
1321
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse, "promptsApiSlice", any>> & {
|
|
1322
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").PromptSearchResponse | undefined;
|
|
1304
1323
|
isUninitialized: false;
|
|
1305
1324
|
isLoading: false;
|
|
1306
1325
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -1379,14 +1401,14 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1379
1401
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1380
1402
|
} & Omit<{
|
|
1381
1403
|
requestId: string;
|
|
1382
|
-
data?: import("
|
|
1404
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1383
1405
|
error?: unknown;
|
|
1384
1406
|
endpointName: string;
|
|
1385
1407
|
startedTimeStamp: number;
|
|
1386
1408
|
fulfilledTimeStamp?: number;
|
|
1387
1409
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1388
1410
|
requestId: string;
|
|
1389
|
-
data?: import("
|
|
1411
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1390
1412
|
error?: unknown;
|
|
1391
1413
|
endpointName: string;
|
|
1392
1414
|
startedTimeStamp: number;
|
|
@@ -1403,7 +1425,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1403
1425
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1404
1426
|
} & {
|
|
1405
1427
|
requestId: string;
|
|
1406
|
-
data?: import("
|
|
1428
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1407
1429
|
error?: unknown;
|
|
1408
1430
|
endpointName: string;
|
|
1409
1431
|
startedTimeStamp: number;
|
|
@@ -1420,14 +1442,14 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1420
1442
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1421
1443
|
} & Omit<{
|
|
1422
1444
|
requestId: string;
|
|
1423
|
-
data?: import("
|
|
1445
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1424
1446
|
error?: unknown;
|
|
1425
1447
|
endpointName: string;
|
|
1426
1448
|
startedTimeStamp: number;
|
|
1427
1449
|
fulfilledTimeStamp?: number;
|
|
1428
1450
|
}, "error"> & Required<Pick<{
|
|
1429
1451
|
requestId: string;
|
|
1430
|
-
data?: import("
|
|
1452
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1431
1453
|
error?: unknown;
|
|
1432
1454
|
endpointName: string;
|
|
1433
1455
|
startedTimeStamp: number;
|
|
@@ -1457,14 +1479,14 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1457
1479
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1458
1480
|
} & Omit<{
|
|
1459
1481
|
requestId: string;
|
|
1460
|
-
data?: import("
|
|
1482
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1461
1483
|
error?: unknown;
|
|
1462
1484
|
endpointName: string;
|
|
1463
1485
|
startedTimeStamp: number;
|
|
1464
1486
|
fulfilledTimeStamp?: number;
|
|
1465
1487
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1466
1488
|
requestId: string;
|
|
1467
|
-
data?: import("
|
|
1489
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1468
1490
|
error?: unknown;
|
|
1469
1491
|
endpointName: string;
|
|
1470
1492
|
startedTimeStamp: number;
|
|
@@ -1481,7 +1503,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1481
1503
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1482
1504
|
} & {
|
|
1483
1505
|
requestId: string;
|
|
1484
|
-
data?: import("
|
|
1506
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1485
1507
|
error?: unknown;
|
|
1486
1508
|
endpointName: string;
|
|
1487
1509
|
startedTimeStamp: number;
|
|
@@ -1498,14 +1520,14 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1498
1520
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1499
1521
|
} & Omit<{
|
|
1500
1522
|
requestId: string;
|
|
1501
|
-
data?: import("
|
|
1523
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1502
1524
|
error?: unknown;
|
|
1503
1525
|
endpointName: string;
|
|
1504
1526
|
startedTimeStamp: number;
|
|
1505
1527
|
fulfilledTimeStamp?: number;
|
|
1506
1528
|
}, "error"> & Required<Pick<{
|
|
1507
1529
|
requestId: string;
|
|
1508
|
-
data?: import("
|
|
1530
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1509
1531
|
error?: unknown;
|
|
1510
1532
|
endpointName: string;
|
|
1511
1533
|
startedTimeStamp: number;
|
|
@@ -1520,7 +1542,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1520
1542
|
fixedCacheKey?: string;
|
|
1521
1543
|
} | undefined) => readonly [(arg: {
|
|
1522
1544
|
org: string;
|
|
1523
|
-
requestBody: import("
|
|
1545
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").Prompt;
|
|
1524
1546
|
category?: number;
|
|
1525
1547
|
createdBy?: string;
|
|
1526
1548
|
filterBy?: string;
|
|
@@ -1529,17 +1551,17 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1529
1551
|
visibility?: string;
|
|
1530
1552
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1531
1553
|
org: string;
|
|
1532
|
-
requestBody: import("
|
|
1554
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").Prompt;
|
|
1533
1555
|
category?: number;
|
|
1534
1556
|
createdBy?: string;
|
|
1535
1557
|
filterBy?: string;
|
|
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("node_modules/@iblai/iblai-api/dist/types").Prompt, "promptsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1540
1562
|
originalArgs?: {
|
|
1541
1563
|
org: string;
|
|
1542
|
-
requestBody: import("
|
|
1564
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").Prompt;
|
|
1543
1565
|
category?: number;
|
|
1544
1566
|
createdBy?: string;
|
|
1545
1567
|
filterBy?: string;
|
|
@@ -1566,14 +1588,14 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1566
1588
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1567
1589
|
} & Omit<{
|
|
1568
1590
|
requestId: string;
|
|
1569
|
-
data?: import("
|
|
1591
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1570
1592
|
error?: unknown;
|
|
1571
1593
|
endpointName: string;
|
|
1572
1594
|
startedTimeStamp: number;
|
|
1573
1595
|
fulfilledTimeStamp?: number;
|
|
1574
1596
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1575
1597
|
requestId: string;
|
|
1576
|
-
data?: import("
|
|
1598
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1577
1599
|
error?: unknown;
|
|
1578
1600
|
endpointName: string;
|
|
1579
1601
|
startedTimeStamp: number;
|
|
@@ -1590,7 +1612,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1590
1612
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1591
1613
|
} & {
|
|
1592
1614
|
requestId: string;
|
|
1593
|
-
data?: import("
|
|
1615
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1594
1616
|
error?: unknown;
|
|
1595
1617
|
endpointName: string;
|
|
1596
1618
|
startedTimeStamp: number;
|
|
@@ -1607,14 +1629,14 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1607
1629
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1608
1630
|
} & Omit<{
|
|
1609
1631
|
requestId: string;
|
|
1610
|
-
data?: import("
|
|
1632
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1611
1633
|
error?: unknown;
|
|
1612
1634
|
endpointName: string;
|
|
1613
1635
|
startedTimeStamp: number;
|
|
1614
1636
|
fulfilledTimeStamp?: number;
|
|
1615
1637
|
}, "error"> & Required<Pick<{
|
|
1616
1638
|
requestId: string;
|
|
1617
|
-
data?: import("
|
|
1639
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1618
1640
|
error?: unknown;
|
|
1619
1641
|
endpointName: string;
|
|
1620
1642
|
startedTimeStamp: number;
|
|
@@ -1644,14 +1666,14 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1644
1666
|
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1645
1667
|
} & Omit<{
|
|
1646
1668
|
requestId: string;
|
|
1647
|
-
data?: import("
|
|
1669
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1648
1670
|
error?: unknown;
|
|
1649
1671
|
endpointName: string;
|
|
1650
1672
|
startedTimeStamp: number;
|
|
1651
1673
|
fulfilledTimeStamp?: number;
|
|
1652
1674
|
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1653
1675
|
requestId: string;
|
|
1654
|
-
data?: import("
|
|
1676
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1655
1677
|
error?: unknown;
|
|
1656
1678
|
endpointName: string;
|
|
1657
1679
|
startedTimeStamp: number;
|
|
@@ -1668,7 +1690,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1668
1690
|
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1669
1691
|
} & {
|
|
1670
1692
|
requestId: string;
|
|
1671
|
-
data?: import("
|
|
1693
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1672
1694
|
error?: unknown;
|
|
1673
1695
|
endpointName: string;
|
|
1674
1696
|
startedTimeStamp: number;
|
|
@@ -1685,14 +1707,14 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1685
1707
|
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1686
1708
|
} & Omit<{
|
|
1687
1709
|
requestId: string;
|
|
1688
|
-
data?: import("
|
|
1710
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1689
1711
|
error?: unknown;
|
|
1690
1712
|
endpointName: string;
|
|
1691
1713
|
startedTimeStamp: number;
|
|
1692
1714
|
fulfilledTimeStamp?: number;
|
|
1693
1715
|
}, "error"> & Required<Pick<{
|
|
1694
1716
|
requestId: string;
|
|
1695
|
-
data?: import("
|
|
1717
|
+
data?: import("node_modules/@iblai/iblai-api/dist/types").Prompt | undefined;
|
|
1696
1718
|
error?: unknown;
|
|
1697
1719
|
endpointName: string;
|
|
1698
1720
|
startedTimeStamp: number;
|
|
@@ -1708,7 +1730,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1708
1730
|
} | undefined) => readonly [(arg: {
|
|
1709
1731
|
id: number;
|
|
1710
1732
|
org: string;
|
|
1711
|
-
requestBody: import("
|
|
1733
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").Prompt;
|
|
1712
1734
|
category?: number;
|
|
1713
1735
|
createdBy?: string;
|
|
1714
1736
|
filterBy?: string;
|
|
@@ -1718,18 +1740,18 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1718
1740
|
}) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<{
|
|
1719
1741
|
id: number;
|
|
1720
1742
|
org: string;
|
|
1721
|
-
requestBody: import("
|
|
1743
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").Prompt;
|
|
1722
1744
|
category?: number;
|
|
1723
1745
|
createdBy?: string;
|
|
1724
1746
|
filterBy?: string;
|
|
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("node_modules/@iblai/iblai-api/dist/types").Prompt, "promptsApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1729
1751
|
originalArgs?: {
|
|
1730
1752
|
id: number;
|
|
1731
1753
|
org: string;
|
|
1732
|
-
requestBody: import("
|
|
1754
|
+
requestBody: import("node_modules/@iblai/iblai-api/dist/types").Prompt;
|
|
1733
1755
|
category?: number;
|
|
1734
1756
|
createdBy?: string;
|
|
1735
1757
|
filterBy?: 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;
|
|
@@ -1935,7 +1957,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
1935
1957
|
startedTimeStamp?: undefined | undefined;
|
|
1936
1958
|
fulfilledTimeStamp?: undefined | undefined;
|
|
1937
1959
|
} & {
|
|
1938
|
-
currentData?: import("
|
|
1960
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
1939
1961
|
isUninitialized: false;
|
|
1940
1962
|
isLoading: false;
|
|
1941
1963
|
isFetching: false;
|
|
@@ -1947,8 +1969,8 @@ 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<
|
|
1951
|
-
currentData?: import("
|
|
1972
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
1973
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
1952
1974
|
isUninitialized: false;
|
|
1953
1975
|
isLoading: false;
|
|
1954
1976
|
isFetching: false;
|
|
@@ -1966,8 +1988,8 @@ 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<
|
|
1970
|
-
currentData?: import("
|
|
1991
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
1992
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
1971
1993
|
isUninitialized: false;
|
|
1972
1994
|
isLoading: false;
|
|
1973
1995
|
isFetching: false;
|
|
@@ -1981,8 +2003,8 @@ 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<
|
|
1985
|
-
currentData?: import("
|
|
2006
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2007
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
1986
2008
|
isUninitialized: false;
|
|
1987
2009
|
isLoading: false;
|
|
1988
2010
|
isFetching: false;
|
|
@@ -1994,8 +2016,8 @@ 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<
|
|
1998
|
-
currentData?: import("
|
|
2019
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2020
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
1999
2021
|
isUninitialized: false;
|
|
2000
2022
|
isLoading: false;
|
|
2001
2023
|
isFetching: false;
|
|
@@ -2022,7 +2044,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2022
2044
|
startedTimeStamp?: undefined | undefined;
|
|
2023
2045
|
fulfilledTimeStamp?: undefined | undefined;
|
|
2024
2046
|
} & {
|
|
2025
|
-
currentData?: import("
|
|
2047
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2026
2048
|
isUninitialized: false;
|
|
2027
2049
|
isLoading: false;
|
|
2028
2050
|
isFetching: false;
|
|
@@ -2034,8 +2056,8 @@ 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<
|
|
2038
|
-
currentData?: import("
|
|
2059
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2060
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2039
2061
|
isUninitialized: false;
|
|
2040
2062
|
isLoading: false;
|
|
2041
2063
|
isFetching: false;
|
|
@@ -2053,8 +2075,8 @@ 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<
|
|
2057
|
-
currentData?: import("
|
|
2078
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2079
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2058
2080
|
isUninitialized: false;
|
|
2059
2081
|
isLoading: false;
|
|
2060
2082
|
isFetching: false;
|
|
@@ -2068,8 +2090,8 @@ 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<
|
|
2072
|
-
currentData?: import("
|
|
2093
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2094
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2073
2095
|
isUninitialized: false;
|
|
2074
2096
|
isLoading: false;
|
|
2075
2097
|
isFetching: false;
|
|
@@ -2081,8 +2103,8 @@ 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<
|
|
2085
|
-
currentData?: import("
|
|
2106
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2107
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2086
2108
|
isUninitialized: false;
|
|
2087
2109
|
isLoading: false;
|
|
2088
2110
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").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;
|
|
@@ -2107,7 +2129,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2107
2129
|
startedTimeStamp?: undefined | undefined;
|
|
2108
2130
|
fulfilledTimeStamp?: undefined | undefined;
|
|
2109
2131
|
} & {
|
|
2110
|
-
currentData?: import("
|
|
2132
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2111
2133
|
isUninitialized: false;
|
|
2112
2134
|
isLoading: false;
|
|
2113
2135
|
isFetching: false;
|
|
@@ -2119,8 +2141,8 @@ 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<
|
|
2123
|
-
currentData?: import("
|
|
2144
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2145
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2124
2146
|
isUninitialized: false;
|
|
2125
2147
|
isLoading: false;
|
|
2126
2148
|
isFetching: false;
|
|
@@ -2138,8 +2160,8 @@ 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<
|
|
2142
|
-
currentData?: import("
|
|
2163
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2164
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2143
2165
|
isUninitialized: false;
|
|
2144
2166
|
isLoading: false;
|
|
2145
2167
|
isFetching: false;
|
|
@@ -2153,8 +2175,8 @@ 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<
|
|
2157
|
-
currentData?: import("
|
|
2178
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2179
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2158
2180
|
isUninitialized: false;
|
|
2159
2181
|
isLoading: false;
|
|
2160
2182
|
isFetching: false;
|
|
@@ -2166,8 +2188,8 @@ 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<
|
|
2170
|
-
currentData?: import("
|
|
2191
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2192
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2171
2193
|
isUninitialized: false;
|
|
2172
2194
|
isLoading: false;
|
|
2173
2195
|
isFetching: false;
|
|
@@ -2187,7 +2209,7 @@ export declare const useGetPromptCategoriesQuery: <R extends Record<string, any>
|
|
|
2187
2209
|
startedTimeStamp?: undefined | undefined;
|
|
2188
2210
|
fulfilledTimeStamp?: undefined | undefined;
|
|
2189
2211
|
} & {
|
|
2190
|
-
currentData?: import("
|
|
2212
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2191
2213
|
isUninitialized: false;
|
|
2192
2214
|
isLoading: false;
|
|
2193
2215
|
isFetching: false;
|
|
@@ -2199,8 +2221,8 @@ 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<
|
|
2203
|
-
currentData?: import("
|
|
2224
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2225
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2204
2226
|
isUninitialized: false;
|
|
2205
2227
|
isLoading: false;
|
|
2206
2228
|
isFetching: false;
|
|
@@ -2218,8 +2240,8 @@ 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<
|
|
2222
|
-
currentData?: import("
|
|
2243
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2244
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2223
2245
|
isUninitialized: false;
|
|
2224
2246
|
isLoading: false;
|
|
2225
2247
|
isFetching: false;
|
|
@@ -2233,8 +2255,8 @@ 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<
|
|
2237
|
-
currentData?: import("
|
|
2258
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2259
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2238
2260
|
isUninitialized: false;
|
|
2239
2261
|
isLoading: false;
|
|
2240
2262
|
isFetching: false;
|
|
@@ -2246,8 +2268,8 @@ 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<
|
|
2250
|
-
currentData?: import("
|
|
2271
|
+
}, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("@reduxjs/toolkit/query")._NEVER, unknown, {} & import("@reduxjs/toolkit/query").RetryOptions, {}>, "prompts" | "promptsSearch" | "promptCategories" | "guidedPrompts", import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>> & {
|
|
2272
|
+
currentData?: import("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse | undefined;
|
|
2251
2273
|
isUninitialized: false;
|
|
2252
2274
|
isLoading: false;
|
|
2253
2275
|
isFetching: 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("node_modules/@iblai/iblai-api/dist/types").GuidedPromptsResponse, "promptsApiSlice", any>>, [R][R extends any ? 0 : never] & {
|
|
2268
2290
|
reset: () => void;
|
|
2269
2291
|
}, {
|
|
2270
2292
|
lastArg: {
|